Key Security Concepts, Threats, Vulnerabilities, and Mitigations

35 questions

Question 1Question

An infrastructure analyst is performing a security review of an enterprise management network. The organization requires per-command authorization for administrative CLI access on routers and switches, along with full packet payload encryption between network devices and the central AAA server. Which security protocol satisfies these requirements?

Show answer & explanation

Answer: TACACS+, because it encrypts the entire packet payload and separates authentication, authorization, and accounting functions.

Answer

TACACS+, because it encrypts the entire packet payload and separates authentication, authorization, and accounting functions.
TACACS+ operates over TCP port 49 and separates the authentication, authorization, and accounting (AAA) functions. This modular separation permits granular authorization checks for every individual administrative command entered on a network device. Furthermore, TACACS+ encrypts the full body of every packet after the standard header, meeting the requirement for complete payload confidentiality.

Step-by-Step Solution

1
Analyze requirement 1: Full payload encryption.
TACACS+ encrypts the entire packet payload after the header, whereas RADIUS only encrypts the password attribute.
Security requirement demands full payload protection during network transmission.
2
Analyze requirement 2: Per-command authorization.
TACACS+ decouples authentication, authorization, and accounting, allowing every CLI command to be individually authorized by the TACACS+ server.
RADIUS binds authentication and authorization together, which prevents per-command authorization.
3
Select protocol matching both conditions.
TACACS+ meets both full payload encryption and granular per-command authorization criteria.
Only TACACS+ satisfies all architectural constraints.

Key Concept

TACACS+ vs RADIUS Protocol Characteristics and AAA Separation
Question 2Question

A network security architect is reviewing the organization's defense-in-depth posture following a risk assessment. Match each enterprise security threat scenario on the left with its most appropriate primary mitigation control on the right.

Click a left item, then click its matching right item

Items

An external attacker sends high volumes of UDP traffic with forged source IP addresses to exposed NTP servers to overwhelm enterprise edge routers.
An attacker sets up a proxy server mimicking a legitimate login portal to capture session cookies and bypass standard SMS-based two-factor authentication.
A malicious insider connects an unauthorized laptop to a dynamic switch port and floods the switch with generated MAC addresses to capture unencrypted traffic.
An automated botnet attempts a low-and-slow execution of common passwords against hundreds of user accounts to evade traditional lockout rules.

Matches

Show answer & explanation

Answer

NTP UDP amplification pairs with Control Plane Policing and NTP query restrictions; Adversary-in-the-Middle phishing pairs with FIDO2/WebAuthn domain-bound hardware key authentication; CAM table MAC flooding pairs with Port Security MAC limits; Password spraying across multiple accounts pairs with risk-based smart lockout policies.
Each security threat scenario directly maps to its precise technological defense: NTP amplification relies on CoPP and NTP service hardening; AiTM phishing proxies require FIDO2 domain binding; switch CAM flooding requires Port Security limits; and password spraying requires tenant-wide risk-based lockout controls.

Step-by-Step Solution

1
Analyze threat scenario 1 (NTP UDP traffic with spoofed IPs).
Identified as a Distributed Denial of Service (DDoS) reflection/amplification attack targeting network control planes.
Control Plane Policing (CoPP) rate-limits incoming control plane traffic and restricting open NTP query access prevents amplification.
2
Analyze threat scenario 2 (Proxy capturing session cookies and SMS 2FA).
Identified as an Adversary-in-the-Middle (AiTM) phishing attack targeting authentication mechanisms.
Phishing-resistant authentication protocols such as FIDO2/WebAuthn use origin-bound public key cryptography that fails if the domain name in the browser does not match.
3
Analyze threat scenario 3 (Flooding dynamic switch ports with generated MAC addresses).
Identified as a Layer 2 CAM table overflow/MAC flooding attack.
Port Security enforces maximum MAC address limits per access port, preventing switch CAM table exhaustion and fail-open behaviors.
4
Analyze threat scenario 4 (Low-and-slow execution of common passwords across many accounts).
Identified as a password spraying attack.
Traditional account lockout triggers per-user failure limits; smart/risk-based lockout policies evaluate tenant-wide password attempt patterns to block spraying.

