我找到了一个 php 代码,它只能包含该主题的文件,但该文件包含数字。必须绕过此重新。
我尝试使用 file_put_contents 生成具有其他文件名的文件,但只有 index.html 中的代码。PHP 可以运行。所以我认为只绕过这个重新,没有竞争条件
<?php
include_once("fl2g.php");
$filename = $_GET['filename'];
$filename = $_GET['content'];
if(preg_match("/[^a-z\.]/", $filename) == 1) {
echo "Hacker";
die();
}
$files = scandir('./');
foreach($files as $file) {
if(is_file($file)){
if ($file !== "index.php") {
unlink($file);
}
}
}
file_put_contents($filename, $content );
?>
我希望绕过这个重新
喵喵时光机
qq_花开花谢_0