Make WordPress Core


Ignore:
Timestamp:
10/14/2019 07:11:50 PM (7 years ago)
Author:
whyisjake
Message:

Backporting several bug fixes.

  • Query: Remove the static query property.
  • HTTP API: Protect against hex interpretation.
  • Filesystem API: Prevent directory travelersals when creating new folders.
  • Administration: Ensure that admin referer nonce is valid.
  • REST API: Send a Vary: Origin header on GET requests.
  • Customizer: Properly sanitize background images.

Backports [46474], [46475], [46476], [46477], [46478], [46483], [46485] to the 4.3 branch.

Location:
branches/4.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.3

  • branches/4.3/src/wp-includes/http.php

    r37117 r46499  
    474474        } else {
    475475            $ip = gethostbyname( $host );
    476             if ( $ip === $host ) // Error condition for gethostbyname()
    477                 $ip = false;
     476            if ( $ip === $host ) { // Error condition for gethostbyname()
     477                return false;
     478            }
    478479        }
    479480        if ( $ip ) {
Note: See TracChangeset for help on using the changeset viewer.