Key Concept

Key Security Concepts, Threats, Vulnerabilities, and Mitigations
Question 3Question

An enterprise security audit reveals two critical vulnerabilities in a campus network infrastructure: administrative command entries sent to network switches during remote management sessions are logged in cleartext without granular per-command authorization, and unauthorized rogue devices plugged into active wall jacks in common areas gain immediate access to internal network segments. Which two security mitigations directly resolve these specific vulnerabilities? (Select two.)

Select all that apply

Show answer & explanation

Answer: Implementing TACACS+ for network device administration to mandate command-by-command authorization and encrypt the full packet payload.; Configuring Port Security on access switch ports to restrict link connectivity to authorized MAC addresses.

Answer

Implementing TACACS+ for network device administration and configuring Port Security on access switch ports directly resolve the administrative cleartext/authorization gap and unauthorized physical access vulnerabilities.
The correct mitigations are implementing TACACS+ for device administration and configuring Port Security on access switch ports. TACACS+ operates over TCP port 49, encrypts the complete packet body, and permits granular authorization of individual administrative CLI commands. Port Security secures Layer 2 physical access ports by permitting only specified MAC addresses, effectively blocking rogue devices plugged into physical wall jacks.

Step-by-Step Solution

1
Analyze the first identified vulnerability regarding switch administrative command security.
The requirement demands full packet encryption and per-command authorization for network administration.
TACACS+ uses TCP port 49, encrypts the entire packet payload, and allows administrators to control exactly which CLI commands individual users can execute.
2
Analyze the second identified vulnerability regarding rogue physical connections in common areas.
The requirement demands Layer 2 ingress filtering on access ports.
Port Security restricts interface traffic to dynamically learned or statically defined MAC addresses, dropping traffic or shutting down the port when an unauthorized device plugs in.
3
Evaluate why RADIUS and Standard ACLs fail as correct solutions.
RADIUS lacks full payload encryption and per-command authorization, while standard ACLs on access ports trigger implicit deny behavior for non-management host traffic.
Correct mitigations must address the specific root vulnerabilities without causing protocol mismatches or dropping legitimate network traffic.

Key Concept

AAA Framework Differences and Layer 2 Access Control Mitigations
Question 4Question

An administrator configures port security on an enterprise access switch interface using the switchport port-security mac-address sticky command to restrict network access to authorized devices. Endpoints connect successfully and their hardware addresses are added to the active configuration as sticky entries. Following an unexpected power maintenance event, the switch reboots. When the authorized endpoints attempt to reconnect, port security violation alerts are triggered and traffic is blocked. Which administrative oversight caused this issue after the switch rebooted?

Show answer & explanation

Answer: The administrator failed to save the running configuration to the startup configuration after the sticky MAC addresses were learned.

Answer

The administrator failed to copy the running configuration containing the learned sticky MAC addresses to the startup configuration prior to the reboot.
The command switchport port-security mac-address sticky dynamically learns connected MAC addresses and converts them into sticky secure MAC address entries in the running configuration (stored in volatile RAM). If the administrator does not save the running configuration to the startup configuration (stored in NVRAM) using copy running-config startup-config or write memory, all learned MAC addresses are lost upon reboot. When the switch comes back online, its sticky MAC table is empty, causing returning authorized devices to be flagged as unknown/unauthorized and triggering security violations.

Step-by-Step Solution

1
Analyze how sticky MAC address learning operates in Cisco IOS port security.
When sticky MAC learning is enabled, dynamically learned MAC addresses are automatically added to the running configuration (RAM).
Sticky MAC entries allow dynamic learning without requiring manual static MAC entry CLI typing.
2
Evaluate the effect of a device reboot on RAM vs. NVRAM.
Unsaved changes stored only in RAM (running configuration) are erased when the switch reboots.
Only startup configuration stored in NVRAM persists across switch reboots.
3
Determine why violations occurred post-reboot.
Because the sticky MAC entries were erased during the reboot, reconnecting devices were treated as unauthorized MAC addresses, triggering port security violations.
Saving the configuration with copy running-config startup-config is mandatory to persist sticky MAC entries across reboots.

