From cbfe83b3f05839f57b76ca8dc32d97c40fae6cd9 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Mon, 24 Jun 2024 15:43:42 +0000 Subject: [PATCH] Editor: Fix Path Traversal issue on Windows in Template-Part Block. Merges [58470] to the 5.0 branch. Props xknown, jorbin. Built from https://develop.svn.wordpress.org/branches/5.0@58492 git-svn-id: http://core.svn.wordpress.org/branches/5.0@57941 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 08d996896c..b43b7f08c8 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -4347,6 +4347,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 = array() ) { + // Normalize path for Windows servers + $file = wp_normalize_path( $file ); + // `../` on its own is not allowed: if ( '../' === $file ) { return 1;