Make WordPress Core


Ignore:
Timestamp:
10/29/2020 06:39:14 PM (4 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 5.4 branch.

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

Location:
branches/5.4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.4

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

    r47233 r49391  
    38803880        }
    38813881
     3882        if (
     3883            'publish' === get_post_status( $post_id ) &&
     3884            ! current_user_can( 'edit_post', $post_id ) &&
     3885            post_password_required( $post_id )
     3886        ) {
     3887            return new IXR_Error( 403, __( 'Sorry, you are not allowed to comment on this post.' ) );
     3888        }
     3889
     3890        if (
     3891            'private' === get_post_status( $post_id ) &&
     3892            ! current_user_can( 'read_post', $post_id )
     3893        ) {
     3894            return new IXR_Error( 403, __( 'Sorry, you are not allowed to comment on this post.' ) );
     3895        }
     3896
    38823897        $comment = array(
    38833898            'comment_post_ID' => $post_id,
     
    42934308
    42944309        $attachment = get_post( $attachment_id );
    4295         if ( ! $attachment ) {
     4310        if ( ! $attachment || 'attachment' !== $attachment->post_type ) {
    42964311            return new IXR_Error( 404, __( 'Invalid attachment ID.' ) );
    42974312        }
Note: See TracChangeset for help on using the changeset viewer.