nerdexam
EC-Council

312-50V9 · Question #520

Study the log below and identify the scan type.

The correct answer is D. nmap -sO -T 192.168.1.10. The -sO flag triggers Snort's IP protocol scan, which probes each IP protocol number to determine which protocols (TCP, UDP, ICMP, IGMP, etc.) the target supports, producing a log pattern of varied protocol responses.

Scanning Networks

Question

Study the log below and identify the scan type.

Exhibit

312-50V9 question #520 exhibit

Options

  • Anmap -sR 192.168.1.10
  • Bnmap -sS 192.168.1.10
  • Cnmap -sV 192.168.1.10
  • Dnmap -sO -T 192.168.1.10

How the community answered

(38 responses)
  • A
    3% (1)
  • B
    13% (5)
  • C
    8% (3)
  • D
    76% (29)

Why each option

The -sO flag triggers Snort's IP protocol scan, which probes each IP protocol number to determine which protocols (TCP, UDP, ICMP, IGMP, etc.) the target supports, producing a log pattern of varied protocol responses.

Anmap -sR 192.168.1.10

nmap -sR performs an RPC scan to enumerate RPC services on open ports, which would generate port-specific RPC probes rather than multi-protocol entries.

Bnmap -sS 192.168.1.10

nmap -sS performs a TCP SYN stealth scan, which only interacts with TCP ports and would not produce log entries across varied IP protocol numbers.

Cnmap -sV 192.168.1.10

nmap -sV performs version detection against open TCP/UDP ports to identify running service versions, not a protocol-level sweep across all IP protocol numbers.

Dnmap -sO -T 192.168.1.10Correct

nmap -sO performs an IP protocol scan by iterating through all 256 IP protocol numbers and sending raw packets with each protocol field set; the target's ICMP 'protocol unreachable' or lack-of-response reveals which protocols are active. The -T flag sets the timing template for speed control. The resulting log shows entries across multiple protocol numbers rather than port-based responses, which distinguishes this scan type from TCP or UDP scans.

Concept tested: nmap IP protocol scan (-sO) identification

Source: https://nmap.org/book/scan-methods-ip-protocol-scan.html

Topics

#nmap -sO#IP protocol scan#scan log analysis#scan type identification

Community Discussion

No community discussion yet for this question.

Full 312-50V9 Practice