nerdexam
EC-Council

312-50V11 · Question #748

While scanning with Nmap, Patin found several hosts which have the IP ID of incremental kiosk.adobe.com is the host with incremental IP ID sequence. What is the purpose of using "-sl" with Nmap?

The correct answer is C. Conduct IDLE scan. Nmap's -sI flag (likely written as '-sl' in the question but referring to -sI) performs an IDLE scan that exploits a zombie host's incremental IP ID sequence to stealthily probe a target.

Scanning Networks

Question

While scanning with Nmap, Patin found several hosts which have the IP ID of incremental kiosk.adobe.com is the host with incremental IP ID sequence. What is the purpose of using "-sl" with Nmap?

Options

  • AConduct stealth scan
  • BConduct ICMP scan
  • CConduct IDLE scan
  • DConduct silent scan

How the community answered

(30 responses)
  • A
    3% (1)
  • B
    10% (3)
  • C
    83% (25)
  • D
    3% (1)

Why each option

Nmap's -sI flag (likely written as '-sl' in the question but referring to -sI) performs an IDLE scan that exploits a zombie host's incremental IP ID sequence to stealthily probe a target.

AConduct stealth scan

Stealth scanning in Nmap refers to the SYN scan (-sS), which sends half-open TCP connections, and is a distinct technique from the IDLE scan invoked by -sI.

BConduct ICMP scan

ICMP-based host discovery in Nmap uses -sn or -PE flags, not -sI, which is exclusively reserved for the IDLE/zombie scan method.

CConduct IDLE scanCorrect

The -sI option in Nmap initiates an IDLE scan (also called a zombie scan), which works by sending spoofed packets through a third-party zombie host that has a predictable incremental IP ID sequence - such as kiosk.adobe.com in this scenario. By monitoring changes in the zombie's IP ID counter, the attacker can infer whether ports on the real target are open or closed without ever directly contacting the target, making attribution extremely difficult.

DConduct silent scan

'Silent scan' is not a recognized Nmap scan category; the -sI flag is specifically documented as the IDLE scan option in Nmap's official reference.

Concept tested: Nmap IDLE scan using zombie host IP ID sequence

Source: https://nmap.org/book/idlescan.html

Topics

#Nmap#idle scan#IP ID sequence#stealth scanning

Community Discussion

No community discussion yet for this question.

Full 312-50V11 Practice