nerdexam
GIAC

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.

Defense in Depth and Protocols

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)
  • A
    3% (1)
  • B
    14% (4)
  • C
    72% (21)
  • D
    10% (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.

ASession modification

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.

BSQL injection

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.

CThird-patty sniffingCorrect

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.

DCross site scripting

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

#SSL#TLS#eavesdropping#encryption in transit

Community Discussion

No community discussion yet for this question.

Full GSEC Practice