techian.com

A Blog With No Limits

Advertisement

Archive for the ‘ IP Scanner ’ Category

Advanced IP Scanner 1.5 (FREE)

Posted on August 2, 2008 by admin | No Comments






What is Advanced IP Scanner?

Advanced IP Scanner is a fast, robust and easy-to-use IP scanner for Windows. It easily lets you have various types of information about local network computers in a few seconds! Advanced IP Scanner gives you one-click access to many useful functions – remote shutdown and wake up, Radmin integration and more! Powered with multithread scan technology, this program can scan hundreds computers per second, allowing you to scan ‘C’ or even ‘B’ class network even from your modem connection.

* Current Version: 1.5
* Release Date: July 10, 2006
* File Size: 307 KB
* Operating System: Windows 95/98/ME/NT4.0/2000/XP/2003
* License: Freeware!
Features:

Advanced IP Scanner – Fast and stable multi-threaded IP scanning
Fast and Stable multi-threaded IP Scanning
With Advanced IP Scanner you can scan hundreds of IP addresses simultaneously and with great speed – on Pentium-based machines Advanced IP Scanner scans class “B” and “C” networks in a few seconds! You can configure Advanced IP Scanner to scan in many priority levels, set number of maximum threads and so on.

Advanced IP Scanner – Remote PC Shutdown
Remote PC Shutdown
This shuts down any remote machine with NT or Win2k operating system. You can use your default access rights or specify login and password to shutdown.

Advanced IP Scanner – Wake-On-LAN
Wake-On-LAN
You can wake any machine remotely with Advanced IP Scanner, if “Wake-on-LAN” feature is supported by your network card.

Advanced IP Scanner – Group operations
Group Operations
Any feature of Advanced IP Scanner can be used with any number of selected computers. For example, you can remotely shut down a complete computer class with a few clicks.

Advanced IP Scanner – Lists of computers saving and loading
Lists of computers Saving and Loading
This enables you to perform operations with a specific list of computers. No problems – just save a list of machines you need and Advanced IP Scanner will load it at start up automatically.

Advanced IP Scanner – Radmin 2.2 integration
Radmin 2.x and 3.x Integration
This enables you to connect via Radmin (if it’s installed) to remote computers with just one click.

download it from download.com

Testing network connections and computer communications has become increasingly complicated with the deluge of new networking products and server applications. Many network administrators rely on tools such as Ping, Telnet, and packet sniffers to diagnose and test network and server connections. Although these tools let you test network connections and probe remote machines, they don’t let you open an arbitrary connection across your network (e.g., specifying both source and destination ports) or set up a temporary client-server connection to quickly copy a file or redirect output from an application on one machine to another. To solve these problems and more, consider using what many call the Swiss Army knife of the network and security administrator’s toolkit—Netcat.

Netcat’s elegant simplicity belies its power and utility. Let’s discuss how to use this handy tool to open network connections, perform port scans, transfer files, and redirect standard input and output. Attackers have also used this tool to set up back doors and infiltrate computer networks. Regardless of whether you choose to add Netcat to your repertoire of security and network tools, you’ll benefit from understanding the capabilities that this flexible tool provides.

Netcat’s Beginnings
Developed in 1995 for UNIX systems and ported to Windows in 1998, Netcat lets administrators read to and write from custom TCP or UDP connections between remote hosts. You can run Netcat as a client to connect to applications on remote servers or start Netcat in listening mode to permit other network applications—even other Netcat sessions—to connect to it.

Netcat is free to download and use. You can download the UNIX/Linux or Windows versions of Netcat from @stake

Far from Telnet
As a simple client network program, Netcat differs from Telnet in that it doesn’t require authentication and doesn’t require logon information or other session-negotiation information. When you connect to a Web server or other proprietary network application, Netcat by itself provides a simple, clean connection. When you connect to a Telnet daemon, the server requires the extra logon information, and you must use Netcat with the -t flag to establish the connection. For example, the command

nc -t 192.168.0.2 23

instructs Netcat to attempt a connection on TCP port 23 to a Telnet server.

You use a similar command syntax to open a connection to any network application running on a remote machine. For example, to connect to a Web server at 192.168.0.3, simply type

nc 192.168.0.3 80

Netcat connects to TCP port 80 (the standard HTTP port) and waits for a command. If you run Netcat without redirecting a text file as stdin or if you call the utility from a script, Netcat runs in interactive mode. For example, after you run Netcat to establish a connection to a Web server, you can issue a GET statement followed by a forward slash to access the default home page:

