An enterprise software vendor distributes signed firmware updates to industrial IoT controllers. A recent security audit reveals that while the vendor uses a 2048-bit RSA key for asymmetric signing, the update process relies on the SHA-1 hashing algorithm to compute message digests. Which of the following best describes the primary security risk created by using SHA-1 for digital signature generation?
- An adversary could forge a malicious firmware image that yields an identical digest, bypassing signature verification controls.Cevap
- BAn eavesdropper on the network can easily decrypt the underlying firmware binary because SHA-1 operates as a symmetric bulk encryption algorithm.
- CTarget IoT controllers will fail to validate signatures because SHA-1 digests cannot be processed during the Certificate Signing Request lifecycle.
- DNetwork firewalls will misclassify the signed software payload as active malware and block incoming transmission streams.
Cevap
An adversary could forge a malicious firmware image that yields an identical digest, bypassing signature verification controls.
The correct answer highlights the risk of cryptographic hash collisions. SHA-1 is computationally susceptible to collision attacks, meaning an attacker can craft a altered file that produces the exact same hash output as a legitimate file. When signed by the vendor's private key, the system accepts the malicious software as authentic.
Adım Adım Çözüm
Anahtar Kavram
Cryptographic Hash Collision Vulnerabilities