Showing posts with label Windows. Show all posts
Showing posts with label Windows. Show all posts

Tuesday, 6 December 2011

How to Create your own Run Command ?

I talk a lot about Windows, and using the “Run” command is a large part of it. It is a simple and easy method of accessing programs quickly. If you happen to want to make a shortcut to an application your own way, guess what, you can!
Let’s do it:
Step 1: Go to “Start,” “Run,” (told you we use it a lot) and type regedit.
Step 2: Navigate to the following:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Apps Path
Step 3: Create a new folder/key under Apps Path. (Right-Click Apps Path and click “New,” “Key.”)
Step 4: Title the new folder/key the name of the application, e.g. firefox.exe.
Step 5: Right-Click the default string value (the thing automatically created in your new folder) and click Modify.
Step 6: Change the value to the path of the executable you are attempting to run. E.g. C:\Program Files\Mozilla Firefox\firefox.exe.
Step 7: Create a new “String Value” by right-clicking under the default value (the thing we just edited) and select “New,” “String Value.” Name it Path and enter the value as the same path you previously entered.

Step 8: Done! Now, all you need to do is go to “Start,” “Run,” and type the name of your command!

How to Send Data on a Right Click to Your Desired Folder?

How to Send Data on a Right Click to Your Desired Folder?

Whenever you attach a removable disk and want to send some items in it, you have option either you select the required files and do a CTRL –C, open the removable disk and do a CTRL-V or you select the required files right click on it and there you find “Send To” option. In “Send To” you find the name of removable disk and you simply send the items into it. Well, What if i get the name of my own desired folder there which I use frequently for keeping my stuff.

Now in this post I will be telling you how you can create your own folder with in any name in “Send To” option so that whenever you will copy any files or folders, you will simply send them to your folder instead of using CTRL-C and CTRL-V.

1)     Firstly you’ll have to access hidden files. So change your view settings to make all hidden files visible.
Tools -> folder options -> view (tab) and select the show hidden files and folders.

2)     In Windows 7 also you will have to unmark “hide system protected files and folder”. After that you can see all the hidden system protection file, now go to
C:\Users\UserName\SendTo folder.

3)     Open up my computer and locate your most used folders let us take “Fun”. Create a shortcut of the most used folders (Fun) in
C:\Users\UserName\SendTo folder.

4)     You can do this in a number of ways.
Right click -> send to desktop (create shortcut) and move the shortcut from the desktop to the C:\Users\UserName\SendTo folder.
Copy the most used folder and go to C:\Users\UserName\SendTo folder and right click -> paste shortcut.

5)     Now your customized “Send To” option is ready to go

How to Hide Application Icon in Windows 7 Taskbar

Microsoft Windows 7 comes with a taskbar that has never before been witnessed in its predecessors. The Windows 7 taskbar features a dock-type appearance and utility tools like launching a program or running an application. Undoubtedly, the Windows 7 taskbar helps the user to an extent more than what meets the eye.
Here, we unveil a new utilization feature of the Windows 7 taskbar. Often, some programs and shortcuts to various applications are pinned to the taskbar for easy accessibility. However, sometimes for reasons concerning privacy and confidentiality, the user may want to hide these icons so that other users logging into his computer do not have access to his private applications or programs. We’ll now plow on the process to achieve this useful tweak.
To start with, the icon that needs to be hidden should remain invisible at the taskbar with only the creator knowing its perfect location and the authority to view and access it. We, here, take Mozilla Firefox as an example to the program that requires to be hidden. On completing the following procedure, your taskbar will contain Mozilla Firefox as a launch up program while keeping it invisible to anyone who logs on to your computer.

Making a program icon invisible

