A security analyst conducts an internal vulnerability assessment on a Linux server host processing enterprise telemetry. During host inspection, the analyst extracts the following active socket states and service configuration snippet:
# netstat -tuln | grep 9099
tcp 0 0 0.0.0.0:9099 0.0.0.0:* LISTEN
# cat /etc/telemetry/agent.conf
[server]
bind_address = "0.0.0.0"
port = 9099
auth_enabled = false
The infrastructure team notes that access control was omitted locally because the host operates behind an enterprise boundary firewall filtering external traffic. However, all internal subnets can reach port 9099 without authentication. Which of the following vulnerabilities is demonstrated by this implementation?
- Over-reliance on perimeter-based network security controls without enforcing Zero Trust local authentication and least-privilege bindingCevap
- BExposure to client-side SQL injection attack vectors targeting the telemetry log formatting interface
- CMisclassification of a host detective logging control as a preventive intrusion prevention system
- DFailure to apply host-based antivirus definitions to remediate open transport layer ports