Make WordPress Core


Ignore:
Timestamp:
05/16/2023 03:43:22 PM (3 years ago)
Author:
SergeyBiryukov
Message:

Grouped backports to the 4.6 branch.

  • Media: Prevent CSRF setting attachment thumbnails.
  • Embeds: Add protocol validation for WordPress Embed code.

Merges [55763] and [55764] to the 4.6 branch.
Props dd32, isabel_brison, martinkrcho, matveb, ocean90, paulkevan, peterwilsoncc, timothyblynjacobs, xknown, youknowriad.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/4.6/src/wp-admin/includes/ajax-actions.php

    r45948 r55783  
    22122212    }
    22132213
     2214    if ( false === check_ajax_referer( 'set-attachment-thumbnail', '_ajax_nonce', false ) ) {
     2215        wp_send_json_error();
     2216    }
     2217
    22142218    $post_ids = array();
    22152219    // For each URL, try to find its corresponding post ID.
Note: See TracChangeset for help on using the changeset viewer.