GSEC · Question #285
What advantage would an attacker have in attacking a web server using the SSL protocol?
The correct answer is D. The encrypted session makes It harder for an Intrusion Detection System to detect.. SSL/TLS encryption blinds network-based intrusion detection systems by hiding payload contents, giving attackers a stealth advantage when targeting web servers.
Question
What advantage would an attacker have in attacking a web server using the SSL protocol?
Options
- AThe web server trusts the client because they are using the same secret key.
- BThe attacker needs to generate just one encryption key for all his requests.
- CThe Client can cause the ssl web server to use a weak encryption algorithm.
- DThe encrypted session makes It harder for an Intrusion Detection System to detect.
How the community answered
(39 responses)- A8% (3)
- B5% (2)
- C15% (6)
- D72% (28)
Why each option
SSL/TLS encryption blinds network-based intrusion detection systems by hiding payload contents, giving attackers a stealth advantage when targeting web servers.
SSL does not cause the web server to trust the client based on a shared secret key - server trust is established via certificate validation, not mutual key equality.
SSL/TLS generates a unique session key per connection via the handshake, so an attacker cannot reuse a single key across all requests.
While downgrade attacks exist, the general use of SSL does not inherently allow a client to force the server into a weak cipher - that requires specific misconfiguration or a protocol-level attack like POODLE.
SSL/TLS encrypts the entire application-layer payload between client and server. Network-based IDS appliances cannot inspect encrypted traffic for attack signatures such as SQL injection strings or shellcode, effectively rendering signature-based detection blind to the malicious content being transmitted.
Concept tested: SSL/TLS evasion of network intrusion detection
Source: https://www.cisco.com/c/en/us/products/security/intrusion-prevention-system-ips/index.html
Topics
Community Discussion
No community discussion yet for this question.