Nmap: Difference between revisions

From /i/nsurgency W/i/ki
Jump to navigationJump to search
>Bashlulz
mNo edit summary
m Text replacement - "Image:" to "File:"
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Nmap is a [[port]] scanner. It identifies which services are running on a [[network]]ed computer. This is useful for discovering and identifying points of attack in potential targets. It's ability to scan entire networks is very useful when combined with [[Whois]] information about organizations you may be targeting.
[[File:Zenmap.png|320px|right]]


The [[GUI]] version of Nmap is called [[Zenmap]].
Nmap is a port scanner. It identifies which services are running on a networked computer. This is useful for discovering and identifying points of attack in potential targets. Its ability to scan entire networks is very useful when combined with Whois information about organizations you may be targeting.
 
The [[GUI]] version of Nmap is called Zenmap.


=Example commands=
=Example commands=
Basic usage (see which ports are open/filtered/closed):
Basic usage (see which ports are open/filtered/closed):
  nmap 192.168.1.150
  nmap 192.168.1.150
Line 20: Line 21:
  nmap -p T:21-25,80,443 192.168.1.150-254
  nmap -p T:21-25,80,443 192.168.1.150-254


=Download=
* [http://anonym.to/?http://nmap.org/dist/nmap-4.76-setup.exe Windows self-installer]
* [http://anonym.to/?http://nmap.org/dist/nmap-4.76.tar.bz2 Sauce code]


=More info=
=More info=

Latest revision as of 04:13, 9 December 2024

Nmap is a port scanner. It identifies which services are running on a networked computer. This is useful for discovering and identifying points of attack in potential targets. Its ability to scan entire networks is very useful when combined with Whois information about organizations you may be targeting.

The GUI version of Nmap is called Zenmap.

Example commands[edit]

Basic usage (see which ports are open/filtered/closed):

nmap 192.168.1.150

Identify services running on one computer:

nmap -sV 192.168.1.150

Identify services running on one computer, which does not respond to pings:

nmap -sV -PN 192.168.1.150

Check to see if specific ports are open on one computer:

nmap -p T:21-25,80,443 192.168.1.150

Check to see if specific ports are open on a range of computers:

nmap -p T:21-25,80,443 192.168.1.150-254

Download[edit]

More info[edit]