Difference between revisions of "Nmap"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Tags: Mobile web edit, Mobile edit
Line 27: Line 27:
 
==Basic port scanning==
 
==Basic port scanning==
 
*Scan common ports
 
*Scan common ports
::<code>nmap –F 192.168.0.1</code>
+
::<code>nmap -F 192.168.0.1</code>
  
 
*Scan all ports (1 – 65535)
 
*Scan all ports (1 – 65535)
::<code>nmap –p– 192.168.0.1</code>
+
::<code>nmap -p- 192.168.0.1</code>
  
 
*To scan using TCP connect
 
*To scan using TCP connect

Revision as of 07:53, 8 April 2020

Nmap (Network Mapper) is a security scanner that can be used to discover hosts and services on a computer or computer network. Includes at least nmap and nping binaries.

Installation

  • apt install nmap or snap install nmap


Basic nmap commands

  • Basic nmap host scan:
    • nmap -nP HOSTNAME_TO_SCAN
    • nmap -nP HOSTNAME_TO_SCAN -p 80,443
    • nmap HOSTNAME_TO_SCAN
  • Basic nmap network scan: nmap -sn 192.168.0.* (-sn - ping scan so No/disable port scan)
-sn: Ping scan so disable port scan
  • OS detection: nmap -O IP
  • -sP TODO
  • nmap -A IPAddress equivalent to nmap -sV -sC -O -traceroute IPaddress

Basic nping commands

nping is packet generation, response analysis and response time measurement available since 2011 and developed by nmap developers

  • "TCP ping":
    • nping -c 1 --tcp -p 80,433 google.com[1]
    • nping -c 3 --tcp -p 443 --flags syn google.com[2]
  • nping -H -tr 8.8.8.8 (-H Hide-sent do not display sent packets, -tr traceroute)

Basic port scanning

  • Scan common ports
nmap -F 192.168.0.1
  • Scan all ports (1 – 65535)
nmap -p- 192.168.0.1
  • To scan using TCP connect
nmap –sT 192.168.0.1
  • To perform the default SYN scan
nmap –sS 192.168.0.1
  • The nmap utility can be used to detect the operating system of a particular target
nmap –A 192.168.0.1

nmap -sV --version-intensity 5 xxxxxx.com -p 80

The -sV option lets us fetch the software versions, and by adding --version-intensity 5, we can get the maximum number of possible details about the remote running software.

By using the powerful NSE we can also try other scripts that will help us fetch remote banners easily:

nmap -sV --script=banner IP

Activities

Basic

  1. Use nping to execute a "tcp ping": Check TCP connectivity

Advanced

  1. Read nmap Changelog: https://nmap.org/changelog.html

See also

  • https://nmap.org/book/nping-man.html
  • https://www.aldeid.com/wiki/Nping
  • https://serverfault.com/a/608976
  • Advertising: