A company uses TLS (Transport Layer Security) to protect data transmitted between its web application and users' browsers. This control primarily addresses which security concern?
Opening subject page...
Loading your content
CPA Isc Quiz
Practice Assess Encryption And Data Protection Methods in CPA Isc with focused quiz questions that help you check what you know, review explanations, and build confidence with test-style prompts.
Question 1 / 20
0 of 20 answered
A company uses TLS (Transport Layer Security) to protect data transmitted between its web application and users' browsers. This control primarily addresses which security concern?
This quiz focuses on Assess Encryption And Data Protection Methods, giving you a quick way to practice the rules, question types, and explanations that matter most for CPA Isc.
Try each quiz question before looking at the correct answer. Use the explanations to review missed ideas, then come back to similar questions until the pattern feels familiar.
A company uses TLS (Transport Layer Security) to protect data transmitted between its web application and users' browsers. This control primarily addresses which security concern?
Explanation: TLS encrypts data as it travels across the network, protecting it from interception (eavesdropping) and modification (man-in-the-middle attacks) during transmission. Answer B is correct. TLS does not protect stored data (A), manage authentication (C), or secure application code (D).
Which of the following correctly describes the primary difference between encryption and hashing?
Explanation: Encryption transforms data in a reversible way using a key; decryption recovers the original. Hashing produces a fixed-length digest that cannot be reversed to recover the original data. Answer C is correct. Speed comparison (A) is not the defining difference. Hashing typically does not use a secret key (B). Both can apply to data at rest or in transit (D).
A company implements full-disk encryption on all employee laptops. This control primarily protects against which threat?
Explanation: Full-disk encryption protects data stored on the device from being read if the laptop is physically lost or stolen, since the data is unreadable without the encryption key. Answer C is correct. Full-disk encryption does not prevent malware (A), remote access attacks (B), or data interception in transit (D).
In asymmetric encryption, which key is used to encrypt data that only the intended recipient should be able to read?
Explanation: To send a confidential message, the sender encrypts it with the recipient's public key. Only the recipient, who holds the corresponding private key, can decrypt it. Answer B is correct. Encrypting with the private key (A, C) produces a digital signature (authentication), not confidentiality. Session keys (D) describe hybrid encryption, not pure asymmetric encryption.
Data loss prevention (DLP) tools are primarily designed to:
Explanation: DLP solutions inspect data in motion (email, web), at rest (stored files), and in use (clipboard, USB) to identify and block unauthorized transmission of sensitive data such as PII, financial data, or intellectual property. Answer A is correct. Encryption (B), authentication (C), and data recovery (D) are separate controls.
Which of the following represents a key management best practice?
Explanation: Key management best practice requires storing keys separately from encrypted data (compromising both together defeats encryption), rotating keys periodically to limit exposure, and controlling key access tightly. Answer B is correct. Storing keys with data (A) undermines encryption. Using one key everywhere (C) means a single compromise exposes all data. Broad key sharing (D) eliminates access control.
A Certificate Authority (CA) in a PKI system is responsible for:
Explanation: A CA is the trusted third party that issues digital certificates after verifying the identity of the applicant, and maintains certificate revocation lists (CRLs) for compromised or expired certificates. Answer D is correct. CAs do not generate symmetric keys (A), store private keys (B), or monitor network traffic (C).
Tokenization as a data protection technique differs from encryption in that:
Explanation: Tokenization substitutes a sensitive value with a random token stored in a separate secure vault; unlike encryption, there is no algorithm to reverse a token without accessing the vault. Answer B is correct. Tokenization is not mathematically stronger or weaker than encryption (A). It requires vault access to reverse (C). It applies to various data types (D).
Which of the following correctly describes a 'man-in-the-middle' attack and the encryption control that most directly prevents it?
Explanation: A MITM attack intercepts communications between parties. TLS with digital certificates prevents MITM by enabling each party to verify the other's identity, preventing an attacker from impersonating a legitimate endpoint. Answer A is correct. Malware (B) is an endpoint threat. Brute-force key guessing (C) is a separate attack. Key theft and revocation (D) are different scenarios.
Which of the following represents the most significant risk of using outdated or weak encryption algorithms (such as DES or RC4)?
Explanation: Weak encryption algorithms (DES, RC4) have known vulnerabilities or insufficient key lengths that modern computing power can exploit, making the encrypted data recoverable by attackers. Answer B is correct. Performance (A) is a secondary concern. Compatibility (C) may be an issue but is not the primary risk. Regulatory fines (D) may result but are a consequence of the security risk, not the risk itself.
Which of the following statements about asymmetric encryption is correct?
Explanation: Asymmetric encryption uses a key pair - public and private - where data encrypted with the public key can only be decrypted with the private key and vice versa. Answer B is correct. Asymmetric uses different keys, not the same key (A). It is significantly slower than symmetric (C). Key management is essential for asymmetric systems (D).
Which of the following hashing algorithms is considered cryptographically broken and should not be used for security-sensitive applications?
Explanation: MD5 has well-known collision vulnerabilities - it is computationally feasible to produce two different inputs with the same MD5 hash - making it cryptographically broken for security applications. Answer C is correct. SHA-256 (A), SHA-3 (B), and BLAKE2 (D) are current, secure hashing algorithms.
Which of the following best describes symmetric encryption?
Explanation: Symmetric encryption uses a single shared key for both encryption and decryption. It is fast but requires secure key exchange between parties. Answer D is correct. Answer A describes asymmetric encryption. Answer B describes hashing. Answer C also describes asymmetric encryption (public/private key pair).
An e-commerce company stores hashed credit card numbers in its database instead of actual card numbers. A security assessor determines that the hashes were generated without salting using MD5. Which of the following is the most significant security concern?
Explanation: MD5 is a broken algorithm, and without salting, attackers can use precomputed rainbow tables to reverse-lookup card numbers (limited digit sets are especially vulnerable). Answer D is correct. MD5 hashes are compact (A). Hashed tokens can still serve as references (B). MD5 collision vulnerabilities and rainbow tables make reversal feasible for structured data (C).
Which of the following scenarios requires 'encryption in transit' as the primary data protection control?
Explanation: Transmitting sensitive data over the internet requires encryption in transit to protect it from interception. TLS or similar protocols secure data moving between systems. Answer A is correct. Internal file storage (B), archived tapes (C), and internal database storage (D) all describe data at rest scenarios, not data in transit.
An organization's policy requires 'encryption at rest' for all databases containing personally identifiable information (PII). Which of the following best describes 'encryption at rest'?
Explanation: Encryption at rest protects data stored on physical or virtual storage media - databases, files, disks - ensuring it cannot be read without the decryption key, even if the media is accessed directly. Answer D is correct. Data in transit encryption (A) is separate. In-memory encryption (B) is a different concept. Backup tape encryption (C) is a subset but not the complete definition.
In public key infrastructure (PKI), a digital certificate primarily serves to:
Explanation: A digital certificate, issued by a Certificate Authority (CA), binds a public key to an identity, enabling relying parties to trust that the public key genuinely belongs to the stated entity. Answer A is correct. Private keys are not transmitted (B). Certificates do not store passwords (C). Symmetric key generation is a separate function (D).
A company's cloud storage provider offers 'client-side encryption.' What does this mean for data security?
Explanation: Client-side encryption means the customer encrypts data locally before uploading, retaining sole control of encryption keys so the cloud provider stores only ciphertext and cannot access the actual data. Answer C is correct. Provider-managed encryption (A) gives the provider key access. Transmission-only encryption (B) leaves stored data unprotected. Shared key management (D) is a different model.
A digital signature is created by:
Explanation: A digital signature is created by hashing the message content and encrypting the hash with the sender's private key. Recipients verify the signature by decrypting with the sender's public key and comparing the hash. Answer D is correct. Encrypting with the recipient's public key (A, B) provides confidentiality, not authentication. Symmetric keys (C) do not provide non-repudiation.
An organization stores employee passwords as salted hashes rather than in plaintext. The primary purpose of 'salting' is to:
Explanation: A salt is a unique random value added to each password before hashing, making identical passwords produce different hashes and rendering precomputed rainbow table attacks ineffective. Answer D is correct. Salting does not affect password length for users (A), involve symmetric encryption (B), or enable password recovery (C).