nerdexam
EC-Council

312-50V13 · Question #270

Consider the following Nmap output: What command-line parameter could you use to determine the type and version number of the web server?

The correct answer is A. -sv. To determine the type and version of services running on open ports using Nmap, the -sv command-line parameter is used.

Submitted by lars.no· Mar 6, 2026Scanning Networks

Question

Consider the following Nmap output: What command-line parameter could you use to determine the type and version number of the web server?

Exhibit

312-50V13 question #270 exhibit

Options

  • A-sv
  • B-Pn
  • C-V
  • D-ss

How the community answered

(44 responses)
  • A
    86% (38)
  • B
    7% (3)
  • C
    5% (2)
  • D
    2% (1)

Why each option

To determine the type and version of services running on open ports using Nmap, the `-sv` command-line parameter is used.

A-svCorrect

The Nmap `-sv` (Service Version detection) command-line parameter instructs Nmap to attempt to determine the service running on open ports and its version number. This is crucial for identifying the specific type of web server (e.g., Apache, Nginx, IIS) and its version, which can then be cross-referenced with known vulnerabilities.

B-Pn

The `-Pn` (No ping) parameter skips the host discovery phase, treating all hosts as online, and is not used for service version detection.

C-V

The `-V` parameter (or `--version`) simply prints the Nmap version number and exits, it does not scan for service versions.

D-ss

The `-ss` parameter (or `-sS`) specifies a SYN scan (stealth scan), which is a port scanning technique but does not perform service version detection.

Concept tested: Nmap service version detection

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

Topics

#Nmap#port scanning#service version detection#reconnaissance tools

Community Discussion

No community discussion yet for this question.

Full 312-50V13 Practice