312-50V11 · Question #16
You are attempting to run an Nmap port scan on a web server. Which of the following commands would result in a scan of common ports with the least amount of noise in order to evade IDS?
The correct answer is C. nmap -sT -O -T0. Nmap timing template T0 (paranoid) sends packets extremely slowly, making it very difficult for IDS systems to correlate traffic into a recognizable scan pattern.
Question
You are attempting to run an Nmap port scan on a web server. Which of the following commands would result in a scan of common ports with the least amount of noise in order to evade IDS?
Options
- Anmap -A - Pn
- Bnmap -sP -p-65535-T5
- Cnmap -sT -O -T0
- Dnmap -A --host-timeout 99-T1
How the community answered
(28 responses)- A14% (4)
- B4% (1)
- C75% (21)
- D7% (2)
Why each option
Nmap timing template T0 (paranoid) sends packets extremely slowly, making it very difficult for IDS systems to correlate traffic into a recognizable scan pattern.
The -A flag enables aggressive scanning (OS detection, version detection, script scanning, and traceroute), generating a high volume of distinctive traffic that is easily flagged by IDS.
The -T5 (insane) timing template sends packets as fast as possible, and scanning all 65535 ports produces a massive, easily detectable traffic spike.
The -sT flag performs a full TCP connect scan and -O enables OS detection, but the critical factor is -T0 (paranoid timing), which introduces up to a 5-minute delay between probes. This extreme slowness prevents IDS signature correlation of packets into a recognizable scan, making it the stealthiest option among the choices provided.
The -A flag still enables aggressive multi-probe scanning features, and while -T1 (sneaky) slows timing, the diverse probe types generated by aggressive mode remain detectable.
Concept tested: Nmap timing templates for IDS evasion
Source: https://nmap.org/book/man-performance.html
Topics
Community Discussion
No community discussion yet for this question.