SY0-501 · Question #263
Which of the following are MOST susceptible to birthday attacks?
The correct answer is A. Hashed passwords. Hashed passwords are most susceptible to birthday attacks because these attacks aim to find collisions in hash functions, which are fundamental to how passwords are securely stored.
Question
Which of the following are MOST susceptible to birthday attacks?
Options
- AHashed passwords
- BDigital certificates
- CEncryption passwords
- DOne time passwords
How the community answered
(44 responses)- A75% (33)
- B16% (7)
- C7% (3)
- D2% (1)
Why each option
Hashed passwords are most susceptible to birthday attacks because these attacks aim to find collisions in hash functions, which are fundamental to how passwords are securely stored.
Birthday attacks specifically exploit the probability of finding two different inputs that produce the same hash output (a collision), which is directly applicable to systems that store hashed passwords for authentication. If an attacker can find a collision, they can potentially bypass authentication without knowing the original password.
Digital certificates use hashes as part of their integrity and signing process, but the primary susceptibility of certificates isn't a direct birthday attack on the certificate itself to bypass authentication, but rather on forging signatures or exploiting weaknesses in the Certificate Authority (CA) trust model.
Encryption passwords are used to secure data with cryptographic algorithms, and while a hash might be derived from a password for key generation, the direct impact of a birthday attack targets the collision resistance of the hash function, not the encryption process itself.
One-time passwords rely on a shared secret and a time/counter value to generate unique, ephemeral tokens, and birthday attacks, which aim to find hash collisions, are not the primary threat model for compromising these systems.
Concept tested: Cryptographic birthday attack susceptibility
Source: https://learn.microsoft.com/en-us/windows/win32/secgloss/b-gly
Topics
Community Discussion
No community discussion yet for this question.