To make a program icon invisible, you need to use software called “Resource Hacker”. Download this freeware to start the process. The downloaded file is a “.zip” file. No installation is required to use this software.
On extraction, locate the file “ResHacker.exe” in the extracted folder. Right click on this file and select to “Run as Administrator”. Confirm on request to open Resource Hacker.
1. After the software opens, go to “File” menu (or simply press Alt+F). Select “Open” and navigate to the location where the Mozilla Firefox execution file is present. (It should be in the folder “Mozilla Firefox” in the “Programs” folder of the directory where Mozilla is installed). Select the file “firefox.exe” file and click “Open”.
2. The Resource Hacker wizard opens up. Select “Icon” and then click on the “Action” tab on the menu-bar. Select “Replace Icon“.
3. The “Replace Icon in” window appears. Select “1″ in the right pane of the window under the tag “Select icon to replace” and then click to “Open file with new Icon…“.
4. Navigate to “C:\Windows\System32\” and click on “shell32.dll” to open it.
5. On clicking “Open” a list of icons appear under the tag “Select new icon“. Select the icon number 52. Then click to “Replace”.
You will be notified that the icon has been replaced.
To proceed, you have to replace a second set of icons. Select “Open” under “File” menu. On asking whether to save your work, select “NO“, as the task is not completed yet. Follow the steps 1 to 5 once again with the exception that in step 3, this time, Select “32512″ in the right pane of the window under the tag “Select icon to replace”. Follow the remaining steps as you have done previously.
Save the file you have just created by pressing Ctrl+S to the installed program folder of Mozilla Firefox (in the folder “Mozilla Firefox” in the “Programs” folder of the directory where Mozilla is installed).
Exit Resource Hacker.
The new file created “firefox.exe” can be visualized when you open the folder where Mozilla is installed. This file does not have an icon, or more technically, the icon of this file is invisible. The original Firefox execution file still remains within the folder with it being renamed to “firefox_original.exe”. Now, right click on the file “firefox.exe” and select “Pin to taskbar”.
To the right of the pinned programs on the taskbar, appears a section which, on hovering your mouse pointer over it, displays “firefox.exe – Shortcut”. You have just created a secret invisible icon in your Windows 7 taskbar. Drag this section to the extreme left of the taskbar to the right of the “Start” button.
Your taskbar remains just as it was before you created this invisible icon. None, but you know the exact location of this icon. Your privacy gets boosted up with an increased accessibility option.

Friday, 14 October 2011

Create a Password-Protected invisible folder without any software

To create a password-protected invisible folder without any software:
  • Open Notepad(Start > All Programs > Accessories > Notepad).
  • Copy the following code and paste it in notepad.

cls
@echo off
title Folder Locker
IF EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B303­09D}" GOTO UNLOCK
IF NOT EXIST Locker GOTO MDLOCKER
echo Folder Created.
:CONFIRM
echo Are you sure you want to lock the folder? (Y/N)
set/p "cho="
IF %cho%==Y GOTO LOCK
IF %cho%==y GOTO LOCK
IF %cho%==N GOTO END
IF %cho%==n GOTO END
echo Invalid Choice.
GOTO CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B303­09D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B303­09D}"
echo Folder Locked.
GOTO END

:UNLOCK
echo Enter password to unlock the Folder :
set/p "pass="
IF NOT %pass% == YourPasswordHere GOTO FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B303­09D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B303­09D}" LOCK
echo Folder Unlocked Successfully.
GOTO END
:FAIL
echo Invalid Password!
GOTO END

:MDLOCKER
md Locker
echo Folder created.

