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.
Question
Options
- ABanner grabbing
- BSQL injection
- CWhois database query
- DCross-site scripting
How the community answered
(25 responses)- A72% (18)
- B4% (1)
- C8% (2)
- D16% (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.
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.
SQL injection involves inserting malicious SQL code into input fields to manipulate database queries, which is not what the `netcat` command and output demonstrate.
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.
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
Community Discussion
No community discussion yet for this question.