Make WordPress Core


Ignore:
Timestamp:
10/29/2020 07:14:09 PM (6 years ago)
Author:
whyisjake
Message:

General: WordPress updates

  • XML-RPC: Improve error messages for unprivileged users.
  • External Libraries: Disable deserialization in Requests_Utility_FilteredIterator
  • Embeds: Disable embeds on deactivated Multisite sites.
  • Coding standards: Modify escaping functions to avoid potential false positives.
  • XML-RPC: Return error message if attachment ID is incorrect.
  • Upgrade/install: Improve logic check when determining installation status.
  • Meta: Sanitize meta key before checking protection status.
  • Themes: Ensure that only privileged users can set a background image when a theme is using the deprecated custom background page.

Brings the changes from [49380,49382-49388] to the 3.9 branch.

Props xknown, zieladam, peterwilsoncc, whyisjake, desrosj, dd32.

Location:
branches/3.9
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/3.9

  • branches/3.9/src/wp-includes/class-wp-xmlrpc-server.php

    r40701 r49407  
    32843284                        return new IXR_Error( 404, __( 'Invalid post ID.' ) );
    32853285
     3286                if (
     3287                        'publish' === get_post_status( $post_id ) &&
     3288                        ! current_user_can( 'edit_post', $post_id ) &&
     3289                        post_password_required( $post_id )
     3290                ) {
     3291                        return new IXR_Error( 403, __( 'Sorry, you are not allowed to comment on this post.' ) );
     3292                }
     3293
     3294                if (
     3295                        'private' === get_post_status( $post_id ) &&
     3296                        ! current_user_can( 'read_post', $post_id )
     3297                ) {
     3298                        return new IXR_Error( 403, __( 'Sorry, you are not allowed to comment on this post.' ) );
     3299                }
     3300
     3301                $comment = array();
    32863302                $comment['comment_post_ID'] = $post_id;
    32873303
     
    36063622                do_action( 'xmlrpc_call', 'wp.getMediaItem' );
    36073623
    3608                 if ( ! $attachment = get_post($attachment_id) )
     3624                $attachment = get_post( $attachment_id );
     3625                if ( ! $attachment || 'attachment' !== $attachment->post_type ) {
    36093626                        return new IXR_Error( 404, __( 'Invalid attachment ID.' ) );
     3627                }
    36103628
    36113629                return $this->_prepare_media_item( $attachment );
Note: See TracChangeset for help on using the changeset viewer.