Key Concept

Port Security Sticky MAC Address Persistence
Question 5Question

An enterprise network security team is establishing formal terminology for a security awareness program. Match each fundamental security concept on the left to its corresponding description on the right.

Click a left item, then click its matching right item

Items

Vulnerability
Threat
Risk
Exploit

Matches

Show answer & explanation

Answer

Vulnerability matches with 'A flaw or weakness in system design, configuration, or software code that leaves an asset exposed.'; Threat matches with 'Any potential circumstance, event, or malicious actor with the capability to cause harm or disrupt operations.'; Risk matches with 'The operational or financial impact resulting from the probability that a specific weakness will be targeted.'; Exploit matches with 'A specific payload, script, or procedure crafted to leverage a system weakness to gain unauthorized access.'
Vulnerability describes internal weaknesses in design or code. Threat identifies potential external forces or malicious actors that cause harm. Risk quantifies the financial or operational impact of a threat targeting a vulnerability. Exploit defines the specific payload or script used to attack a flaw.

Step-by-Step Solution

1
Identify internal system weaknesses
Map Vulnerability to the description of system flaws, configuration errors, or software bugs.
Vulnerabilities reside within the target infrastructure regardless of whether an active attack occurs.
2
Identify potential external or environmental hazards
Map Threat to potential circumstances or actors capable of causing disruption or harm.
Threats represent potential sources of danger, such as malware, hackers, or natural disasters.
3
Analyze probability and potential consequences
Map Risk to the calculated likelihood and organizational impact of a security incident.
Risk evaluates the intersection where an active threat capability targets an existing vulnerability.
4
Identify attack weaponization tools
Map Exploit to software payloads or procedures designed to take advantage of system weaknesses.
An exploit is the specific code or sequence of commands used by an adversary to abuse a flaw.

Key Concept

Key Security Concepts, Threats, Vulnerabilities, and Mitigations
Question 6Question

A network engineering team is updating management access policies to reduce vulnerabilities associated with credential sniffing, brute-force access attempts, and unauthenticated administrative sessions across enterprise devices. Which two security controls directly mitigate these specific vulnerabilities and threats? (Select two.)

Select all that apply

Show answer & explanation

Answer: Enforcing Secure Shell (SSH) for device management to encrypt access credentials and session data in transit; Implementing Multi-Factor Authentication (MFA) for administrative access to prevent unauthorized logins from compromised passwords

Answer

Enforcing SSH for device management and implementing Multi-Factor Authentication (MFA) for administrative access directly mitigate packet sniffing and credential-based unauthorized access.
Enforcing SSH encrypts administrative network traffic to prevent eavesdropping and credential theft in transit. Implementing Multi-Factor Authentication (MFA) adds a critical layer of defense ensuring that compromised administrative passwords alone cannot grant access to network devices.

Step-by-Step Solution

1
Identify the threat vectors described in the scenario
The identified threat vectors are credential sniffing (packet eavesdropping), unauthorized access, and brute-force/compromised password usage.
Security controls must specifically target the operational mechanisms of the identified threats and vulnerabilities.
2
Evaluate the control that addresses packet sniffing of administrative sessions
SSH provides encrypted transport for remote management traffic, ensuring passwords and commands cannot be read in cleartext over the network.
Cleartext protocols like Telnet leave management sessions vulnerable to active and passive eavesdropping.
3
Evaluate the control that addresses weak or compromised administrative passwords
Multi-Factor Authentication requires a second independent credential factor (such as a time-based token or push notification), stopping attackers who obtain static passwords.
Password complexity alone is vulnerable to phishing and brute-force attacks without multi-factor verification.

Key Concept

Key Security Threats, Vulnerabilities, and Mitigations
Question 7Question

An enterprise security analyst is categorizing security audit findings and incident events into core cybersecurity governance definitions. Match each operational scenario on the left with its corresponding fundamental security concept on the right.

Click a left item, then click its matching right item

Items

