nerdexam
EC-Council

312-50V13 · Question #380

A Security Engineer at a medium-sized accounting firm has been tasked with discovering how much information can be obtained from the firm's public facing web servers. The engineer decides to start…

The correct answer is A. Banner grabbing. The engineer's action of using netcat to connect to port 80 and capture server response headers, including identifying the server software, is known as banner grabbing.

Submitted by khalil_dz· Mar 6, 2026Footprinting and Reconnaissance

Question

A Security Engineer at a medium-sized accounting firm has been tasked with discovering how much information can be obtained from the firm's public facing web servers. The engineer decides to start by using netcat to port 80. The engineer receives this output: HTTP/1.1 200 OK Server: Microsoft­IIS/6 Expires: Tue, 17 Jan 2011 01:41:33 GMT Date: Mon, 16 Jan 2011 01:41:33 GMT Content­Type: text/html Accept­Ranges: bytes Last Modified: Wed, 28 Dec 2010 15:32:21 GMT ETag:"b0aac0542e25c31:89d" Content­Length: 7369 Which of the following is an example of what the engineer performed?

Options

  • ABanner grabbing
  • BSQL injection
  • CWhois database query
  • DCross-site scripting

How the community answered

(25 responses)
  • A
    72% (18)
  • B
    4% (1)
  • C
    8% (2)
  • D
    16% (4)

Why each option

The engineer's action of using `netcat` to connect to port 80 and capture server response headers, including identifying the server software, is known as banner grabbing.

ABanner grabbingCorrect

Banner grabbing is the technique of connecting to a network service (like an HTTP server on port 80) and observing the response, which often includes banners revealing the application name, version, and operating system. In this scenario, the `netcat` output explicitly shows "Server: Microsoft-IIS/6", which is a clear example of banner information.

BSQL injection

SQL injection involves inserting malicious SQL code into input fields to manipulate database queries, which is not what the `netcat` command and output demonstrate.

CWhois database query

A Whois database query is used to look up domain registration information, not to interact directly with a web server's HTTP service to get its banner.

DCross-site scripting

Cross-site scripting (XSS) involves injecting malicious scripts into web pages to be executed in other users' browsers, which is unrelated to directly querying a server banner via `netcat`.

Concept tested: Banner grabbing technique

Topics

#banner grabbing#Netcat#web server information disclosure#reconnaissance

Community Discussion

No community discussion yet for this question.

Full 312-50V13 Practice