nerdexam
EC-Council

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.

Evading IDS, Firewalls, and Honeypots

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)
  • A
    14% (4)
  • B
    4% (1)
  • C
    75% (21)
  • D
    7% (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.

Anmap -A - Pn

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.

Bnmap -sP -p-65535-T5

The -T5 (insane) timing template sends packets as fast as possible, and scanning all 65535 ports produces a massive, easily detectable traffic spike.

Cnmap -sT -O -T0Correct

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.

Dnmap -A --host-timeout 99-T1

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

#Nmap#IDS evasion#timing templates#stealth scanning

Community Discussion

No community discussion yet for this question.

Full 312-50V11 Practice