An unpatched software bug in a border router's operating system that permits unauthorized privilege escalation.
A specialized script executed by an adversary to take advantage of a known memory overflow flaw.
A malicious actor currently attempting to perform man-in-the-middle packet interception on an unencrypted wireless link.
The potential financial loss and operational disruption resulting from a compromised customer database.

Matches

Show answer & explanation

Answer

1. Unpatched software bug matches Vulnerability. 2. Specialized script leveraging a flaw matches Exploit. 3. Malicious actor conducting packet interception matches Threat. 4. Potential financial loss and disruption matches Risk.
Each scenario maps directly to its core definition in information security governance: software flaws are vulnerabilities; malicious tools weaponizing flaws are exploits; active malicious actors/actions are threats; and the combined evaluation of potential impact and likelihood is risk.

Step-by-Step Solution

1
Identify system weaknesses
Recognize that software bugs or improper configurations inherent to systems are vulnerabilities.
A vulnerability is a weakness in software, hardware, or procedural control.
2
Identify tools leveraging weaknesses
Recognize that software code or scripts designed to weaponize a weakness are exploits.
An exploit is the mechanism or payload used to target a specific vulnerability.
3
Identify threat actors and actions
Recognize that adversaries performing attacks represent threats.
A threat is any potential entity or event capable of exploiting a weakness to cause damage.
4
Evaluate overall organizational impact
Recognize that calculating potential harm and probability defines risk.
Risk represents the probability and business impact of a threat successfully executing an exploit against a vulnerability.

Key Concept

Fundamental Security Concepts: Threat, Vulnerability, Exploit, and Risk
Question 8Question

Match each core network security term on the left with its corresponding enterprise security description on the right.

Click a left item, then click its matching right item

Items

Vulnerability
Threat
Exploit
Risk

Matches

Show answer & explanation

Answer

Vulnerability pairs with the unpatched operating system bug; Threat pairs with the malicious external actor; Exploit pairs with the crafted software script taking advantage of a flaw; Risk pairs with the likelihood and impact of an intrusion.
Vulnerability refers to a system flaw such as an unpatched OS bug. Threat describes the danger agent such as a malicious actor. Exploit is the actual method or script used to weaponize the flaw. Risk measures the calculated financial or operational impact resulting from a threat leveraging a vulnerability.

Step-by-Step Solution

1
Review the formal definitions of key security terminology.
Differentiate between systemic weaknesses (vulnerability), external dangers (threat), attack tools (exploit), and calculated impact (risk).
CCNA security fundamentals require distinguishing between internal weaknesses, external danger vectors, attack implementations, and business exposure.
2
Match each term to the enterprise scenario.
Pair Vulnerability to the OS bug, Threat to the attacker, Exploit to the attack script, and Risk to the impact assessment.
Each scenario illustrates a distinct element of the risk and threat landscape.

Key Concept

Key Security Concepts: Threat, Vulnerability, Exploit, and Risk
Estimated Time:1m 0s
Question 9Question

A network engineer configures port security on a Cisco Catalyst switch interface using the command `switchport port-security mac-address sticky`. The switch successfully learns the MAC address of the connected host and dynamically adds it to the running configuration. However, after the switch is rebooted, the port security configuration no longer retains the previously learned host MAC address. Which administrative oversight caused this issue?

Show answer & explanation

Answer: The engineer did not save the running configuration to the startup configuration after the MAC address was learned.

Answer

The host MAC address was lost because the running configuration containing the learned sticky MAC address was not saved to the startup configuration prior to the switch reboot.
When port security is configured with sticky MAC learning, the switch dynamically converts learned MAC addresses into static-like entries within the running configuration (`running-config`). Because the running configuration resides in volatile RAM, any switch reboot causes these learned entries to be cleared unless an administrator explicitly copies the running configuration to the startup configuration in NVRAM using `copy running-config startup-config` or `write memory`.

Step-by-Step Solution

1
Analyze how sticky MAC learning functions in Cisco Port Security.
Executing `switchport port-security mac-address sticky` instructs the switch to dynamically learn MAC addresses and write them into the volatile running configuration as `switchport port-security mac-address sticky <mac-address>` commands.
Understanding where learned MAC addresses are stored in switch memory helps identify persistence requirements.
2
Determine why volatile memory changes do not survive a switch reboot.
The running configuration is stored in RAM. Without running `copy running-config startup-config` or `write memory`, all RAM contents are lost when the device reboots.
RAM contents must be committed to non-volatile RAM (NVRAM) for settings to persist across reboots.

