diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php index 54978282369fc..bc70ddc300c51 100644 --- a/src/wp-includes/functions.php +++ b/src/wp-includes/functions.php @@ -4354,6 +4354,9 @@ function iis7_supports_permalinks() { * @return int 0 means nothing is wrong, greater than 0 means something was wrong. */ function validate_file( $file, $allowed_files = '' ) { + // Normalize path for Windows servers + $file = wp_normalize_path( $file ); + if ( false !== strpos( $file, '..' ) ) return 1;