First commit

This commit is contained in:
2023-04-11 21:24:39 -07:00
commit f844dcb194
16 changed files with 1997 additions and 0 deletions

13
configs/phpinfo.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
session_start();
echo shell_exec("whoami");
if ( !isset($_SESSION["number"]) ) {
$_SESSION["number"] = 1;
echo "New Session";
echo $_SESSION["number"];
}else {
$_SESSION["number"] = $_SESSION["number"] + 1;
echo $_SESSION["number"];
}
phpinfo();
?>