Key Concept

Port Security Sticky MAC Address Persistence and NVRAM Configuration Management
Estimated Time:45s
Question 10Question

An enterprise network administrator discovers that an unauthorized host on an internal VLAN is performing a Man-in-the-Middle (MitM) attack by broadcasting spoofed ARP messages, associating its own MAC address with the IP address of the default gateway. Which Layer 2 security mechanism should be implemented on the access switches to mitigate this specific threat?

Show answer & explanation

Answer: Dynamic ARP Inspection (DAI) to validate ARP requests and responses against the trusted DHCP snooping binding database.

Answer

Dynamic ARP Inspection (DAI) should be configured on access switches to validate ARP packets against the DHCP snooping binding database.
Dynamic ARP Inspection (DAI) is the primary mitigation technique against ARP poisoning and ARP spoofing attacks. DAI intercepts all ARP requests and responses on untrusted switch ports and verifies the validity of the IP-to-MAC bindings against the trusted DHCP snooping binding database before forwarding the packet.

Step-by-Step Solution

1
Identify the type of attack described in the scenario.
The attack described is ARP spoofing/poisoning, where an attacker sends fake ARP messages to intercept network traffic.
Understanding the attack mechanism (Layer 2 address resolution manipulation) is necessary to choose the appropriate mitigation tool.
2
Evaluate security mechanisms designed to inspect and protect Layer 2 ARP traffic.
Dynamic ARP Inspection (DAI) is specifically designed to prevent ARP poisoning by comparing ARP IP-to-MAC mapping claims against a reliable binding source (DHCP Snooping database).
DAI intercepts ARP packets on untrusted ports and drops invalid ARP responses.

Key Concept

Mitigating Layer 2 ARP Spoofing Attacks using Dynamic ARP Inspection (DAI)
Estimated Time:1m 30s
Question 11Question

An attacker on a local Ethernet network sends spoofed ARP messages to associate their MAC address with the IP address of the default gateway, allowing them to secretly intercept and relay network traffic between a victim host and the router. Which type of security threat is being executed?

Show answer & explanation

Answer: Man-in-the-middle (MitM) attack

Answer

Man-in-the-middle (MitM) attack
A Man-in-the-middle (MitM) attack occurs when an unauthorized entity places itself between two communicating network endpoints. ARP spoofing on a local Ethernet segment is a primary technique used to execute a MitM attack at Layer 2.

Step-by-Step Solution

1
Analyze the attack mechanism described in the scenario.
The attacker sends spoofed ARP responses mapping their MAC address to the default gateway's IP address.
This causes local endpoints to update their ARP tables and send frames intended for the router to the attacker's device instead.
2
Classify the security threat based on the attacker's operational position and capability.
The attacker can read, alter, or drop packets passing between the victim host and the default gateway without either party realizing.
Interception and relaying of communication between two unaware parties is defined as a Man-in-the-middle (MitM) attack.

Key Concept

Man-in-the-Middle (MitM) Threats and ARP Spoofing
Estimated Time:45s
Question 12Question

Match each enterprise network security threat on the left with its corresponding operational description or attack vector characteristic on the right.

Click a left item, then click its matching right item

Items

Distributed Denial of Service (DDoS)
Man-in-the-Middle (MitM)
Spear Phishing
Zero-Day Exploit

Matches

Show answer & explanation

Answer

Distributed Denial of Service (DDoS) matches flooding resources from multiple distributed endpoints; Man-in-the-Middle (MitM) matches intercepting traffic in the active communication path; Spear Phishing matches targeted social engineering targeting specific individuals; Zero-Day Exploit matches attacking an undisclosed vulnerability before a patch exists.
Each security threat term is accurately mapped to its primary attack vector and operational impact within enterprise network environments.

Step-by-Step Solution

