GSEC · Question #131
What is SSL primarily used to protect you against?
The correct answer is C. Third-patty sniffing. SSL primarily protects data in transit by encrypting the communication channel, making intercepted traffic unreadable to unauthorized third parties who might be sniffing the network.
Question
What is SSL primarily used to protect you against?
Options
- ASession modification
- BSQL injection
- CThird-patty sniffing
- DCross site scripting
How the community answered
(29 responses)- A3% (1)
- B14% (4)
- C72% (21)
- D10% (3)
Why each option
SSL primarily protects data in transit by encrypting the communication channel, making intercepted traffic unreadable to unauthorized third parties who might be sniffing the network.
While SSL's MAC-based integrity checks can detect some session tampering, prevention of session modification is a secondary feature - confidentiality against sniffing is the primary design goal.
SQL injection is a server-side input validation vulnerability that occurs within the application layer; SSL encrypts the transport channel but does nothing to sanitize or validate the data being transmitted.
SSL (Secure Sockets Layer) establishes an encrypted tunnel between client and server using asymmetric key exchange and symmetric encryption for the session, ensuring that even if a third party captures the network traffic they cannot read the plaintext content. This confidentiality protection is the core purpose of SSL and its successor TLS, directly countering passive eavesdropping and packet sniffing attacks. Application-layer threats require separate controls at the application or server level.
Cross-site scripting (XSS) is an application-layer attack involving injection of malicious scripts into web pages viewed by other users, which SSL does not prevent because the malicious content originates from the trusted server itself.
Concept tested: SSL/TLS purpose and confidentiality protection
Source: https://learn.microsoft.com/en-us/windows-server/security/tls/tls-ssl-schannel-ssp-overview
Topics
Community Discussion
No community discussion yet for this question.