Extra traversal check.
git-svn-id: http://svn.automattic.com/wordpress/branches/2.3@6521 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
de80358206
commit
f7ce06a547
|
@ -43,6 +43,9 @@ function get_real_file_to_edit( $file ) {
|
|||
}
|
||||
|
||||
function validate_file( $file, $allowed_files = '' ) {
|
||||
if ( false !== strpos( $file, '..' ))
|
||||
return 1;
|
||||
|
||||
if ( false !== strpos( $file, './' ))
|
||||
return 1;
|
||||
|
||||
|
|
Loading…
Reference in New Issue