Make WordPress Core


Ignore:
Timestamp:
10/12/2023 02:48:17 PM (16 months ago)
Author:
davidbaumwald
Message:

Grouped backports to the 4.7 branch.

  • Comments: Prevent users who can not see a post from seeing comments on it.
  • Shortcodes: Restrict media shortcode ajax to certain type.
  • REST API: Ensure no-cache headers are sent when methods are overridden.
  • REST API: Limit search_columns for users without list_users.
  • Prevent unintended behavior when certain objects are unserialized.

Merges [56834], [56835], [56836], [56838], and [56840] to the 4.7 branch.
Props xknown, jorbin, joehoyle, timothyblynjacobs, peterwilsoncc, ehtis, tykoted, antpb, rmccue.

File:
1 edited

Legend:

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

    r55784 r56862  
    30443044    $shortcode = wp_unslash( $_POST['shortcode'] );
    30453045
     3046    // Only process previews for media related shortcodes:
     3047    $found_shortcodes = get_shortcode_tags_in_content( $shortcode );
     3048    $media_shortcodes = array(
     3049        'audio',
     3050        'embed',
     3051        'playlist',
     3052        'video',
     3053        'gallery',
     3054    );
     3055
     3056    $other_shortcodes = array_diff( $found_shortcodes, $media_shortcodes );
     3057
     3058    if ( ! empty( $other_shortcodes ) ) {
     3059        wp_send_json_error();
     3060    }
     3061
    30463062    if ( ! empty( $_POST['post_ID'] ) ) {
    30473063        $post = get_post( (int) $_POST['post_ID'] );
     
    30503066    // the embed shortcode requires a post
    30513067    if ( ! $post || ! current_user_can( 'edit_post', $post->ID ) ) {
    3052         if ( 'embed' === $shortcode ) {
     3068        if ( in_array( 'embed', $found_shortcodes, true ) ) {
    30533069            wp_send_json_error();
    30543070        }
Note: See TracChangeset for help on using the changeset viewer.