Question

Difficulty: MediumKey Security Concepts, Threats, Vulnerabilities, and Mitigations

An enterprise organization suffers a security incident where an unauthorized actor intercepts and alters router configuration files in transit across an unencrypted network link, causing network routing tables to become corrupted. The security team must implement controls to ensure that data cannot be modified in transit without detection. Which core principle of the CIA triad was violated during this attack, and which security mechanism directly mitigates this specific vulnerability?

  1. Integrity was violated; it is mitigated by implementing cryptographic message hashing and digital signatures.Answer
  2. B
    Confidentiality was violated; it is mitigated by applying traffic policing to buffer out-of-profile configuration packets.
  3. C
    Availability was violated; it is mitigated by adding explicit permit statements to prevent implicit deny ACL behavior.
  4. D
    Confidentiality was violated; it is mitigated by isolating management traffic onto Type 1 hypervisor virtual switches.

Answer

Integrity was violated; it is mitigated by implementing cryptographic message hashing and digital signatures.
The security incident involved the unauthorized modification of data in transit. In the CIA triad, protecting data against unauthorized alteration or tampering is the core requirement of Integrity. To mitigate this threat, cryptographic mechanisms such as message hashing (e.g., HMAC) and digital signatures are deployed to detect any payload tampering.

Step-by-Step Solution

1
Analyze the nature of the security incident described in the scenario.
The attacker intercepted and modified configuration files in transit, corrupting routing tables.
Identifying whether data was disclosed, modified, or rendered unavailable determines which CIA triad pillar was breached.
2
Map the incident characteristics to the CIA Triad (Confidentiality, Integrity, Availability).
Unauthorized modification of data in transit is a breach of Integrity.
Integrity guarantees that information is authentic and protected against unauthorized alteration or tampering.
3
Determine the appropriate security mitigation mechanism for preserving Integrity.
Cryptographic hashing algorithms (such as SHA-256) and digital signatures verify data authenticity and detect tampering.
Hashing produces a unique checksum that changes if even a single bit of data is altered during transmission.

Key Concept

CIA Triad Principles and Integrity Verification Mitigations
Rate this question