Make WordPress Core


Ignore:
Timestamp:
10/29/2020 07:04:00 PM (5 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 4.4 branch.

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

Location:
branches/4.4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.4

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

    r40696 r49402  
    35503550        }
    35513551
     3552        if (
     3553            'publish' === get_post_status( $post_id ) &&
     3554            ! current_user_can( 'edit_post', $post_id ) &&
     3555            post_password_required( $post_id )
     3556        ) {
     3557            return new IXR_Error( 403, __( 'Sorry, you are not allowed to comment on this post.' ) );
     3558        }
     3559
     3560        if (
     3561            'private' === get_post_status( $post_id ) &&
     3562            ! current_user_can( 'read_post', $post_id )
     3563        ) {
     3564            return new IXR_Error( 403, __( 'Sorry, you are not allowed to comment on this post.' ) );
     3565        }
     3566
    35523567        $comment = array();
    35533568        $comment['comment_post_ID'] = $post_id;
     
    39283943        do_action( 'xmlrpc_call', 'wp.getMediaItem' );
    39293944
    3930         if ( ! $attachment = get_post($attachment_id) )
     3945        $attachment = get_post( $attachment_id );
     3946        if ( ! $attachment || 'attachment' !== $attachment->post_type ) {
    39313947            return new IXR_Error( 404, __( 'Invalid attachment ID.' ) );
     3948        }
    39323949
    39333950        return $this->_prepare_media_item( $attachment );
Note: See TracChangeset for help on using the changeset viewer.