Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 459 Bytes

nmap.md

File metadata and controls

35 lines (24 loc) · 459 Bytes
title category layout tags updated weight intro
nmap
Linux
2017/sheet
2018-02-14
-10
nmap

nmap

{: .-three-column}

SYN scan (half-open scan)

sudo nmap -sS -v localhost  # -sS means SYN

specific ports

sudo nmap -sS -p 80,443 localhost
sudo nmap -sS -p- localhost

operating system

sudo nmap -nS -O localhost

scan network

sudo nmap -sS -O 192.168.1.0/24

UDP scan

sudo nmap -sU ...