Skip to content
PherricOxide edited this page Feb 17, 2012 · 2 revisions

Quick scan plus

nmap -sV -T4 -O -F --version-light $1
ifconfig eth0 192.168.3.200 netmask 255.255.255.0

# TCP scan
nmap -oX tcpScan.xml -T4 -sS -p0-65535 $1
ifconfig eth0 192.168.3.201 netmask 255.255.255.0

# UDP scan
nmap -oX udpScan.xml -T4 -sU -p0-65535 $1
ifconfig eth0 192.168.3.202 netmask 255.255.255.0

# TCP FIN scan
nmap -oX finScan.xml -T4 -sF -p0-65535 $1
ifconfig eth0 192.168.3.203 netmask 255.255.255.0

# TCP ACK scan
nmap -oX ackScan.xml -T4 -sA -p0-65535 $1
ifconfig eth0 192.168.3.204 netmask 255.255.255.0

# IP protocol scan
nmap -oX ipScan.xml -T4 -sO -p0-255 $1
ifconfig eth0 192.168.3.205 netmask 255.255.255.0


# Painfully slow scan... 5 mins per probe, IDS evation mode
nmap -oX t0Scan.xml -T0 -sS --top-ports 10 $1
ifconfig eth0 192.168.3.206 netmask 255.255.255.0


# Somewhat less painfully slow IDS evasion mode
nmap -oX t1Scan.xml -T1 -sS --top-ports 100 $1
ifconfig eth0 192.168.3.207 netmask 255.255.255.0


# .4 second between probes
nmap -oX t2Scan.xml -T2 -sS $1
ifconfig eth0 192.168.3.208 netmask 255.255.255.0