Search This Blog

This is where I belong.

I was never intrested in the crap they teach us in college, because it bores me.

Its not about money nor about revenge, its about curiosity

My crime is of curiosity, my crime is of outsmarting you, something that you will never forgive me for.

We explore, We seek knowledge

We exist without skin color, without nationality, without religious bais.

Naive Security – Free internet security suite.

Are you sure you are safe online?

About 2 Lakh Facebook accounts were hacked on 15-NOV-12, 250000 Twitter accounts were hacked on 1-FEB-13 at the same time New York Times was hacked.

Protect yourself and people around you from such threats by using our free internet security solution Naive Security. It will help protect your information and your different accounts while you access them through internet.

Download For free

  • Features:
  • Information Security.
  • Password Security
  • Prevention from scams.
  • Wireless security.
  • Data Encryption.
  • Online banking security.
  • Mobile banking security.
  • Online shopping security.
  • Online privacy.
  • Social account security.
  • Kids security
  • Protection against latest security threats.

Codesortie

Monday, 23 January 2012

Closing security holes/ ports in your system.

With the spread of Hackers and Hacking incidents, the time has come, when not only system administrators of servers of big companies, but also people who connect to the Internet by dialing up into their ISP, have to worry about securing their system. It really does not make much difference whether you have a static IP or a dynamic one, if your system is connected to the Internet, then there is every chance of it being attacked.

This manual is aimed at discussing methods of system security analysis and will shed light on as to how to secure your standalone (also a system connected to a LAN) system.

Open Ports: A Threat to Security?

If you use netstat command then you will  note that the netstat command shows the list of open ports on your system. Here is some explanation of it,

Now, the ??a? option is used to display all open connections on the local machine. It also returns the remote system to which we are connected to, the port numbers of the remote system we are connected to (and the local machine) and also the type and state of connection we have with the remote system.

For Example,

C:\windows>netstat -a

Active Connections



 Proto   Local Address                        Foreign Address                          State
 TCP     hacker191:1031                    dwarf.box.sk:ftp                           ESTABLISHED
 TCP    
hacker191:1036                    dwarf.box.sk:ftp-data                  TIME_WAIT
 TCP    
hacker191:1043                     banners.egroups.com:80          FIN_WAIT_2
 TCP    
hacker191:1045                    mail2.mtnl.net.in:pop3              TIME_WAIT
 TCP    
hacker191:1052                    zztop.boxnetwork.net:80           ESTABLISHED
 TCP    
hacker191:1053                   mail2.mtnl.net.in:pop3               TIME_WAIT
 UDP    
hacker191:1025                   *:*
 UDP    
hacker191:nbdatagram       *:*

Now, let us take a single line from the above output and see what it stands for:

Proto  Local Address                     Foreign Address              State

TCP   
hacker191:1031                dwarf.box.sk:ftp              ESTABLISHED

Now, the above can be arranged as below:

Protocol: TCP (This can be Transmission Control Protocol or TCP, User Datagram Protocol or UDP or sometimes even, IP or Internet Protocol.)

Local System Name:
hacker191 (This is the name of the local system that you set during the Windows setup.)

Local Port opened and being used by this connection: 1031 

Remote System: dwarf.box.sk. This is the non-numerical form of the system to which we are connected.

Remote Port: ftp. This is the port number of the remote system dwarf.box.sk to which we are connected.

State of Connection: ESTABLISHED

?Netstat? with the ??a? argument is normally used, to get a list of open ports on your own system i.e. on the local system. This can be particularly useful to check and see whether your system has a Trojan installed or not. Yes, most good Antiviral software are able to detect the presence of Trojans, but, we are hackers, and need to software to tell us, whether we are infected or not. Besides, it is more fun to do something manually than to simply click on the ?Scan? button and let some software do it.

The following is a list of Trojans and the port numbers which they use, if you Netstat yourself and find any of the following open, then you can be pretty sure, that you are infected.



Port 12345(TCP)                   Netbus
Port 31337(UDP)                 Back Orifice