GET /

After Netcat sends the GET / command to the Web server, the Web server processes the command and returns the default home page (as your browser sees it) to the Netcat program. Figure 1 shows a basic Web page named default.asp. Notice that the response includes the version of Microsoft IIS, as well as other configuration and session information, such as cookie and cache-control settings.

Netcat Port Scanning
Netcat also performs port scanning—with a bit of a twist. Netcat not only can scan ports to identify open ports on a server but can connect to those ports for elementary banner checking. Not all applications display a banner (i.e., announce their name and version number) when Netcat connects to them, but many do. For example, if you connect to a Microsoft Exchange Server server on the SMTP port (TCP port 25), by default you’ll see text similar to the following: “220 server.domain.com Microsoft ESMTP MAIL Service, Version: 5.0.2195.6713 ready at Wed, 16 Jul 2003 17:51:35 -0700″. If you use a standard port scanner to scan your network for TCP 25, the scanner might tell you that a mail server is listening on a particular IP address, but Netcat might be able to find out the make and model of that mail server.

You can also use Netcat to scan a range of ports. For example, to scan and try to connect to TCP ports 20 through 40 on host 192.168.0.3, type

nc -vv 192.168.0.3 20-40

After Netcat connects to an open port, it waits for further input (as it did in the earlier HTTP example). To force Netcat to continue through your port list, pipe an echo quit command to Netcat, as Figure 2 shows. The -vv flag tells Netcat to display more verbose output; in this example, Netcat shows each refused connection. On a Linux system, you can add the -w 3 or -w 5 flag to specify a timeout for Netcat (a higher number denotes a longer timeout). Varying the timeout value might improve your port scanning response time or accuracy. Depending on your platform, you’ll want to fiddle with the various Netcat settings until you get a result satisfactory to your environment. Port scanning provides useful information, including the banners of otherwise hidden applications that might be listening on your servers.

You can use the -z flag to instruct Netcat to perform a more traditional port scan. In this mode, Netcat doesn’t try to connect to the ports—it simply scans the range and reports any ports that it finds open. Netcat supports multiple verbose modes: When scanning a range of ports, use the -v flag to display only open ports or use the -vv flag to display both open and closed ports. Additionally, you can use the -r flag to randomize the ports, the -i flag to specify an interval in seconds for scanning, the -s flag to spoof a source address, the -p flag to specify the source port, and the -u flag to perform UDP port scanning and connections.

Netcat port-scanning performance varies by platform. The Linux version of Netcat took about 1 minute to scan all 65,535 ports on a computer, whereas the Windows version took an incredible 18 hours—about 1 second per port—to perform the same scan. As a comparative benchmark, the popular Nmap port-scanner utility performed the same scan on a Linux machine in 16 seconds. Although you probably wouldn’t use Netcat as your primary port scanner, it’s a great tool for querying and investigating open ports. Say, for example, you have a Linux computer at IP address 192.168.0.11 that allows inbound Secure Shell (SSH) connections. To determine which version of SSH is running, issue the Netcat command

nc 192.168.0.11 22

Netcat File Transfers
We’ve looked at how Netcat can probe and make connections to remote network applications; Netcat can also run in server mode to listen for incoming connections. To start Netcat in listening mode, use the -l flag, then specify the port on which you want Netcat to listen. To instruct Netcat to listen to TCP port 12345 and redirect any input to the local text file output.txt, on the server, type the command

nc -l -p 12345 >output.txt

Next, fire up Netcat on the client machine and connect to the Netcat server with the command

Client: nc 192.168.0.200 12345

where 192.168.0.200 is the IP address of the server and 12345 is the listening port number. After making this connection, Netcat sends any text typed on the client computer to the listening computer, which then writes the text to the text file output.txt. Let’s flip around this example and extend it a bit. This time, configure the listening computer to accept input from the file output.txt by typing the command

nc -l -p 12345 < output.txt

on the server. Connect to the listening computer with the same command as before (nc 192.168.0.200 12345). Now, the listening computer (server) sends the entire contents of output.txt across the network connection to the client computer. This method works with binary files too. Use the commands

>nc -l -p 12345 <
aBinary.exe

on the server and
nc 192.168.0.200 12345 > aBinary.exe

on the client to copy the file aBinary.exe from the server to the client. (Note that this method works for only a single connection.) After Netcat transfers the file and closes the connection, the utility exits from the server. The Windows version of Netcat supports an additional argument, the -l flag, which instructs Netcat to run again using the same command it used earlier. This method lets you create a rudimentary file-server application. Multiple clients can connect to the server on an arbitrary port to automatically get a particular file. The Netcat sample scripts also include a short and basic (but very functional) file-distribution script that demonstrates how to use Netcat as a rudimentary file-distribution application.