GOTO END
:END
PAUSE
  • In the above code change YourPasswordHere with your own password
  • From the Menu bar, click on File > Save As. The Save As dialog box opens.
  • Under the Save as type select All Files option. Write a desired name for your file, for example Locker.bat [Remember to give a .bat extension to your file name].
  • Open the Locker.bat file. A folder named Locker will be created in the same location (where your locker.bat file is situated)
  • Open the folder and add whatever personal that you want to hide from others.
  • Again open Locker.bat file. Now it will prompt you a question that if you want to lock your folder or not. Reply yes with y
  • Now your personal Locker folder is invisible! Now you can only access your folder through the Locker.bat file
  • To access your folder again: Open the Locker.bat file. Now it will ask you to enter the password to unlock the folder. Enter the password. The folder will be visible.
  • Note: Thus you see Locker.bat file is very important (Anyone can see your password by right-clicking it and selecting Edit, so you must keep it safely in a location(e.g. your Flash drive) other than where you have created your Locker Folder. To access your folder again copy paste the Locker.bat file in the Locker folder location and then enter the password.

Saturday, 8 October 2011

Windows Keyboard Shortcuts .

Getting used to using your keyboard exclusively and leaving your mouse behind will make you much more efficient at performing any task on any Windows system. I use the following keyboard shortcuts every day:
Windows key + R = Run menu
This is usually followed by:
cmd = Command Prompt
iexplore + “web address” = Internet Explorer
compmgmt.msc = Computer Management
dhcpmgmt.msc = DHCP Management
dnsmgmt.msc = DNS Management
services.msc = Services
eventvwr = Event Viewer
dsa.msc = Active Directory Users and Computers
dssite.msc = Active Directory Sites and Services
Windows key + E = Explorer
ALT + Tab = Switch between windows
ALT, Space, X = Maximize window
CTRL + Shift + Esc = Task Manager
Windows key + Break = System properties
Windows key + F = Search
Windows key + D = Hide/Display all windows
CTRL + C = copy
CTRL + X = cut
CTRL + V = paste
Also don’t forget about the “Right-click” key next to the right Windows key on your keyboard. Using the arrows and that key can get just about anything done once you’ve opened up any program.
Keyboard Shortcuts
[Alt] and [Esc] Switch between running applications
[Alt] and letter Select menu item by underlined letter
[Ctrl] and [Esc] Open Program Menu
[Ctrl] and [F4] Close active document or group windows (does not work with some applications)
[Alt] and [F4] Quit active application or close current window
[Alt] and [-] Open Control menu for active document
Ctrl] Lft., Rt. arrow Move cursor forward or back one word
Ctrl] Up, Down arrow Move cursor forward or back one paragraph
[F1] Open Help for active application
Windows+M Minimize all open windows
Shift+Windows+M Undo minimize all open windows
Windows+F1 Open Windows Help
Windows+Tab Cycle through the Taskbar buttons
Windows+Break Open the System Properties dialog box
acessability shortcuts
Right SHIFT for eight seconds…….. Switch FilterKeys on and off.
Left ALT +left SHIFT +PRINT SCREEN……. Switch High Contrast on and off.
Left ALT +left SHIFT +NUM LOCK……. Switch MouseKeys on and off.
SHIFT……. five times Switch StickyKeys on and off.
NUM LOCK…… for five seconds Switch ToggleKeys on and off.
explorer shortcuts
END……. Display the bottom of the active window.
HOME……. Display the top of the active window.
NUM LOCK+ASTERISK……. on numeric keypad (*) Display all subfolders under the selected folder.
NUM LOCK+PLUS SIGN……. on numeric keypad (+) Display the contents of the selected folder.
NUM LOCK+MINUS SIGN……. on numeric keypad (-) Collapse the selected folder.
LEFT ARROW…… Collapse current selection if it’s expanded, or select parent folder.
RIGHT ARROW……. Display current selection if it’s collapsed, or select first subfolder.
Type the following commands in your Run Box (Windows Key + R) or Start Run
devmgmt.msc = Device Manager
msinfo32 = System Information
cleanmgr = Disk Cleanup
ntbackup = Backup or Restore Wizard (Windows Backup Utility)
mmc = Microsoft Management Console
excel = Microsoft Excel (If Installed)
msaccess = Microsoft Access (If Installed)
powerpnt = Microsoft PowerPoint (If Installed)
winword = Microsoft Word (If Installed)
frontpg = Microsoft FrontPage (If Installed)
notepad = Notepad
wordpad = WordPad
calc = Calculator
msmsgs = Windows Messenger
mspaint = Microsoft Paint
wmplayer = Windows Media Player
rstrui = System Restore
netscp6 = Netscape 6.x
netscp = Netscape 7.x
netscape = Netscape 4.x
waol = America Online
control = Opens the Control Panel
control printers = Opens the Printers Dialog
internetbrowser
type in u’re adress “google”, then press [Right CTRL] and [Enter]
add www. and .com to word and go to it
For Windows XP:
Copy. CTRL+C
Cut. CTRL+X
Paste. CTRL+V
Undo. CTRL+Z
Delete. DELETE
Delete selected item permanently without placing the item in the Recycle Bin. SHIFT+DELETE
Copy selected item. CTRL while dragging an item
Create shortcut to selected item. CTRL+SHIFT while dragging an item
Rename selected item. F2
Move the insertion point to the beginning of the next word. CTRL+RIGHT ARROW
Move the insertion point to the beginning of the previous word. CTRL+LEFT ARROW
Move the insertion point to the beginning of the next paragraph. CTRL+DOWN ARROW
Move the insertion point to the beginning of the previous paragraph. CTRL+UP ARROW
Highlight a block of text. CTRL+SHIFT with any of the arrow keys
Select more than one item in a window or on the desktop, or select text within a document. SHIFT with any of the arrow keys
Select all. CTRL+A
Search for a file or folder. F3
View properties for the selected item. ALT+ENTER
Close the active item, or quit the active program. ALT+F4
Opens the shortcut menu for the active window. ALT+SPACEBAR
Close the active document in programs that allow you to have multiple documents open simultaneously. CTRL+F4
Switch between open items. ALT+TAB
Cycle through items in the order they were opened. ALT+ESC
Cycle through screen elements in a window or on the desktop. F6
Display the Address bar list in My Computer or Windows Explorer. F4
Display the shortcut menu for the selected item. SHIFT+F10
Display the System menu for the active window. ALT+SPACEBAR
Display the Start menu. CTRL+ESC
Display the corresponding menu. ALT+Underlined letter in a menu name
Carry out the corresponding command. Underlined letter in a command name on an open menu
Activate the menu bar in the active program. F10
Open the next menu to the right, or open a submenu. RIGHT ARROW
Open the next menu to the left, or close a submenu. LEFT ARROW
Refresh the active window. F5
View the folder one level up in My Computer or Windows Explorer. BACKSPACE
Cancel the current task. ESC
SHIFT when you insert a CD into the CD-ROM drive Prevent the CD from automatically playing.
Use these keyboard shortcuts for dialog boxes:
To Press
Move forward through tabs. CTRL+TAB
Move backward through tabs. CTRL+SHIFT+TAB
Move forward through options. TAB
Move backward through options. SHIFT+TAB
Carry out the corresponding command or select the corresponding option. ALT+Underlined letter
Carry out the command for the active option or button. ENTER
Select or clear the check box if the active option is a check box. SPACEBAR
Select a button if the active option is a group of option buttons. Arrow keys
Display Help. F1
Display the items in the active list. F4
Open a folder one level up if a folder is selected in the Save As or Open dialog box. BACKSPACE
If you have a Microsoft Natural Keyboard, or any other compatible keyboard that includes the Windows logo key and the Application key , you can use these keyboard shortcuts:
Display or hide the Start menu. WIN Key
Display the System Properties dialog box. WIN Key+BREAK
Show the desktop. WIN Key+D
Minimize all windows. WIN Key+M
Restores minimized windows. WIN Key+Shift+M
Open My Computer. WIN Key+E
Search for a file or folder. WIN Key+F
Search for computers. CTRL+WIN Key+F
Display Windows Help. WIN Key+F1
Lock your computer if you are connected to a network domain, or switch users if you are not connected to a network domain. WIN Key+ L
Open the Run dialog box. WIN Key+R
Open Utility Manager. WIN Key+U
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
Open Utility Manager. WIN Key+U
shortcuts you can use with Windows Explorer:
Display the bottom of the active window. END
Display the top of the active window. HOME
Display all subfolders under the selected folder. NUM LOCK+ASTERISK on numeric keypad (*)
Display the contents of the selected folder. NUM LOCK+PLUS SIGN on numeric keypad (+)
Collapse the selected folder. NUM LOCK+MINUS SIGN on numeric keypad (-)
Collapse current selection if it’s expanded, or select parent folder. LEFT ARROW
Display current selection if it’s collapsed, or select first subfolder. RIGHT ARROW