Now, the above tutorial resulted in a number of people raising questions like: If the 'netstat -a' command shows open ports on my system, does this mean that anyone can connect to them? Or, How can I close these open ports? How do I know if an open port is a threat to my system's security of not? Well, the answer to all these question would be clear, once you read the below paragraph:

Now, the thing to understand here is that, Port numbers are divided into three ranges:

The Well Known Ports are those from 0 through 1023. This range or ports is bound to the services running on them. By this what I mean is that each port usually has a specific service running on it. You see there is an internationally accepted Port Numbers to Services rule, (refer RFC 1700 Here) which specifies as to on what port number a particular service runs. For Example, By Default or normally FTP runs on Port 21. So if you find that Port 21 is open on a particular system, then it usually means that that particular system uses the FTP Protocol to transfer files. However, please note that some smart system administrators delibrately i.e. to fool lamers run fake services on popular ports. For Example, a system might be running a fake FTP daemon on Port 21. Although you get the same interface like the FTP daemon banner, response numbers etc, however, it actually might be a software logging your prescence and sometimes even tracing you!!!

The Registered Ports are those from 1024 through 49151. This range of port numbers is not bound to any specific service. Actually, Networking utlites like your Browser, Email Client, FTP software opens a random port within this range and starts a communication with the remote server. A port number within this range is the reason why you are able to surf the net or check your email etc.

If you find that when you give the netstat -a command, then a number of ports within this range are open, then you should probably not worry. These ports are simply opened so that you can get your software applications to do what you want them to do. These ports are opened temporarily by various applications to perform tasks. They act as a buffer transfering packets (data) received to the application and vise-versa. Once you close the application, then you find that these ports are closed automatically. For Example, when you type www.hotmail.com in your browser, then your browser randomly chooses a Registered Port and uses it as a buffer to communicate with the various remote servers involved.

The Dynamic and/or Private Ports are those from 49152 through 65535. This range is rarely used, and is mostly used by trojans, however some application do tend to use such high range port numbers. For Example,Sun starts their RPC ports at 32768.
So this basically brings us to what to do if you find that Netstat gives you a couple of open ports on your system:

1. Check the Trojan Port List and check if the open port matches with any of the popular ones. If it does then get a trojan Removal and remove the trojan.

2. If it doesn't or if the Trojan Remover says: No trojan found, then see if the open port lies in the registered Ports range. If yes, then you have nothing to worry, so forget about it.

***********************

TRUTH: A common technique employed by a number of system administrators, is remapping ports. For example, normally the default port for HTTP is 80. However, the system administrator could also remap it to Port 8080. Now, if that is the case, then the homepage hosted at that server would be at:

http://xyz.com:8080 instead of
http://xyz.com:80


The idea behind Port Remapping is that instead of running a service on a well known port, where it can easily be exploited, it would be better to run it on a not so well known port, as the hacker, would find it more difficult to find that service. He would have to port scan high range of numbers to discover port remapping.

The ports used for remapping are usually pretty easy to remember. They are choosen keeping in mind the default port number at which the service being remapped should be running. For Example, POP by default runs on Port 110. However, if you were to remap it, you would choose any of the following: 1010, 11000, 1111 etc etc

Some sysadmins also like to choose Port numbers in the following manner: 1234,2345,3456,4567 and so on... Yet another reason as to why Port Remapping is done, is that on a Unix System to be able to listen to a port under 1024, you must have root previledges.
************************


Firewalls

Use of Firewalls is no longer confined to servers or websites or commerical companies. Even if you simply dial up into your ISP or use PPP (Point to Point Protocol) to surf the net, you simply cannot do without a firewall. So what exactly is a firewall?

Well, in non-geek language, a firewall is basically a shield which protects your system from the untrusted non-reliable systems connected to the Internet. It is a software which listens to all ports on your system for any attempts to open a connection and when it detects such an attempt, then it reacts according to the predefined set of rules. So basically, a firewall is something that protects the network(or systen) from the Internet. It is derived from the concept of firewalls used in vehicles which is a barrier made of fire resistant material protecting the vehicle in case of fire.