1
Analyze Distributed Denial of Service (DDoS)
Identified as a multi-source resource exhaustion attack targeting availability.
DDoS specifically leverages multiple distributed hosts to saturate network bandwidth or host processing capacity.
2
Analyze Man-in-the-Middle (MitM)
Identified as an active path insertion and packet interception attack.
MitM relies on tricking two endpoints into routing data through an adversary's host to eavesdrop or modify traffic.
3
Analyze Spear Phishing
Identified as a tailored social engineering vector.
Spear phishing differs from generic mass phishing by customizing content to deceive specific targeted individuals or organizations.
4
Analyze Zero-Day Exploit
Identified as an attack on unpatched, publicly unknown code vulnerabilities.
Zero-day refers to software flaws exploited prior to patch availability or public security advisory release.

Key Concept

Key Security Concepts, Threats, Vulnerabilities, and Mitigations
Question 13Question

Match each enterprise security threat scenario on the left with its most effective primary mitigation strategy on the right.

Click a left item, then click its matching right item

Items

Password Spray Attack attempting low-frequency authentication across hundreds of corporate accounts
Man-in-the-Middle (MitM) eavesdropping on unencrypted transit traffic across an untrusted network segment
Spear Phishing campaign directing executive targets to a spoofed login portal
Zero-Day software vulnerability targeting an unpatched network management daemon

Matches

Show answer & explanation

Answer

Password Spray Attack matches Multi-Factor Authentication (MFA) and smart lockout policies. Man-in-the-Middle eavesdropping matches end-to-end cryptographic transport protocols (TLS/IPsec). Spear Phishing matches email authentication standards (SPF/DKIM/DMARC) and user training. Zero-Day software vulnerability matches vendor micro-segmentation, IPS signatures, and rapid patching.
Each threat targets a specific layer or operational vulnerability, requiring an aligned mitigation control: Password Spraying is countered by Multi-Factor Authentication; Man-in-the-Middle transit interception is countered by TLS/IPsec encryption; Spear Phishing is countered by SPF/DKIM/DMARC and security awareness; and Zero-Day software flaws are countered by IPS signatures, network segmentation, and prompt patching.

Step-by-Step Solution

1
Analyze the Password Spray threat vector.
Identify that password spraying avoids single-account lockout by trying one password against many accounts.
MFA is the primary defense because even if a password matches, login fails without the second factor.
2
Analyze the Man-in-the-Middle (MitM) threat vector.
Identify that MitM exploits cleartext communication channels.
Cryptographic transport protocols like TLS and IPsec encrypt payload data and verify server identity via certificates.
3
Analyze the Spear Phishing threat vector.
Identify that spear phishing uses targeted fraudulent emails to fool specific personnel.
Combining domain verification controls (SPF/DKIM/DMARC) with human security training reduces email spoofing and link clicking.
4
Analyze the Zero-Day vulnerability threat vector.
Identify that zero-day exploits target unpatched software weaknesses.
Deploying IPS signatures, micro-segmentation, and timely vendor security patches directly mitigates software vulnerability risks.

Key Concept

Threat, Vulnerability, and Mitigation Mapping
Question 14Question

A security analyst is reviewing measures to enforce the Confidentiality, Integrity, and Availability (CIA) triad across an enterprise network. Which of the following security controls directly address the Integrity leg of the CIA triad? (Select two.)

Select all that apply

Show answer & explanation

Answer: Applying cryptographic hash functions (such as SHA-256) to verify system configuration files; Utilizing asymmetric digital signatures to validate the authenticity and unmodified state of software updates

Answer

Cryptographic hash functions (such as SHA-256) and digital signatures directly enforce data Integrity by detecting unauthorized modifications.
Data Integrity ensures that information is accurate and unaltered during storage or transit. Using SHA-256 cryptographic hashing allows systems to verify file content against expected checksums. Digital signatures use hashing combined with public key infrastructure to ensure software updates remain unaltered and authentic.

Step-by-Step Solution

1
Define the Integrity component of the CIA triad.
Integrity ensures that network data and system configurations remain accurate, complete, and protected against unauthorized modification or tampering.
Security controls for integrity must detect or prevent unauthorized alterations to data.
2
Evaluate mechanisms that protect or verify data against alteration.
SHA-256 hashing generates a unique checksum to detect file changes, and digital signatures verify both sender identity and content immutability.
Both techniques specifically address data tampering and change detection.