Shell Anywhere
One of Netcat’s most powerful features is its ability to execute and redirect standard I/O to a binary or executable file on a listening computer. For example, the commands

Server:
nc -l -p 12345 -e /bin/bash

where Server is the server running Linux and

Server:
nc -l -p 12345 -e cmd.exe

where Server is the server running Windows initialize Netcat as a listener on port 12345. When another Netcat session connects to this computer on port 12345, Netcat redirects I/O to that system’s shell program. Figure 3 shows an example of a Windows computer connected over Netcat to a Linux computer. Notice that the Linux whoami command returns the name of the currently logged-on user. In this example, we see that a Windows user who uses Netcat to connect to a bash shell prompt on the Linux computer can issue commands directly on that Linux system under the same privilege as the user account running Netcat—in this case the privileged root account.

In such situations, Netcat is platform-independent. A user can run Netcat on one platform and connect to a Netcat listener on any other platform and issue commands through the redirected binary. You can control any text program in this manner. In the previous example, the binary was the OS’s console program—either a Linux bash shell or a Windows command prompt. You can also configure Netcat to use any source or destination port: Imagine how long it might take to discover a Netcat shell program running as a listener on a popular port such as TCP port 80 or TCP port 53 on one of your network servers. A port scan might report TCP 80 as open, but a simple port scan wouldn’t discern whether the listening application was a Web server or an illicit Netcat listener.

Friend or Foe?
Netcat offers a huge degree of flexibility in creating network connections, probing remote systems, and facilitating flexible, quick, and ad hoc data transfers between user-defined ports. Netcat’s ability to specify any source or destination port, combined with the fact that no authentication is needed to establish a connection between Netcat users, makes it an extremely powerful tool—one that you can use to help manage your network or one that someone could leverage against your network. By learning about this tool’s capabilities, you can take full advantage of its benefits and reduce the chances that it will be used against you.

Blue’s Port Scanner

Posted on August 2, 2008 by admin | No Comments


BluesPortScan.zip Gui-Version v5.0.2 Build #1265

CBPS.exe Command line-Version v4.2 #272

Windows9x/ME/NT/2000/XP

A good port scanner is just one of the basic tools anyone who is
seriously interested in the internet needs.
The BluesPortScan is, i think, the fastest scanner for 32Bit windows which you can found in the net. It scans local 5000 ports in 8sec. on my 2k (P3-866) machine. If you are using Win9x/ME it’s a little bit slower… The new version 5 has now features like Port list-scans, AutoCompletion when entering known, existing host names or ips and a big big list of typical port assignments. And of course, it’s a little bit more stable, especially under Win9x/Me although these OSs are definitively not the operating systems of choice for the using this program.

download:

LanSpy is a set of network utilities brought together in a single program with simple and easy-to-use interface. LanSpy help network administrators maintain and manage their networks.

LanSpy includes fast port scanner for gathering information about open ports on remote computer, LanSpy displays services using these ports.

Look at your computer with bad guys eyes!

LanSpy is made for gathering the following information about a remote computer:

  • Ping
  • Domain name
  • NetBios names
  • MAC address
  • Server information
  • Domain (workgroup) information
  • Domain controllers
  • Remote control
  • Time
  • Disks
  • Transports
  • Users
  • Logged users
  • Global groups
  • Local groups
  • Security options
  • Shared resources
  • Sessions
  • Open files
  • Services
  • Processes
  • Registry
  • Event log
  • TCP port scanner
  • UDP port scanner

What for?

  • Audit your network for security reason issues
  • View processes on remote computers
  • Show list of installed application on workstations
  • Detect shares, open ports and user accounts

LanSpy complies only with Windows 2000/XP/2003.

LanSpy will help you to learn about a remote computer everything or almost everything.

download

Foundstone FPort

Posted on August 2, 2008 by admin | No Comments

What Is FPort?:
FPort is a free utility available from Foundstone, a division of McAfee, which you can use to identify unknown, open ports and their associated applications
What Does FPort Do?:
An FPort scan reports all open TCP/IP and UDP ports and maps them to the owning application. Similar information can be gathered using the ‘netstat -an’ command, but FPort also maps the ports to running processes with the PID, process name and path. Fport can be used to quickly identify unknown, open ports and their associated applications for troubleshooting or forensic investigations.
What Are The Operating System Requirements?:
Fport requires Windows NT4, Windows 2000 or Windows XP to run.
Command Line Parameter Switches:
To fine-tune or filter the FPort scan results, there are a few command line switches that can be used:

  • /? usage help
  • /p sort by port
  • /a sort by application
  • /i sort by pid
  • /ap sort by application path
