Editor: Fix Path Traversal issue on Windows in Template-Part Block.

Merges [58470] to the 5.5 branch.
Props xknown, jorbin.



Built from https://develop.svn.wordpress.org/branches/5.5@58487


git-svn-id: http://core.svn.wordpress.org/branches/5.5@57936 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
audrasjb 2024-06-24 15:35:02 +00:00
parent 2c109cc2d4
commit 356840a9e6

View File

@ -5354,6 +5354,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;