Key Concept

CIA Triad - Integrity Security Controls
Question 15Question

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?

Show answer & explanation

Answer: Integrity was violated; it is mitigated by implementing cryptographic message hashing and digital signatures.

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
Question 16Question

An enterprise network administrator discovers a weakness in a router's firmware that has not yet been patched by the vendor. This weakness could potentially allow unauthorized access if targeted by malicious traffic. Which security term specifically describes this software weakness?

Show answer & explanation

Answer: Vulnerability

Answer

Vulnerability best describes an unpatched software weakness or flaw in system firmware.
The term vulnerability specifically refers to any weakness, flaw, or bug in system design, implementation, or firmware that leaves it open to attack.

Step-by-Step Solution

1
Analyze the item description
The scenario describes a software flaw/weakness present in router firmware.
Security terminology distinguishes between the flaw itself, the potential attacker, the mechanism of attack, and the overall business impact.
2
Map to fundamental security definitions
A weakness or flaw in system software/hardware is defined as a Vulnerability.
Threats act upon vulnerabilities using exploits, resulting in risk to the organization.

Key Concept

Key Security Definitions: Vulnerability vs. Threat vs. Exploit vs. Risk
Question 17Question

During an enterprise security audit following a system compromise, an incident response team discovers that a database server was accessed without authorization. The investigation shows that an outdated operating system service contained a coding flaw, which permitted an attacker to run a publicly available script to gain administrative access. Which security term specifically describes the flaw in the outdated operating system service?

Show answer & explanation

Answer: Vulnerability

Answer

The correct terminology for the coding flaw in the outdated operating system service is a vulnerability.
In security fundamentals, a vulnerability is defined as any weakness, flaw, or bug in software, hardware, or administrative controls that can be leveraged by a threat actor. The unpatched legacy operating system service containing a coding flaw is the system vulnerability.

Step-by-Step Solution

1
Analyze the security components described in the scenario.
Identified four elements: the unpatched operating system service flaw, the publicly available script, the external attacker, and the potential business damage.
Deconstructing an incident report into core security definitions is necessary to accurately classify each component.
2
Differentiate between Vulnerability, Exploit, Threat, and Risk.
The flaw/weakness in software is the Vulnerability; the script taking advantage of it is the Exploit; the external attacker is the Threat; the calculated impact/likelihood of loss is the Risk.
Standard security framework definitions (such as ISO/IEC 27000 and NIST) strictly define these core security terms.
3
Match the specific target of the question to the correct definition.
The question specifically asks about the coding flaw present in the service, which aligns exactly with Vulnerability.
The software weakness itself is the vulnerability that enables an attack to occur.

Key Concept

Core Information Security Terminology (Threat vs. Vulnerability vs. Exploit vs. Risk)
Question 18Question

A network engineer configures IPsec encryption on a site-to-site VPN tunnel connecting two corporate offices to ensure that intercepted data packets cannot be read by unauthorized individuals. Which core security principle of the CIA triad is directly achieved by this control?

Show answer & explanation

Answer: Confidentiality

Answer

Confidentiality
Confidentiality ensures that information is kept secret and inaccessible to unauthorized entities. Implementing IPsec encryption scrambles packet payloads into ciphertext, preventing eavesdroppers from reading the contents.

Step-by-Step Solution

1
Identify the primary objective described in the scenario.
The goal is to prevent unauthorized users from reading intercepted packets sent across the network.
Protecting data secrecy and preventing eavesdropping is the baseline requirement.
2
Map the technical control (IPsec encryption) to its corresponding CIA triad pillar.
Encryption renders plaintext data unreadable without the secret key, fulfilling the requirement for confidentiality.
Confidentiality is specifically concerned with keeping data hidden from unauthorized eyes.

Key Concept

CIA Triad: Confidentiality
Estimated Time:45s
Question 19Question