Now, for a better 'according to the bible' defination of a firewall: A firewall is best described as a software or hardware or both Hardware and Software packet filter that allows only selected packets to pass through from the Internet to your private internal network. A firewall is a system or a group of systems which guard a trusted network( The Internal Private Network from the untrusted network (The Internet.)

NOTE: This was a very brief desciption of what a firewall is, I would not be going into the details of their working in this manual.

Anyway,the term 'Firewalls', (which were generally used by companies for commerical purposes) has evolved into a new term called 'Personal Firewalls'. Now this term is basically used to refer to firewalls installed on a standalone system which may or may not be networked i.e. It usually connects to an ISP. Or in other words a personal firewall is a firewall used for personal use.

Now that you have a basic desciption as to what a firewall is, let us move on to why exactly you need to install a Firewall? Or, how can not installing a firewall pose a threat to the security of your system?

You see, when you are connected to the Internet, then you have millions of other untrusted systems connected to it as well. If somehow someone found out your IP address, then they could do probably anything to your system. They could exploit any vulnerability existing in your system, damage your data, and even use your system to hack into other computers.

Finding out someone'e IP Address is not very difficult. Anybody can find out your IP, through various Chat Services, Instant Messengers (ICQ, MSN, AOL etc), through a common ISP and numerous other ways. Infact finding out the IP Address of a specific person is not always the priority of some hackers.

What I mean to say by that is that there are a number of Scripts and utilities available which scan all IP addresses between a certain range for predefined common vulnerabilities. For Example, Systems with File Sharing Enabled or a system running an OS which is vulnerable to the Ping of Death attack etc etc As soon as a vulnerable system is found, then they use the IP to carry out the attacks.

The most common scanners look for systems with RAT's or Remote Administration Tools installed. They send a packet to common Trojan ports and display whether the victim's system has that Trojan installed or not. The 'Scan Range of IP Addresses' that these programs accept are quite wide and one can easily find a vulnerable system in the matter of minutes or even seconds.

Trojan Horses like Back Orifice provide remote access to your system and can set up a password sniffer. The combination of a back door and a sniffer is a dangerous one: The back door provides future remote access, while the sniffer may reveal important information about you like your other Passwords, Bank Details, Credit Card Numbers, Social Security Number etc If your home system is connected to a local LAN and the attacker manages to install a backdoor on it, then you probably have given the attacker the same access level to your internal network, as you have. This wouls also mean that you will have created a back door into your network that bypasses any firewall that may be guarding the front door.

You may argue with me that as you are using a dial up link to your ISP via PPP, the attacker would be able to access your machine only when you are online. Well, yes that is true, however, not completely true. Yes, it does make access to your system when you reconnect, difficult, as you have a dynamic Internet Protocol Address. But, although this provides a faint hope of protection, routine scanning of the range of IP's in which your IP lies, will more often than not reveal your current Dynamic IP and the back door will provide access to your system.

******************* 

TRUTH: Microsoft Says: War Dialer programs automatically scan for modems by trying every phone number within an exchange. If the modem can only be used for dial-out connections, a War Dialer won't discover it. However, PPP changes the equation, as it provides bidirectional transportmaking any connected system visible to scanners?and attackers.
*******************

So how do I protect myself from such Scans and unsolicitated attacks? Well, this is where Personal Firewalls come in. They just like their name suggests, protect you from unsolicitated connection probes, scans, attacks.

They listen to all ports for any connection requests received (from both legitimate and fake hosts) and sent (by applications like Browser, Email Client etc.) As soon as such an instance is recorded, it pops up a warning asking you what to do or whether to allow the connection to initiate or not. This warning message also contains the IP which is trying to initiate the connection and also the Port Number to which it is trying to connect i.e. the Port to which the packet was sent. It also protects your system from Port Scans, DOS Attacks, Vulnerability attacks etc. So basically it acts as a shield or a buffer which does not allow your system to communicate with the untrusted systems directly.

Most Personal Firewalls have extensive logging facilities which allows you to track down the attackers. Some popular firewalls are:

1.BlackICE Defender : An IDS for PC's. It's available at http://www.networkice.com.

2. ZoneAlarm: The easiest to setup and manage firewall. Get it for free at: www.zonelabs.com


Once you have installed a firewall on your system, you will often get a number of Warnings which might seem to be as if someone is trying to break into your system, however, they are actually bogus messages, which are caused by either your OS itself or due to the process called Allocation of Dynamic IP's. For a details description of these two, read on.

Many people complain that as soon as they dial into their ISP, their firewall says that such and such IP is probing Port X. What causes them?
Well, this is quite common. The cause is that somebody hung up just before you dialed in and your ISP assigned you the same IP address. You are now seeing the remains of communication with the previous person. This is most common when the person to which the IP was assigned earlier was using ICQ or chat programs, was connected to a Game Server or simply turned off his modem before his communication with remote servers was complete.

You might even get a message like: Such and Such IP is trying to initaite a Netbios Session on Port X. This again is extrememly common. The following is an explanation as to why it happens, which I picked up a couple of days ago: NetBIOS requests to UDP port 137 are the most common item you will see in your firewall reject logs. This comes about from a feature in Microsoft's Windows: when a program resolves an IP address into a name, it may send a NetBIOS query to IP address. This is part of the background radiation of the Internet, and is nothing to be concerned about.

What Causes them? On virtually all systems (UNIX, Macintosh, Windows), programs call the function 'gethostbyaddr()' with the desired address. This function will then do the appropriate lookup, and return the name. This function is part of the sockets API. The key thing to remember about gethostbyaddr() is that it is virtual. It doesn't specify how it resolves an address into a name. In practice, it will use all available mechanisms. If we look at UNIX, Windows, and Macintosh systems, we see the following techniques:

DNS in-addr.arpa PTR queries sent to the DNS server
NetBIOS NodeStatus queries sent to the IP address
lookups in the /etc/hosts file
AppleTalk over IP name query sent to the IP address
RPC query sent to the UNIX NIS server
NetBIOS lookup sent to the WINS server


Windows systems do the /etc/hosts, DNS, WINS, and NodeStatus techniques. In more excruciating detail, Microsoft has a generic system component called a naming service. All the protocol stacks in the system (NetBIOS, TCP/IP, Novel IPX, AppleTalk, Banyan, etc.) register the kinds of name resolutions they can perform. Some RPC products will likewise register an NIS naming service. When a program requests to resolve an address, this address gets passed onto the generic naming service. Windows will try each registered name resolution subsystem sequentially until it gets an answer.

Side note: User's sometimes complained that accessing Windows servers is slow. This is caused by installing unneeded protocol stacks that must timeout first before the real protocol stack is queried for the server name..

The order in which it performs these resolution steps for IP addresses can be configured under the Windows registry key

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\ServiceProvider.

Breaking Through Firewalls


Although Firewalls are meant to provide your complete protection from Port Scan probes etc there are several holes existing in popular firewalls, waiting to be exploited. In this issue, I will discuss a hole in ZoneAlarm Version 2.1.10 to 2.0.26, which allows the attacker to port scan the target system (Although normally it should stop such scans.)

If one uses port 67 as the source port of a TCP or UDP scan, ZoneAlarm will let the packet through and will not notify the user. This means, that one can TCP or UDP port scan a ZoneAlarm protected computer as if there were no firewall there IF one uses port 67 as the source port on the packets.

Exploit:
UDP Scan:
You can use NMap to port scan the host with the following command line:

nmap -g67 -P0 -p130-140 -sU 192.168.128.88

(Notice the -g67 which specifies source port).

TCP Scan:
You can use NMap to port scan the host with the following command line:

nmap -g67 -P0 -p130-140 -sS 192.168.128.88

(Notice the -g67 which specifies source port).


This article was shared by Ankit Fadia.
Hope you like it.
Enjoy...!!!!

Tuesday, 3 January 2012

Open Source Softwares For Windows

Hey friends there are many companies which provide software's, but why buy a software when you can get it absolutely free. Open source softwares are available free so here is big list of open source softwares which you can download for free instead of buying a software or using a pirated one.

Audio editing tools

Tag tools:

Business Software

CAD software and Electronic Design Automation (EDA)

Calendar Software

CD Writing

Compression/ZIP

Databases

Desktop Environments & Windows shell replacements

Dictionaries

Drivers/Hardware

Educational

Emulators

Amiga:
Apple:
Atari:
DOS:
IA-32
Sega Master System:
Sega Genesis / Mega Drive
PowerPC
Sega Genesis / Sega CD / Sega 32X:
Sega Dreamcast:
Sega Saturn:
Super Nintendo
Nintendo 64
ZX Specrum
Other
  • QEMU [GNU GPL/GNU LGPL/MIT/BSD]

Encyclopedia

Filesharing

Ares
BitTorrent
Direct Connect:
Gnutella2/Shareaza
HeavyMole
IRC:
Kazaa/Fasttrack:
MUTE
NetMess:
OpenFT:
OpenNap/Napster:
Soulseek:
Others:

FTP clients

Firewall & NAT

Firewall:
NAT:

File systems (drivers)

Games

See this separate page and don't hesitate to organise the first Open-Source-Games-Only LAN-party in your neighbourghood!

Graphics

Instant Messaging

Internet Voice chat

SIP VoIP:

IRC clients

Mail & News

Accessing HTTPMail services like Hotmail, Yahoo,... (I need testers for this software, please mail me your experiences!)
  • YahooPOPs! [GNU GPL]
  • HotPOP3 [GNU GPL]
  • FreePOPs [GNU GPL]
  • MrPostman [GNU GPL] (Note: has been reported not to work with the current HotMail system...)
  • jHTTPMail [GNU LGPL] (how to use this??? is it a library ???)
  • HTTPMail [GNU LGPL] (how to use this??? is it a library???)
  • Blue HTTPMail [zlib/libpng License] (How to use this???)
Anti-Spam

Media Players (audio)

Media Players (video)

Media Players (codecs)

MC303 utilities

(only Linux, sorry... but i had to add this one ;-)

Networking tools

NTP clients

Office tools

Operating Systems

PostScript viewers

Programming

Ada:
Assembler:
Basic:
C:
Delphi:
Fortran:
Haskell:
Java:
Lua:
  • Lua [MIT license]
Mercury:
.NET
Pascal:
Perl:
PHP:
Prolog
Python:
Ruby:
Scheme:
IDE's:
Installer systems:
CVS:
Subversion:
Git:
Decompilers:
GUI toolkits
Computer Graphics libraries
  • SDL (Simple DirectMedia Layer) [GNU LGPL]
  • Little cms [GNU LGPL]
  • Mesa3D [MIT-style license]
  • G3D [BSD]
  • VTK (The Visualization Toolkit) [Other/Proprietary License???]
Libraries

Remote access

Sciences and Math

Mathematics:
Biology:
Geographic Information Systems:
Maybe there's more on the FreeGIS site, if you find stuff, please report it.
General:

Security, Privacy, Protection,...

Server software

CVS:
DHCP:
DNS:
FTP servers:
Identd:
Jabber servers:
Java/XML application server
Mail and News:
Webservers:
Napster servers:
NFS servers:
SSH-servers:
Other:

SCP (SecureCoPy) clients

Stream Downloaders

Text editors

Utilities

Video capture/processing

VJ Software

Web browsers

Webcam

Web editors

Webgrabbers and Download Managers

X-servers

Others

More Open Source Software for Windows at:
More info about Open Source Software and the philosophy behind it can be found at:
Hope you like this post.
If you like this blog please follow this blog or join my group on facebook.
Stay online stay safe...... ENJOY...!!!

    Thursday, 8 December 2011

    Keyboard shortcuts

    hey friends in one of my old posts i have discussed about some of the keyboard shortcuts. Here are some more shortcuts you can use.

    List of F1-F9 Key Cmds 4 cmd prompt

    F1 / right arrow: Repeats the letters of the last command line, one by one.
    F2: Displays a dialog asking user to "enter the char to copy up to" of the last command line
    F3: Repeats the last command line
    F4: Displays a dialog asking user to "enter the char to delete up to" of the last command line
    F5: Goes back one command line
    F6: Enters the traditional CTRL+Z (^z)
    F7: Displays a menu with the command line history
    F8: Cycles back through previous command lines (beginning with most recent)
    F9: Displays a dialog asking user to enter a command number, where 0 is for first command line entered.
    Alt+Enter: toggle full Screen mode.
    up/down: scroll thru/repeat previous entries
    Esc: delete line
    Note: The buffer allows a maximum of 50 command lines. After this number is reached, the first line will be replaced in sequence.
    Helpful accessibility keyboard shortcuts
    Switch FilterKeys on and off. Right SHIFT for eight seconds
    Switch High Contrast on and off. Left ALT +left SHIFT +PRINT SCREEN
    Switch MouseKeys on and off. Left ALT +left SHIFT +NUM LOCK
    Switch StickyKeys on and off. SHIFT five times
    Switch ToggleKeys on and off. NUM LOCK for five seconds

    Gmail Shortcuts

    Note: Must have "keyboard shortcuts" on in settings.
    C: Compose new message.
    Shift + C: Open new window to compose new message.
    Slash (/): Switch focus to search box.
    K: Switch focus to the next most recent email. Enter or "O" opens focused email.
    J: Switch focus to the next oldest email.
    N: Switch focus to the next message in the "conversation." Enter or "O" expands/collapses messages.
    P: Switch focus to the previous message.
    U: Takes you back to the inbox and checks for new mail.
    Y: Various actions depending on current view:
    Has no effect in "Sent" and "All Mail" views.
    Inbox: Archive email or message.
    Starred: Unstar email or message.
    Spam: Unmark as spam and move back to "Inbox."
    Trash: Move back to "Inbox."
    Any label: Remove the label.
    X: "Check" an email. Various actions can be performed against all checked emails.
    S: "Star" an email. Identical to the more familiar term, "flagging."
    R: Reply to the email.
    A: Reply to all recipients of the email.
    F: Forward an email.
    Shift + R: Reply to the email in a new window.
    Shift + A: Reply to all recipients of the email in a new window.
    Shift + F: Forward an email in a new window.
    Shift + 1 (!): Mark an email as spam and remove it from the inbox.
    G then I: Switch to "Inbox" view.
    G then S: Switch to "Starred" view.
    G then A: Switch to "All Mail" view.
    G then C: Switch to "Contacts" view.
    G then S: Switch to "Drafts" view.

    Mozilla Firefox Shortcuts

    Ctrl + Tab or Ctrl + PageDown: Cycle through tabs.
    Ctrl + Shift + Tab or Ctrl + PageUp: Cycle through tabs in reverse.
    Ctrl + (1-9): Switch to tab corresponding to number.
    Ctrl + N: New window.
    Ctrl + T: New tab.
    Ctrl + L or Alt + D or F6: Switch focus to location bar.
    Ctrl + Enter: Open location in new tab.
    Shift + Enter: Open location in new window.
    Ctrl + K or Ctrl + E: Switch focus to search bar.
    Ctrl + O: Open a local file.
    Ctrl + W: Close tab, or window if there's only one tab open.
    Ctrl + Shift + W: Close window.
    Ctrl + S: Save page as a local file.
    Ctrl + P: Print page.
    Ctrl + F or F3: Open find toolbar.
    Ctrl + G or F3: Find next...
    Ctrl + Shift + G or Shift + F3: Find previous...
    Ctrl + B or Ctrl + I: Open Bookmarks sidebar.
    Ctrl + H: Open History sidebar.
    Escape: Stop loading page.
    Ctrl + R or F5: Reload current page.
    Ctrl + Shift + R or Ctrl + F5: Reload current page; bypass cache.
    Ctrl + U: View page source.
    Ctrl + D: Bookmark current page.
    Ctrl + NumpadPlus or Ctrl + Equals (+/=): Increase text size.
    Ctrl + NumpadMinus or Ctrl + Minus: Decrease text size.
    Ctrl + Numpad0 or Ctrl + 0: Set text size to default.
    Alt + Left or Backspace: Back.
    Alt + Right or Shift + Backspace: Forward.
    Alt + Home: Open home page.
    Ctrl + M: Open new message in integrated mail client.
    Ctrl + J: Open Downloads dialog.
    F6: Switch to next frame. You must have selected something on the page already, e.g. by use of Tab.
    Shift + F6: Switch to previous frame.
    Apostrophe ('): Find link as you type.
    Slash (/): Find text as you type.

    Remote Desktop Connection Navigation

    Ctrl + Alt + End: Open the NT Security dialog.
    Alt + PageUp: Switch between programs.
    Alt + PageDown: Switch between programs in reverse.
    Alt + Insert: Cycle through the programs in most recently used order.
    Alt + Home: Display start menu.
    Ctrl + Alt + Break: Switch the client computer between a window and a full screen.
    Alt + Delete: Display the Windows menu.
    Ctrl + Alt + NumpadMinus: Place a snapshot of the entire client window area on the Terminal server clipboard and provide the same functionality as pressing Alt + PrintScreen on a local computer.
    Ctrl + Alt + NumpadPlus: Place a snapshot of the active window in the client on the Terminal server clipboard and provide the same functionality as pressing PrintScreen on a local computer.

    Accessibility

    Right Shift for eight seconds: Toggle FilterKeys on and off. FilterKeys must be enabled.
    Left Alt + Left Shift + PrintScreen: Toggle High Contrast on and off. High Contrast must be enabled.
    Left Alt + Left Shift + NumLock: Toggle MouseKeys on and off. MouseKeys must be enabled.
    NumLock for five seconds: Toggle ToggleKeys on and off. ToggleKeys must be enabled.
    Shift five times: Toggle StickyKeys on and off. StickyKeys must be enabled.
    6.) Microsoft Natural Keyboard with IntelliType Software Installed
    Win + L: Log off Windows.
    Win + P: Open Print Manager.
    Win + C: Open control panel.
    Win + V: Open clipboard.
    Win + K: Open keyboard properties.
    Win + I: Open mouse properties.
    Win + A: Open Accessibility properties.
    Win + Space: Displays the list of Microsoft IntelliType shortcut keys.
    Win + S: Toggle CapsLock on and off.

    Generic

    Ctrl + C or Ctrl + Insert: Copy.
    Ctrl + X or Shift + Delete: Cut.
    Ctrl + V or Shift + Insert: Paste/Move.
    Ctrl + N: New... File, Tab, Entry, etc.
    Ctrl + S: Save.
    Ctrl + O: Open...
    Ctrl + P: Print.
    Ctrl + Z: Undo.
    Ctrl + A: Select all.
    Ctrl + F: Find...
    Ctrl+W : to close the current window
    Ctrl + F4: Close tab or child window.
    F1: Open help.
    F11: Toggle full screen mode.
    Alt or F10: Activate menu bar.
    Alt + Space: Display system menu. Same as clicking the icon on the titlebar.
    Escape: Remove focus from current control/menu, or close dialog box.
    Generic Navigation
    Tab: Forward one item.
    Shift + Tab: Backward one item.
    Ctrl + Tab: Cycle through tabs/child windows.
    Ctrl + Shift + Tab: Cycle backwards through tabs/child windows.
    Enter: If a button's selected, click it, otherwise, click default button.
    Space: Toggle items such as radio buttons or checkboxes.
    Alt + (Letter): Activate item corresponding to (Letter). (Letter) is the underlined letter on the item's name.
    Ctrl + Left: Move cursor to the beginning of previous word.
    Ctrl + Right: Move cursor to the beginning of next word.
    Ctrl + Up: Move cursor to beginning of previous paragraph. This and all subsequent Up/Down hotkeys in this section have only been known to work in Rich Edit controls.
    Ctrl + Down: Move cursor to beginning of next paragraph.
    Shift + Left: Highlight one character to the left.
    Shift + Right: Highlight one character to the right.
    Shift + Up: Highlight from current cursor position, to one line up.
    Shift + Down: Highlight from current cursor position, to one line down.
    Ctrl + Shift + Left: Highlight to beginning of previous word.
    Ctrl + Shift + Right: Highlight to beginning of next word.
    Ctrl + Shift + Up: Highlight to beginning of previous paragraph.
    Ctrl + Shift + Down: Highlight to beginning of next paragraph.
    Home: Move cursor to top of a scrollable control.
    End: Move cursor to bottom of a scrollable control.
    Generic File Browser
    Arrow Keys: Navigate.
    Shift + Arrow Keys: Select multiple items.
    Ctrl + Arrow Keys: Change focus without changing selection. "Focus" is the object that will run on Enter. Space toggles selection of the focused item.
    (Letter): Select first found item that begins with (Letter).
    BackSpace: Go up one level to the parent directory.
    Alt + Left: Go back one folder.
    Alt + Right: Go forward one folder.
    Enter: Activate (Double-click) selected item(s).
    Alt + Enter: View properties for selected item.
    F2: Rename selected item(s).
    Ctrl + NumpadPlus: In a Details view, resizes all columns to fit the longest item in each one.
    Delete: Delete selected item(s).
    Shift + Delete: Delete selected item(s); bypass Recycle Bin.
    Ctrl while dragging item(s): Copy.
    Ctrl + Shift while dragging item(s): Create shortcut(s).

    In tree pane, if any:
    Left: Collapse the current selection if expanded, or select the parent folder.
    Right: Expand the current selection if collapsed, or select the first subfolder.
    Numpad Asterisk: Expand currently selected directory and all subdirectories. No undo.
    Numpad Plus: Expand currently selected directory.
    Numpad Minus: Collapse currently selected directory.

    Windows Hotkeys

    Shift + F10 right-clicks.
    Win + L (XP Only): Locks keyboard. Similar to Lock Workstation.
    Win + F or F3: Open Find dialog. (All Files) F3 may not work in some applications which use F3 for their own find dialogs.
    Win + Control + F: Open Find dialog. (Computers)
    Win + U: Open Utility Manager.
    Win + F1: Open Windows help.
    Win + Pause: Open System Properties dialog.
    Win + Tab: Cycle through taskbar buttons. Enter clicks, AppsKey or Shift + F10 right-clicks.
    Win + Shift + Tab: Cycle through taskbar buttons in reverse.
    Alt + Tab: Display Cool Switch. More commonly known as the AltTab dialog.
    Alt + Shift + Tab: Display Cool Switch; go in reverse.
    Alt + Escape: Send active window to the bottom of the z-order.
    Alt + Shift + Escape: Activate the window at the bottom of the z-order.
    Alt + F4: Close active window; or, if all windows are closed, open shutdown dialog.
    Shift while a CD is loading: Bypass AutoPlay.
    Shift while login: Bypass startup folder. Only those applications will be ignored which are in the startup folder, not those started from the registry (Microsoft\Windows\CurrentVersion\Run\)
    Ctrl + Alt + Delete or Ctrl + Alt + NumpadDel (Both NumLock states): Invoke the Task Manager or NT Security dialog.
    Ctrl + Shift + Escape (2000/XP ) or (Ctrl + Alt + NumpadDot) : Invoke the task manager. On earlier OSes, acts like Ctrl + Escape.
    Print screen: Copy screenshot of current screen to clipboard.
    Alt + Print screen: Copy screenshot of current active window to clipboard.
    Ctrl + Alt + Down Arrow: Invert screen. Untested on OS's other than XP.
    Ctrl + Alt + Up Arrow: Undo inversion.
    Win + B : Move focus to systray icons

    hope this article helps you...
    always waiting for your comments...
    Enjoy...!!!