Download FPort: You can download a copy of this free utility from Foundstone at this link:

Foundstone Vision

Posted on August 2, 2008 by admin | No Comments

What Is Vision?: Vision is a GUI (graphical user interface) version of the popular freeware tool FPort, also from Foundstone. Vision provides a comprehensive and in-depth port scanning functionality with additional features to help identify and eradicate issues.
What Can Vision Do?: The Foundstone Vision utility can display all open TCP and UDP ports on a machine, the service that is active on each port, and it maps the ports to their respective applications. Vision can help determine host status by displaying detailed system information, applications running, and processes and ports in use.
System Requirements: NT 4/ Win 2000
Note: Vision will not work on Windows 9x or Me, but may operate on Windows XP or Windows Server 2003
Note: NT 4 needs psapi.dll
800×600 resolution minimum
256 colors minimum
32MB of RAM minimum
Download Vision: To download your free copy of the Foundstone Vision utility, click here:

Foundstone Vision

Nmap Network Mapping Utility

Posted on August 2, 2008 by admin | No Comments

What is Nmap?: Nmap, short for “network mapper”, is a free utility which can quickly scan broad ranges of devices and provide valuable information about the devices on your network. It can be used for IT auditing and asset discovery as well as for security profiling of the network.
What Does Nmap Do?: Nmap uses raw IP packets to determine what hosts are available on the network, the services that are enabled, the operating system and version of the host, what sort of firewall or packet filters are in place and many other aspects of the network. The information can be used to proactively identify and correct security holes. The tool can also be used by attackers to scan a network and perform reconnaisance about the types and quantities of targets available and what weaknesses exist.
Running Nmap: Nmap is available for a wide range of operating system platforms. The standard download is a compressed file containing the UNIX version (which runs on Linux, Solaris, Free/Net/OpenBSD, and Mac OS X) and the Windows version as well as NmapFE, the X-Windows front end for UNIX, and NmapWIN, the recommended Windows GUI for Nmap.

You can download the latest version of Nmap, as well as many previous stable versions, at Nmap Downloads

NMap Scans: NMap can perform a wide range of scans. Some are more aggressive and blatant, while some are designed to be stealthy and scan undetected. Depending on the type of scan performed, different information can be discovered as well.

Some of the scan types are:

  • Connect
  • SYN Stealth
  • FIN, Xmas, Null
  • Ping
  • UDP Scan
  • IP Protocol Scan
  • ACK Scan
  • Window Scan
  • RPC Scan
  • List Scan
  • FTP Bounce

Nmap Resources: The best source of Nmap information is the official home of Nmap, Insecure.org. On that site you can find all of the details and information including:

Angry IP Scanner

Posted on August 2, 2008 by admin | No Comments





What is Angry IP Scanner?

Angry IP Scanner (or simply ipscan) is an open-source and cross-platform network scanner designed to be fast and simple to use. It scans IP addresses and ports as well as has many other features.

It is widely used by network administrators and just curious users around the world, including large and small enterprises, banks, and government agencies.

It runs on Linux, Windows, and Mac OS X, possibly supporting other platforms as well.

There are currently two different versions available:

  • New cross-platform version, 3.x – still in beta
  • Old Windows-only version, 2.x – stable and widely used

It can scan IP addresses in any range as well as any their ports. It is cross-platform and lightweight. Not requiring any installations, it can be freely copied and used anywhere.

It can scan IPs in any range, even 1.1.1.1 to 255.255.255.255. Its binary file size is very small compared to other IP scanners. Angry IP scanner simply pings each IP address to check if it’s alive, then optionally it is resolving hostname and tries to connect at specified in Options dialog box TCP port.
It also has additional features, like NetBIOS information (computer name, workgroup name, currently logged in user and MAC address), results saving to CSV or TXT file, can be used as a command-line utility in a batch file, etc.

Pros: TINY program. Easy to use interface. No installation required. Freeware. Does any more need be said?

Cons: Till Date none :)

Overall: Its a swissknife as compared to others,small,free and deadly.Its an very highly recommended for network admins and apprentice hackers and computer nerds. get it,and get it fast

download from here