This commit is contained in:
Lilith Ashley Nyx Arson 🔥 2023-09-02 23:10:21 +02:00
commit 2aef055057
Signed by: root
GPG key ID: 83A53A8C412E93F5
37 changed files with 975 additions and 0 deletions

9
wh/index.php Normal file
View file

@ -0,0 +1,9 @@
<?php
$files = glob("*.json");
foreach($files as $file) {
echo "<h1>$file</h1>";
echo "<hr>";
echo "<pre>";
readfile($file);
echo "</pre>";
}