A security engineer auditing an enterprise cloud microservices environment identifies two specific architectural design choices: internal microservice-to-microservice traffic relies solely on network IP address allowlists without identity verification, and database backup files are encrypted using AES operating in Electronic Codebook (ECB) mode. Which of the following statements correctly describe the cryptographic and security control weaknesses present in this environment? (Select TWO.)
- Electronic Codebook (ECB) mode encrypts identical plaintext blocks into identical ciphertext blocks, preserving structural data patterns in the encrypted output.Cevap
- Exclusive reliance on IP address allowlists relies on perimeter network location rather than cryptographic identity, violating Zero Trust continuous verification principles.Cevap
- CElectronic Codebook (ECB) mode relies on asymmetric public key pairs for block encryption, creating significant key management overhead for bulk database backups.
- DIP address allowlisting functions as a corrective control that automates Certificate Signing Request (CSR) validation across public key infrastructure.
Cevap
The weaknesses are that Electronic Codebook (ECB) mode reveals structural data patterns because identical plaintext blocks produce identical ciphertext blocks, and exclusive reliance on IP allowlists creates an outdated perimeter trust model that violates Zero Trust architecture principles.
The correct statements correctly identify the core weaknesses of ECB mode and implicit network trust. ECB mode encrypts identical plaintext blocks into identical ciphertext blocks because it lacks initialization vectors or chaining mechanism, exposing patterns in stored database files. Furthermore, relying solely on IP allowlists creates an implicit perimeter trust model, failing to enforce Zero Trust principles such as mutual TLS (mTLS) authentication and continuous verification.
Adım Adım Çözüm
Anahtar Kavram
Cryptographic Block Cipher Modes and Zero Trust Access Control Weaknesses