Friday, 7 October 2011

Windows 8 Preview: 16 NEW Features We Already Know About!


Windows 8 Preview: 16 NEW Features We Already Know About!
IT IS TIME to rejoice, FaaDoOs! Microsoft Corp has finally given a sneak-peak into its Windows 8 operating system, which has been awaited with a baited breath for long. Although according to Microsoft the name “Windows 8” is not yet confirmed but it is expected to be Windows 8 as its coming next to Windows 7 and Microsoft’s head Steve Ballmer called it Windows 8 in his speech he recently delivered in Japan. The world’s largest software company is expected to launch the new system in the next 18 months, as it races to catch up with the success of Apple Incs iPad, which went on sale over a year ago.

Microsoft typically aims for 24 to 36 months between major Windows versions, suggesting a launch date for the next Windows between October 2011 and October 2012. The head of Microsofts Windows unit, Steven Sinofsky, said Microsoft is working to integrate Internet telephone service Skype into the new system, following its agreement to purchase it last month.

The demonstration shows Microsoft is making progress towards the new operating system, which it promises will run on a range of hardware devices from traditional PCs to laptops and tablets, using both touchscreen and mouse and keyboard commands.

Windows 8 features explained: What’s new and how it works

1. New Welcome screen
A new ‘Metro UI’ (the user interface for Windows Phone 7 devices) has been integrated in the latest builds of Windows 8. Featuring the date and time, the users are shown a list of users on the local machine to click on and enter their password.


windows logon screen