An enterprise network experiences an internal security incident where an unauthorized host on access VLAN 10 poisons the ARP caches of adjacent endpoints by advertising its own MAC address as the default gateway. A network engineer must implement a Layer 2 mitigation strategy that intercepts, inspects, and validates ARP requests and responses against a trusted IP-to-MAC binding table built by DHCP snooping. Which security mechanism directly mitigates this threat?

Show answer & explanation

Answer: Dynamic ARP Inspection (DAI), which checks ARP packets on untrusted ports against the DHCP snooping binding database to discard spoofed ARP replies.

Answer

Dynamic ARP Inspection (DAI), which checks ARP packets on untrusted ports against the DHCP snooping binding database to discard spoofed ARP replies.
Dynamic ARP Inspection (DAI) is a Layer 2 security feature that defends against ARP poisoning and spoofing attacks. When DAI is enabled on a VLAN, switch ports are designated as trusted or untrusted. DAI intercepts all ARP requests and responses on untrusted ports and verifies the IP-to-MAC address bindings against a database built by DHCP snooping. If the ARP packet contains invalid or spoofed mappings, DAI drops the packet.

Step-by-Step Solution

1
Identify the specific threat scenario
The attack involves ARP poisoning (cache poisoning), where a malicious host sends gratuitous or forged ARP responses linking the default gateway's IP address to its own MAC address, facilitating a Man-in-the-Middle (MitM) attack.
Understanding the attack vector at Layer 2 is critical for selecting the appropriate mitigation control.
2
Evaluate required mitigation mechanisms against Layer 2 threats
Dynamic ARP Inspection (DAI) is designed specifically to prevent ARP spoofing by inspecting ARP packets on untrusted interfaces.
DAI compares the incoming ARP packet's MAC and IP address fields against valid entries in the DHCP snooping binding database.
3
Distinguish DAI from other Layer 2 and AAA security controls
Port Security limits MAC address counts, ACLs filter Layer 3/4 headers, and RADIUS handles AAA, leaving DAI as the only feature that validates ARP frame integrity against DHCP snooping data.
A comprehensive security strategy relies on applying the correct feature to its corresponding vulnerability.

Key Concept

Mitigating Layer 2 ARP Poisoning Threats using Dynamic ARP Inspection (DAI) and DHCP Snooping
Question 20Question

A network administrator is conducting a security baseline review for an enterprise network to distinguish key security concepts and apply suitable mitigation strategies. Which two statements accurately describe key security principles or valid mitigation practices? (Select two.)

Select all that apply

Show answer & explanation

Answer: A vulnerability represents a weakness or flaw in system design, implementation, or configuration that could be exploited by a threat actor.; Implementing 802.1X Port-Based Network Access Control mitigates unauthorized network connectivity by authenticating endpoints before granting switch port access.

Answer

The correct statements define a vulnerability as a system flaw or weakness that can be exploited by a threat, and describe 802.1X Port-Based Network Access Control as a valid mitigation that authenticates devices before granting network switch port access.
A vulnerability is defined as an internal weakness or flaw in system design, software, or configuration that can be exploited by a threat actor. 802.1X Network Access Control serves as a robust mitigation mechanism by forcing endpoints to authenticate before granting access to the LAN switch port.

Step-by-Step Solution

1
Differentiate security baseline concepts such as threats, vulnerabilities, and mitigations.
Identify that a vulnerability is a weakness in code, design, or implementation that creates potential exposure.
Accurate conceptual taxonomy is necessary for risk assessment and system hardening.
2
Evaluate identity and access control mitigations for local network access.
Confirm that 802.1X enforces port-level security by restricting traffic until authentication succeeds.
Network access controls prevent unauthorized devices from attaching to switch ports.
3
Analyze distractors related to AAA protocols and switch security operations.
Recognize that TACACS+ encrypts the complete packet payload (unlike RADIUS) and that sticky MAC addresses reside in running-config until saved to NVRAM.
Misinterpreting protocol mechanics or configuration state persistence leads to invalid security assumptions.

Key Concept

Key Security Terminology and Network Access Mitigations
Page 1 / 2Next
Key Security Concepts, Threats, Vulnerabilities, and Mitigations Practice Questions — Cisco CCNA | Examkin