nerdexam
EC-Council

312-50V10 · Question #216

Emil uses nmap to scan two hosts using this command: nmap -sS -T4 -O 192.168.99.1 192.168.99.7 He receives this output: What is his conclusion?

The correct answer is B. He performed a SYN scan and OS scan on hosts 192.168.99.1 and 192.168.99.7. The nmap command uses -sS for a TCP SYN scan and -O for OS fingerprinting on both target hosts, which is exactly what answer B describes.

Scanning Networks

Question

Emil uses nmap to scan two hosts using this command:

nmap -sS -T4 -O 192.168.99.1 192.168.99.7 He receives this output:

What is his conclusion?

Exhibit

312-50V10 question #216 exhibit

Options

  • AHost 192.168.99.7 is an iPad.
  • BHe performed a SYN scan and OS scan on hosts 192.168.99.1 and 192.168.99.7
  • CHost 192.168.99.1 is the host that he launched the scan from.
  • DHost 192.168.99.7 is down.

How the community answered

(22 responses)
  • A
    9% (2)
  • B
    82% (18)
  • C
    5% (1)
  • D
    5% (1)

Why each option

The nmap command uses -sS for a TCP SYN scan and -O for OS fingerprinting on both target hosts, which is exactly what answer B describes.

AHost 192.168.99.7 is an iPad.

OS detection in nmap relies on probabilistic TCP/IP stack fingerprinting and cannot definitively identify a device as an iPad without corroborating evidence from the actual output.

BHe performed a SYN scan and OS scan on hosts 192.168.99.1 and 192.168.99.7Correct

The -sS flag instructs nmap to perform a TCP SYN (half-open) scan by sending SYN packets and analyzing responses without completing the three-way handshake. The -O flag enables OS fingerprinting on both 192.168.99.1 and 192.168.99.7, while -T4 sets an aggressive timing template. These flags together confirm that a SYN scan and OS detection scan were performed on both listed hosts.

CHost 192.168.99.1 is the host that he launched the scan from.

The source IP of the scanning host cannot be determined from the command syntax alone, and nmap does not mark the scanning host differently in its output by default.

DHost 192.168.99.7 is down.

Nothing in the command indicates host 192.168.99.7 is down; both hosts are explicitly listed as scan targets, and a down state would need to be confirmed from the actual output.

Concept tested: Nmap SYN scan and OS detection command flags

Source: https://nmap.org/book/man-os-detection.html

Topics

#nmap#SYN scan#OS fingerprinting#scan output analysis

Community Discussion

No community discussion yet for this question.

Full 312-50V10 Practice