2. ‘Modern’ Task Manager
A new task manager has been developed, redefining how programs and system-critical applications are displayed. Frankly, for task manager veterans, the entire feel of the application has changed entirely. However, it is more in-tune with the look and feel of Windows 8, though devoid of a Ribbon bar — for now, at least. It also includes a more ‘advanced’ task manager for those who still require seeing extensive statistics of their hardware.



3. Portable Workspaces – Windows on a USB Stick!
One of the most highly anticipated features, discovered in an early build of Windows 8 — the portable workspace, allowing you to effectively put Windows on a USB stick. On the other hand, it looks more likely to become an enterprise only feature, and further limited to those with a USB stick or external hard drive that is at least 16GB in size. However, already this could give an early indication of the final hard drive memory footprint of the upcoming operating system.



4. Simple system ‘reset’
This functionality allows a user or system administrator to ‘reset’ the operating system back to the default settings. As so many applications and settings are expected to be cloud based, this would in theory allow you to get back up and running in minutes as opposed to hours. From the screenshots, it appears to be a quick and simple process, with user accounts and personal files kept in backup space, before your default Windows settings are restored.



5. ARM processor ‘tablet support’
Windows 8 will have ARM support, a low-power processor which allows devices to run longer on batteries. As seen during an Internet Explorer 10 preview, one of the devices was running an ARM processor, and it is expected to launch with full ARM support making tablets a more likely option.

6. Improved disk cleanup
In Windows 8, there will be an overhaul of the disk cleanup facility, designed to clear the junk out of your operating system, like temporary files and the Recycle Bin. More options are given, and better categorising of file types corresponding to their size.




7. ‘Modern Reader’ PDF support
‘Modern Reader’ is the name of the PDF reading application designed and built using AppX technology, which bridge between the mobile and the desktop workspace gap. According to one, as the application packages are very similar to phone application packages, making applications easier to port across from the desktop to the mobile, including tablets.



8. Internet Explorer 10
There is all but no doubt that Windows 8 will come with a pre-installed version of Internet Explorer, probably IE10, but may not be set to ‘as default’ depending on your user location. It is not unlike Microsoft to bundle in a beta of Internet Explorer with a beta of Windows, and including the browser with the operating system seems entirely “logical”.

9. Internet Explorer ‘Immersive’
A slimmed down version of the browser, using a new user interface codenamed ‘Immersive’, will feel and look like the phone version, but will have all the rendering of the desktop version. Using a new platform for developing applications that scale up and down from the desktop to the phone and vice versa, it will allow many more applications to be scalable and adaptable to their environments.



10. Windows App Store
Likened to Apple’s App Store for iOS and Mac devices, Microsoft is set to include its own application web store in the next version of Windows. Dubbed the Windows App Store, unsurprisingly, it has yet to turn up in a leaked build, though screenshots seem to confirm its existence.

11. ISO mounting
ISO images are files which contain the exact coding, files and folders of the contents on a CD or DVD. Windows 8 will include functionality, as see in more recent builds, to not only mount images to read and deal with, but also the functionality to burn them. This could negate many image burning applications out there on the market already.

12. Webcam application
A new application seemingly based on the ‘Metro UI’ user experience, has appeared in early builds of Windows 8, allowing users to start and stop video capture, and capture images immediately and after a short delay.

13. Streaming Manager
It has emerged that in a seemingly similar way to how Office 2010 is delivered to some customers, a Streaming Manager will be part of Windows 8 to allow other programs to be streamed to the desktop. It will allow applications to be run before they are fully downloaded, provided they are provisioned to do so. If a feature is needed, it will be downloaded as and when it is needed.

14. Facial recognition login
Those with a Kinect or a webcam may be able to login through facial recognition. A setting was detected in one of the latest builds of Windows 8’s application libraries which suggests that when Windows 8 detects a particular user has sat down at the computer, their face alone will be enough proof to allow the desktop to open up with all their user files and settings. Who needs a password nowadays, anyway?

15. Cloud-based roaming profiles
Roaming profiles have yet been semi-mythical, but have been uncovered in the latest build. Your personalisation settings (Aero and colour settings) all the way through to language settings and wireless credentials will be stored in the cloud, or cloud-accessible, so you can take your ‘computer’ on the go with you. Linked accounts will be accessible through Windows Live, but can be turned off if you are on a bandwidth-restricted network. Whether files and folders will be synced also, should be subject to extreme caution, however.

