312-50V9 · Question #238
Which of the following is considered the best way to protect Personally Identifiable Information (PII) from Web application vulnerabilities?
The correct answer is B. Use encrypted communications protocols to transmit PII. Encrypting PII in transit using secure communication protocols such as TLS/HTTPS is the primary and most direct control against web application vulnerabilities that expose data during transmission.
Question
Which of the following is considered the best way to protect Personally Identifiable Information (PII) from Web application vulnerabilities?
Options
- AUse cryptographic storage to store all PII
- BUse encrypted communications protocols to transmit PII
- CUse full disk encryption on all hard drives to protect PII
- DUse a security token to log into all Web applications that use PII
How the community answered
(45 responses)- A9% (4)
- B84% (38)
- C4% (2)
- D2% (1)
Why each option
Encrypting PII in transit using secure communication protocols such as TLS/HTTPS is the primary and most direct control against web application vulnerabilities that expose data during transmission.
Cryptographic storage protects PII at rest inside databases or file systems, but does not address the exposure of that data while it is actively transmitted over the network through a web application.
Encrypted communications protocols like TLS/HTTPS protect PII as it travels between the client and server, preventing interception through attacks such as man-in-the-middle and passive eavesdropping - risks directly associated with web application vulnerabilities. OWASP identifies insecure data transmission as a core risk under Sensitive Data Exposure, and enforcing HTTPS is the foundational baseline control for protecting PII in any web application.
Full disk encryption protects data stored on physical media from unauthorized physical access, but provides no protection against PII exposed during network transmission or web application processing.
Security tokens strengthen authentication and reduce unauthorized login risk, but they do not prevent PII from being exposed through transmission-layer vulnerabilities once a session is established.
Concept tested: Protecting PII via encrypted web communications TLS/HTTPS
Source: https://owasp.org/www-project-top-ten/
Topics
Community Discussion
No community discussion yet for this question.