mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-14 22:56:19 +01:00
Editor: Fix Path Traversal issue on Windows in Template-Part Block.
Merges [58470] to the 5.3 branch. Props xknown, jorbin. Built from https://develop.svn.wordpress.org/branches/5.3@58489 git-svn-id: http://core.svn.wordpress.org/branches/5.3@57938 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8a256b829a
commit
142a045025
@ -5104,6 +5104,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;
|
||||
|
Loading…
Reference in New Issue
Block a user