16. Black Screen of Death!!
In Metro UI style, the ‘traditional’ “Blue Screen of Death” will be replaced by a perhaps more ‘friendly’ “Black Screen of Death”. The error detail will be given still for troubleshooting purposes, but will already occur when the computer has effectively shut down.



The new Windows experience will ultimately be powered by application and device developers around the world — one experience across a tremendous variety of PCs. The user interface and new apps will work with or without a keyboard and mouse on a broad range of screen sizes and pixel densities, from small slates to laptops, desktops, all-in-ones, and even classroom-sized displays.

Let's hope this new version of windows will live up to its promise and Microsoft will deliver us a great product.

HOW TO Hide partitions without using any software

  1. Go to Start->Run.
  2. Type DISKPART and press Enter.
  3. In the console type list volume to see all the drives available on your PC.
  4. Now select the drive which you want to hide. Suppose you want to hide D see the volume number opposite to Ltr D.
  5. In My PC it is volume 4 for drive D(might be different in your computer) .
  6. Now to hide drive D type Select volume 4 .(Select the appropriate number according to your system)
  7. Then type remove letter d , this will hide your drive.
  8. Now to get your drive back type Select volume 4 and then type assign letter d .
  9. See this image

This normally works for all drives but may not work for system drives(The drive in which your OS is loaded).

Top 10 Windows Hacking Tools


This is the Collection of Best Windows Hacking Tools:

1. Cain & Abel – Cain & Abel is a password recovery tool for the Microsoft Windows Operating System. It allows easy recovery of various kind of passwords by sniffing the network, cracking encrypted passwords using Dictionary, Brute-Force and Cryptanalysis attacks, recording VoIP conversations, decoding scrambled passwords, revealing password boxes, uncovering cached passwords and analyzing routing protocols.

2. SuperScan – SuperScan is a powerful TCP port scanner, pinger, resolver. SuperScan 4 (Current Version) is a completely-rewritten update of the highly popular Windows port scanning tool, SuperScan.

3. GFI LANguard Network Security Scanner – GFI LANguard N.S.S. is a network vulnerability management solution that scans your network and performs over 15,000 vulnerability assessments. It identifies all possible security threats and provides you with tools to patch and secure your network. GFI LANguard N.S.S. was voted Favorite Commercial Security Tool by NMAP users for 2 years running and has been sold over 200,000 times!

4. Retina – Retina Network Security Scanner, recognised as the industry standard for vulnerability assessment, identifies known security vulnerabilities and assists in prioritising threats for remediation. Featuring fast, accurate, and non-intrusive scanning, users are able to secure their networks against even the most recent of discovered vulnerabilities.

5. SamSpade – SamSpade provides a consistent GUI and implementation for many handy network query tasks. It was designed with tracking down spammers in mind, but can be useful for many other network exploration, administration, and security tasks. It includes tools such as ping, nslookup, whois, dig, traceroute, finger, raw HTTP web browser, DNS zone transfer, SMTP relay check, website search, and more.

6. N-Stealth – N-Stealth is a commercial web server security scanner. It is generally updated more frequently than free web scanners such as whisker and nikto, but you have to pay for the privilege.

7. Solarwinds – Solarwinds contains many network monitoring, discovery and attack tools. The advanced security tools not only test internet security with the SNMP Brute Force Attack and Dictionary Attack utilities but also validate the security on Cisco Routers with the Router Security Check. The Remote TCP Reset remotely display all active sessions on a device and the Password Decryption can decrypt Type 7 Cisco Passwords. The Port Scanner allows testing for open TCP ports across IP Address and port ranges or selection of specific machines and ports.

8. Achilles – The first publicly released general-purpose web application security assessment tool. Achilles acts as a HTTP/HTTPS proxy that allows a user to intercept, log, and modify web traffic on the fly. Due to a cyber squatter, Achilles is no longer online at its original home of www.Digizen-Security.com…OOPS!

9. CookieDigger - CookieDigger helps identify weak cookie generation and insecure implementations of session management by web applications. The tool works by collecting and analyzing cookies issued by a web application for multiple users. The tool reports on the predictability and entropy of the cookie and whether critical information, such as user name and password, are included in the cookie values.

10. Netcat (The Network SwissArmy Knife) – Netcat was originally a Unix utility which reads and writes data across network connections, using TCP or UDP protocol. It is designed to be a reliable “back-end” tool that can be used directly or easily driven by other programs and scripts. At the same time, it is a feature-rich network debugging and exploration tool, since it can create almost any kind of connection you would need and has several interesting built-in capabilities.