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.
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)- A3% (1)
- B10% (3)
- C83% (25)
- D3% (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.
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.
ICMP-based host discovery in Nmap uses -sn or -PE flags, not -sI, which is exclusively reserved for the IDLE/zombie scan method.
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.
'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
Community Discussion
No community discussion yet for this question.