A security analyst reviews a network packet capture taken from an internal segment connecting an administrative system to an embedded host management interface. The packet capture reveals the following HTTP request:
GET /api/v1/system/status?session_token=9f8e7d6c5b4a3210 HTTP/1.1
Host: 10.20.30.50:8080
User-Agent: EnterpriseAdminConsole/3.4
Accept: */*
A subsequent vulnerability assessment confirms that the embedded host management server lacks Transport Layer Security (TLS) support and processes cleartext HTTP requests. Which of the following represents the primary host and network vulnerability exposed in this scenario?
- Unencrypted transmission of sensitive session tokens combined with credential exposure in URI query parametersAnswer
- BImplicit reliance on perimeter network firewalls to protect internal segment communications without requiring transport security
- CCross-site scripting (XSS) vulnerability resulting from unsanitized database query parameters executed in the client browser
- DAbsence of perimeter-level stateless firewall rules to block inbound management port traffic at the external boundary
Answer
The primary vulnerability is the unencrypted transmission of sensitive session tokens over cleartext HTTP combined with credential exposure in URI query parameters.
The correct answer accurately identifies the root vulnerability shown in the packet capture: transmitting sensitive session tokens across an unencrypted transport layer (HTTP over TCP/8080) while simultaneously exposing those tokens inside the URI query string where they can be intercepted or logged.
Step-by-Step Solution
Key Concept
Host and Network Infrastructure Vulnerabilities - Cleartext Protocols and Insecure Data Transmission