我在PHP中实现了一个简单的目录列表脚本。
我希望在打开目录句柄之前确保传递的路径是安全的,并且不知道echo
结果。
$f = $_GET["f"];
if(! $f) {
$f = "/";
}
// make sure $f is safe
$farr = explode("/",$f);
$unsafe = false;
foreach($farr as $farre) {
// protect against directory traversal
if(strpos($farre,"..") != false) {
$unsafe = true;
break;
}
if(end($farr) != $farre) {
// make sure no dots are present (except after the last slash in the file path)
if(strpos($farre,".") != false) {
$unsafe = true;
break;
}
}
}
这是否足以确保用户发送的路径是安全的,还是我应该采取其他措施来防止攻击?
答案 0 :(得分:9)
realpath()
可能对您有所帮助。
realpath()
展开所有符号链接 并解析对'/./'
的引用,'/../'
和'/'
个字符 输入路径,并返回 规范化的绝对路径名。
但是,此函数假定所讨论的路径确实存在。它不会对不存在的路径执行canonization。在这种情况下,返回FALSE。