Overlooked one thing.

このコミットが含まれているのは:
2023-01-21 19:59:04 +09:00
コミット 07ec53838c
1個のファイルの変更1行の追加0行の削除

ファイルの表示

@ -4,6 +4,7 @@
// Prevent accessing stuff you're not supposed to access.
$path = (isset($_GET["path"]) ? $_GET["path"] : "");
$path = htmlentities($path);
if ($path == "/") $path = "";
foreach (explode("/", $path) as $e) { if ($e == "." || $e == ".." || $e == ".git") die("fuck off."); }