Editor: Fix Path Traversal issue on Windows in Template-Part Block.
Merges [58470] to the 4.6 branch. Props xknown, jorbin. Built from https://develop.svn.wordpress.org/branches/4.6@58496 git-svn-id: http://core.svn.wordpress.org/branches/4.6@57945 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
61c8b525b0
commit
249b01ba30
|
@ -4268,6 +4268,9 @@ function iis7_supports_permalinks() {
|
||||||
* @return int 0 means nothing is wrong, greater than 0 means something was wrong.
|
* @return int 0 means nothing is wrong, greater than 0 means something was wrong.
|
||||||
*/
|
*/
|
||||||
function validate_file( $file, $allowed_files = '' ) {
|
function validate_file( $file, $allowed_files = '' ) {
|
||||||
|
// Normalize path for Windows servers
|
||||||
|
$file = wp_normalize_path( $file );
|
||||||
|
|
||||||
if ( false !== strpos( $file, '..' ) )
|
if ( false !== strpos( $file, '..' ) )
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue