Make WordPress Core


Ignore:
Timestamp:
10/17/2022 06:10:19 PM (2 years ago)
Author:
SergeyBiryukov
Message:

Grouped backports to the 4.8 branch.

  • Posts, Post types: Apply KSES to post-by-email content,
  • General: Validate host on "Are you sure?" screen,
  • Posts, Post types: Remove emails from post-by-email logs,
  • Media: Refactor search by filename within the admin,
  • Pings/trackbacks: Apply KSES to all trackbacks,
  • Comments: Apply kses when editing comments,
  • Customize: Escape blogname option in underscores templates,
  • REST API: Lockdown post parameter of the terms endpoint,
  • Mail: Reset PHPMailer properties between use,
  • Query: Validate relation in WP_Date_Query,
  • Widgets: Escape RSS error messages for display.

Merges [54521], [54522], [54523], [54524], [54525], [54526], [54527], [54528], [54529], [54530], [54541] to the 4.8 branch.
Props voldemortensen, johnbillion, paulkevan, peterwilsoncc, xknown, dd32, audrasjb, martinkrcho, vortfu, davidbaumwald, tykoted, timothyblynjacobs, johnjamesjacoby, ehtis, matveb, talldanwp.

Location:
branches/4.8
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.8

  • branches/4.8/src/wp-includes/functions.php

    r46494 r54568  
    23702370            if ( $type !== $real_mime ) {
    23712371                /*
    2372                  * Everything else including image/* and application/*: 
     2372                 * Everything else including image/* and application/*:
    23732373                 * If the real content type doesn't match the file extension, assume it's dangerous.
    23742374                 */
     
    23792379    }
    23802380
    2381     // The mime type must be allowed 
     2381    // The mime type must be allowed
    23822382    if ( $type ) {
    23832383        $allowed = get_allowed_mime_types();
     
    26512651        $html = __( 'Are you sure you want to do this?' );
    26522652        if ( wp_get_referer() ) {
    2653             $html .= '</p><p>';
    2654             $html .= sprintf( '<a href="%s">%s</a>',
    2655                 esc_url( remove_query_arg( 'updated', wp_get_referer() ) ),
     2653            $wp_http_referer = remove_query_arg( 'updated', wp_get_referer() );
     2654            $wp_http_referer = wp_validate_redirect( esc_url_raw( $wp_http_referer ) );
     2655            $html           .= '</p><p>';
     2656            $html           .= sprintf(
     2657                '<a href="%s">%s</a>',
     2658                esc_url( $wp_http_referer ),
    26562659                __( 'Please try again.' )
    26572660            );
Note: See TracChangeset for help on using the changeset viewer.