Network Security

427 questions

Question 101Question

A network security administrator needs to implement a security solution that continuously monitors network traffic and actively drops malicious packets in real time before they can reach critical application servers. Which device type and deployment configuration best fulfills these requirements?

Show answer & explanation

Answer: A Network Intrusion Prevention System (NIPS) deployed inline (in-band) within the network traffic flow.

Answer

A Network Intrusion Prevention System (NIPS) deployed inline (in-band) within the network traffic flow.
A Network Intrusion Prevention System (NIPS) installed inline (in-band) processes all network traffic passing through its interfaces. This placement allows the appliance to analyze packet payloads against threat signatures or anomalies and immediately drop malicious packets before they reach target servers.

Step-by-Step Solution

1
Analyze the operational requirement for active prevention.
The scenario requires stopping malicious packets in real time before they arrive at application servers, which demands a prevention system (IPS) rather than a detection-only system (IDS).
Detection systems (IDS) only generate alerts or passive logs after traffic passes.
2
Evaluate network placement topology (inline vs out-of-band).
Inline (in-band) placement positions the security appliance directly between network segments so all traffic must traverse the device.
Out-of-band topologies receive duplicate copies of traffic from TAP or SPAN ports, making inline packet dropping impossible.

Key Concept

Inline NIPS Deployment vs. Passive NIDS Placement
Estimated Time:1m 15s
Question 102Question

A network security architect is reviewing enterprise controls to align with core security principles across a hybrid multi-cloud environment. Match each technical security mechanism to the primary security principle of the CIA Triad or expanded core concepts it directly fulfills.

Click a left item, then click its matching right item

Items

Implementation of HMAC-SHA256 digests generated using a shared secret for all internal API transaction payloads
Deployment of active-active redundant firewalls across geographically dispersed data centers with automated BGP health checks and route failure propagation
Enforcement of Ephemeral Diffie-Hellman (ECDHE) key exchange within TLS 1.3 session configurations
Requiring developers to sign code commits using asymmetric private keys linked to identity-verified X.509 certificates and cryptographically timestamped by a trusted RFC 3161 authority

Matches

Show answer & explanation

Answer

HMAC-SHA256 payload digests pair with Integrity; Redundant BGP-monitored active-active firewalls pair with Availability; ECDHE key exchange pairs with Confidentiality (PFS); Asymmetrically signed code commits with RFC 3161 timestamps pair with Non-repudiation.
Each security control aligns precisely with its corresponding security principle: HMAC guarantees integrity via tamper detection; dual-homed redundant firewalls guarantee availability through fault tolerance; ephemeral key exchange guarantees confidentiality via forward secrecy; and timestamped asymmetric signatures establish non-repudiation through proof of origin.

Step-by-Step Solution

1
Analyze the technical control in left item 1 (HMAC-SHA256 payload digests).
HMAC produces a keyed cryptographic hash value.
Hashing protects data against unauthorized tampering, which directly maps to the Integrity pillar.
2
Analyze the technical control in left item 2 (Active-active redundant firewalls with automated BGP health checks).
High availability and rapid fault failover infrastructure.
Eliminating single points of failure ensures continuous operational uptime, which maps directly to Availability.
3
Analyze the technical control in left item 3 (Ephemeral Diffie-Hellman key exchange).
Provides Perfect Forward Secrecy by using disposable per-session keys.
Preventing unauthorized decryption of intercepted traffic guarantees data secrecy over time, mapping directly to Confidentiality.
4
Analyze the technical control in left item 4 (Asymmetric private key code signing with RFC 3161 timestamps).
Binds author identity securely to specific code states at precise times.
Prevents the author from denying authorship or claiming modification occurred later, establishing Non-repudiation.

Key Concept

Core Information Security Principles (CIA Triad & Non-repudiation)
Question 103Question

A network administrator configures an inbound extended Access Control List (ACL) on a router interface (GigabitEthernet0/0) to allow internal workstations on subnet 172.16.10.0/24 to browse secure external websites and perform domain name resolution. The applied ACL rules are evaluated top-down as follows:

LineActionProtocolSource IP / WildcardDestination IPDestination Port
10permittcp172.16.10.0 0.0.0.255anyeq 443
20permitudp172.16.10.0 0.0.0.255host 8.8.8.8eq 53

Although outbound TCP SYN packets sent to external Web servers successfully pass through the router interface, internal clients report that HTTPS web pages fail to load and connections instantly time out. Outbound interface NAT and default routing are verified to be fully operational.

Which technical requirement of stateless access control filtering explains why these HTTPS connections fail to establish?

Show answer & explanation

Answer: Stateless ACLs do not track TCP connection state, so return traffic from external servers targeting random ephemeral client ports is blocked by the implicit deny rule on the return path unless explicitly permitted.

Answer

Stateless ACLs do not maintain connection state tables. Consequently, return traffic originating from external servers with source port 443 directed toward high-numbered client ephemeral ports is dropped by the default implicit deny unless return rules or stateful filtering (such as reflexive ACLs or stateful firewalls) are enabled.
Standard router Access Control Lists (ACLs) are stateless, meaning they evaluate each packet in isolation without keeping track of TCP session states. While rule 10 permits outbound TCP SYN packets destined for port 443, the returning TCP SYN-ACK packets sent from port 443 to the client's randomly generated ephemeral port do not match rule 10 (which checks destination port 443). Without a return ACL entry allowing established connections or a stateful firewall mechanism, the return traffic is dropped by the implicit deny all rule at the end of the ACL.

Step-by-Step Solution

1
Analyze the operational behavior of standard extended ACLs
Standard router ACLs are stateless filters that examine IP and transport layer headers of individual packets independently without tracking session states.
Understanding stateless evaluation is required to diagnose directionality issues in ACL traffic flows.
2
Trace the TCP three-way handshake flow for HTTPS (TCP 443)
An internal client (e.g., 172.16.10.15:49152) sends a SYN packet to an external server (e.g., 93.184.216.34:443). Rule 10 permits this packet outbound through GigabitEthernet0/0.
Outbound traffic matches source subnet 172.16.10.0/24 and destination port 443.
3
Evaluate the return SYN-ACK packet flow from the external server back to the client
The server sends a SYN-ACK packet with source IP 93.184.216.34 (port 443) and destination IP 172.16.10.15 (port 49152). When entering an interface or returning, this packet does not match rule 10 (which expects destination port 443, not source port 443).
Because stateless ACLs do not automatically allow return packets matching established sessions, the return SYN-ACK hits the implicit deny rule and is dropped.

Key Concept

Stateless vs. Stateful Filtering and Return Traffic Evaluation in ACLs
Estimated Time:2m 0s
Question 104Question

A network security architect must implement centralized AAA management for network administrators executing commands on enterprise routers across loss-prone WAN links. The solution must support per-command authorization policy enforcement, encrypt the entire packet payload during transit, and use a reliable connection-oriented transport protocol to guarantee delivery of accounting records. Which protocol and transport combination should the architect deploy?

Show answer & explanation

Answer: TACACS+ utilizing TCP port 49

Answer

TACACS+ utilizing TCP port 49
TACACS+ (Terminal Access Controller Access-Control System Plus) fully decouples the AAA functions, enabling separate per-command authorization checks for router administration. It encrypts the complete packet payload (except the standard header) and uses connection-oriented TCP on port 49, satisfying the WAN reliability and accounting delivery requirements.

Step-by-Step Solution

1
Analyze access control and authorization requirements
Identified requirement for granular per-command CLI authorization.
TACACS+ separates authorization from authentication, allowing distinct CLI command permission checks, whereas RADIUS couples them together.
2
Evaluate payload encryption requirements
Identified requirement for full packet payload encryption.
TACACS+ encrypts the entire payload body of the packet, while RADIUS only encrypts the password attribute in transit.
3
Determine transport protocol and port specifications
Selected TCP over port 49.
TACACS+ runs natively on connection-oriented TCP port 49 to provide reliable transmission over lossy WAN links.

Key Concept

Decoupled AAA architecture, payload encryption scope, and transport protocol characteristics of TACACS+ versus RADIUS.
Question 105Question

Following a workstation compromise, an enterprise security team observes that an internal database server receives encrypted command-and-control traffic, accompanied by unauthorized local process injection and file integrity alterations. The existing network-based IDS connected via a switch SPAN port failed to decrypt the payload and was structurally incapable of stopping the local system modifications due to its passive out-of-band placement. To actively block unauthorized system calls, memory manipulation, and malicious file modifications directly on the server host, which security technology should be deployed?

Show answer & explanation

Answer: Host-based Intrusion Prevention System (HIPS)

Answer

Host-based Intrusion Prevention System (HIPS) should be deployed because it runs locally on the host to monitor and actively block unauthorized system calls, file modifications, and process injections.
A Host-based Intrusion Prevention System (HIPS) is installed directly on host endpoints (such as servers). Because it runs within the operating system, it has complete visibility into decrypted data, file system alterations, registry modifications, and kernel/system calls. Furthermore, as a prevention system, it actively interrupts and blocks unauthorized or anomalous process execution and system calls before damage occurs.

Step-by-Step Solution

1
Analyze the threat vectors and monitoring requirements described in the scenario.
The scenario requires protection against host-level threats (process injection, local system calls, memory modification) and encrypted traffic that out-of-band network sensors cannot inspect or block.
Identifying whether the vulnerability/attack surface is network-centric or endpoint-centric dictates the correct system architecture.
2
Evaluate network-based vs host-based security mechanisms.
Network-based systems (NIDS/NIPS) process network traffic in transit. Host-based systems (HIDS/HIPS) process host activity after network decryption, inspecting internal operating system calls and file systems.
Host-level processes and payload contents encrypted in transit are visible only at the host endpoint.
3
Differentiate between passive detection and active prevention capabilities.
Intrusion Detection Systems (IDS) detect and alert passively, whereas Intrusion Prevention Systems (IPS) sit inline relative to the activity and actively block malicious actions.
The requirement specifically demands actively blocking local system modifications, necessitating an inline prevention technology.

Key Concept

Host-based Intrusion Prevention System (HIPS) vs. Network-based Security Placement
Estimated Time:2m 0s
Question 106Question

A company is updating its perimeter network architecture to defend against automated exploit attacks targeted at public-facing application servers. The security strategy requires a device positioned directly in the traffic flow that can inspect packet payloads in real time and automatically drop malicious frames before they cross into the internal segment. Which security appliance deployment best satisfies these active mitigation requirements?

Show answer & explanation

Answer: A Network Intrusion Prevention System (NIPS) deployed inline between the perimeter router and the internal web network

Answer

A Network Intrusion Prevention System (NIPS) deployed inline between the perimeter router and the internal web network
Deploying a Network Intrusion Prevention System inline places the device directly inside the network traffic path (in-band). This enables the system to perform deep packet inspection on passing traffic and immediately block or drop malicious packets before they reach internal application servers.

Step-by-Step Solution

1
Identify the operational requirement specified in the scenario
The scenario demands an active prevention solution placed directly in the traffic path to inspect payloads and drop malicious packets immediately.
Active packet dropping requires in-band (inline) placement so traffic must pass through the device.
2
Evaluate the distinction between passive detection and active inline prevention
NIDS operates out-of-band via SPAN/TAP ports (passive monitoring), whereas NIPS operates inline (active prevention).
Only an inline appliance can drop packets mid-stream before they arrive at host destinations.
3
Select the matching deployment model
Deploying a Network Intrusion Prevention System (NIPS) inline between the perimeter router and internal segment satisfies all requirements.
Inline NIPS combines deep packet payload inspection with real-time active traffic blocking.

Key Concept

Inline NIPS vs. Passive NIDS Deployment
Estimated Time:1m 15s
Question 107Question

A network security analyst is investigating a compromised corporate subnet where users attempting to access internal file servers are periodically redirected to an unauthorized external server capturing credentials. A packet capture analysis on the local segment reveals two distinct operational anomalies:
1. Unsolicited, continuous ARP response frames broadcast across the segment, binding the subnet default gateway's IP address to an unrecognized host's MAC address.
2. Injected response packets intercepting local recursive name resolution requests and supplying spoofed IP addresses for internal domain names.

Which of the following attack vectors are directly being executed in this enterprise incident? (Select TWO)

Select all that apply

Show answer & explanation

Answer: ARP Poisoning (Spoofing) to establish a Layer 2 On-path (Man-in-the-Middle) position by altering local host neighbor caches; DNS Poisoning (Spoofing) to compromise name-to-IP resolution and redirect domain lookup queries to unauthorized IP addresses

Answer

The two attack vectors actively being executed are ARP Poisoning (Spoofing) and DNS Poisoning (Spoofing).
The scenario describes two distinct malicious actions: local ARP table corruption via unsolicited ARP responses (ARP Poisoning) to position the attacker as an On-path intermediary, and the injection of fraudulent DNS resolution answers (DNS Poisoning) to redirect users to unauthorized IP destinations.

Step-by-Step Solution

1
Analyze anomaly #1: Unsolicited ARP response frames mapping gateway IP to an unknown MAC.
Identified as ARP Poisoning/Spoofing. Gratuitous ARP frames poison local ARP caches, causing hosts on the broadcast domain to send gateway-bound packets directly to the attacker's Layer 2 MAC address.
ARP lacks authentication mechanisms, allowing spoofed replies to overwrite legitimate IP-to-MAC resolution tables.
2
Analyze anomaly #2: Injected response packets altering local name resolution output.
Identified as DNS Poisoning/Spoofing. Fake DNS replies overwrite cache or resolution entries to direct hostname lookups to malicious destination IPs.
DNS resolution manipulation specifically targets domain name translation to divert application traffic.
3
Evaluate remaining options against observed packet anomalies.
VLAN Hopping and Port 23 Downgrade do not match ARP cache corruption or DNS response injection symptoms.
VLAN hopping exploits trunking configuration tagging, and Telnet on port 23 is unrelated to name resolution or address resolution.

Key Concept

Common Network Attack Types and Vectors (ARP Poisoning and DNS Spoofing)
Estimated Time:3m 0s
Question 108Question

A network security administrator is transitioning core switch infrastructure management from a RADIUS solution to TACACS+. When auditing protocol behavior and firewall traffic rules for TACACS+, which of the following operational characteristics accurately describe TACACS+ compared to RADIUS? (Select TWO)

Select all that apply

Show answer & explanation

Answer: Encrypts the entire body of the packet rather than concealing only the user password field.; Utilizes connection-oriented TCP port 49 for communication between the AAA client and server.

Answer

TACACS+ encrypts the entire body of the packet rather than concealing only the user password field, and it utilizes connection-oriented TCP port 49 for communication between the AAA client and server.
TACACS+ provides full-payload encryption beyond the protocol header and relies on TCP port 49 for reliable connection management. This allows network security systems to perform granular per-command authorization over a secure, connection-oriented channel.

Step-by-Step Solution

1
Analyze protocol encryption scope differences between RADIUS and TACACS+.
Identify that TACACS+ encrypts all payload content beyond the basic header, whereas RADIUS encrypts only the password attribute in Access-Request packets.
Security auditing requires determining payload confidentiality boundaries across administrative AAA traffic.
2
Evaluate transport layer protocols and port requirements for TACACS+ traffic rules.
Confirm that TACACS+ relies on TCP port 49, offering reliable connection state monitoring, whereas RADIUS relies on UDP (ports 1812/1813 or legacy 1645/1646).
Firewall access rules must accurately reflect TCP port 49 for TACACS+ client-server communication.
3
Verify AAA architecture modularity distinctions.
Differentiate TACACS+ (decoupled AAA functions allowing per-command authorization) from RADIUS (coupled authentication/authorization).
Eliminate choices that misattribute combined AAA transactions or RADIUS UDP ports to TACACS+.

Key Concept

AAA Framework protocol differences between TACACS+ (TCP 49, full payload encryption, decoupled AAA) and RADIUS (UDP 1812/1813, password-only encryption, combined authentication/authorization).
Estimated Time:2m 0s
Question 109Question

A network security team observes severe throughput degradation and dropped legitimate traffic on an inline Network Intrusion Prevention System (NIPS) during peak hours. The NIPS performs deep packet inspection and signature matching on unencrypted perimeter traffic. Concurrently, an audit reveals that internal attackers are transmitting malicious encrypted payloads across TLS sessions that bypass the NIPS undetected. Which of the following architectural modifications best addresses the processing bottleneck while providing threat visibility into the encrypted traffic?

Show answer & explanation

Answer: Deploy Host-based Intrusion Detection Systems (HIDS) on critical endpoint servers while reconfiguring the network intrusion sensor to a passive out-of-band TAP deployment.

Answer

Deploy Host-based Intrusion Detection Systems (HIDS) on critical endpoint servers while reconfiguring the network intrusion sensor to a passive out-of-band TAP deployment.
The combination of converting network sensors to an out-of-band TAP and installing Host-based Intrusion Detection Systems (HIDS) addresses both challenges effectively. Passive TAP deployments mirror traffic without sitting inline, eliminating network latency and packet drops. HIDS operates directly on endpoints where encrypted transport sessions (TLS) are decrypted, enabling full payload and behavior monitoring that network-level devices miss.

Step-by-Step Solution

1
Analyze the network bottleneck issue
Inline NIPS processing causes latency and packet drops during high traffic volume because every packet must be inspected synchronously in-band.
Relieving network latency requires transitioning synchronous inline inspection to an asynchronous out-of-band passive monitoring model (such as a network TAP).
2
Analyze the encrypted traffic visibility issue
Network-based sensors cannot inspect payload data inside encrypted TLS tunnels without session termination.
Host-based Intrusion Detection Systems (HIDS) execute after the host operating system terminates and decrypts the TLS session, allowing full visibility into application payloads and system call behavior.
3
Synthesize the combined security architecture strategy
Combining out-of-band passive network monitoring with endpoint HIDS resolves latency while securing encrypted traffic.
This hybrid approach eliminates inline network degradation while gaining host-level decrypted payload inspection.

Key Concept

HIDS vs NIDS visibility and In-Band vs Out-of-Band deployment trade-offs
Question 110Question

A network security administrator configures a passive Network Intrusion Detection System (NIDS) connected to a switch port mirroring session. While the system successfully logs alert notifications for unauthorized port scans, it does not stop the scanning traffic from reaching internal hosts. Which architectural characteristic explains why the NIDS cannot directly drop these attack packets?

Show answer & explanation

Answer: It is deployed out-of-band and receives a duplicate copy of network traffic rather than sitting directly in the live data path.

Answer

The NIDS is deployed out-of-band and receives duplicate traffic via port mirroring rather than sitting directly in the live network path.
Passive NIDS solutions are deployed out-of-band using switch port mirroring (SPAN) or network TAPs. Replicated traffic copies are forwarded to the NIDS while original packets continue along their primary path. Because the NIDS is not positioned inline within the live data stream, it cannot intercept, alter, or drop active network packets.

Step-by-Step Solution

1
Identify the deployment topology of the NIDS described in the scenario.
The device is connected passively to a mirrored switch port (out-of-band).
Out-of-band systems process copied frame data replicated by a switch or TAP.
2
Analyze how traffic flows through an out-of-band detection device.
Original packets travel directly to their destination uninterrupted while the NIDS analyzes the mirrored copies.
Because live packets do not traverse the physical interfaces of the NIDS, the device has no mechanism to intercept or drop active frames.

Key Concept

Passive NIDS Out-of-Band Placement vs. Inline Prevention
Estimated Time:45s
Question 111Question

Match each AAA framework component or access control concept on the left to its corresponding operational description on the right.

Click a left item, then click its matching right item

Items

Authentication
Authorization
Accounting
Multifactor Authentication (MFA)

Matches

Show answer & explanation

Answer

Authentication matches with verifying identity; Authorization matches with granting specific permissions; Accounting matches with tracking activity and resource usage for auditing; Multifactor Authentication (MFA) matches with requiring two or more distinct credential categories.
Authentication strictly addresses identity verification. Authorization governs access rights and command permissions following successful authentication. Accounting logs historical session data and usage statistics for auditing purposes. Multifactor Authentication requires credentials from multiple distinct factor categories to validate identity.

Step-by-Step Solution

1
Determine the primary function of Authentication in the AAA framework.
Authentication validates who the user is, matching the description of verifying a claimed identity.
Before granting access or assigning permissions, the system must verify identity claims.
2
Determine the core purpose of Authorization.
Authorization manages privilege levels, matching the description of granting or restricting specific access permissions.
Authorization enforces access control policies after an identity has been authenticated.
3
Determine the operational role of Accounting.
Accounting tracks usage metrics, matching the description of logging session details and resource consumption for auditing.
Accounting creates an audit trail of user actions, session lengths, and data usage.
4
Identify the definition of Multifactor Authentication (MFA).
MFA combines separate credential categories, matching the description of requiring two or more distinct factor types.
MFA enhances security by demanding proof across independent factor classes, such as knowledge, possession, or inherence.

Key Concept

AAA Framework Core Pillars and MFA Fundamentals
Question 112Question

An enterprise security team is deploying 802.1X port-based network access control across corporate network switches. In this architecture, the edge switch serves as the authenticator and relays Extensible Authentication Protocol (EAP) messages between the client host and a centralized authentication server. Which protocol is primarily utilized between the switch and the authentication server to transport these encapsulated EAP packets?

Show answer & explanation

Answer: RADIUS

Answer

RADIUS is the standard protocol used by the network switch to encapsulate and relay 802.1X EAP authentication traffic to the central AAA server.
In an 802.1X framework, the supplicant (client) communicates with the authenticator (switch) using EAPoL (EAP over LAN). The authenticator then re-encapsulates these EAP messages into RADIUS packets (over UDP ports 1812/1813) to communicate with the backend AAA server.

Step-by-Step Solution

1
Identify the role of the network switch in the 802.1X architecture.
The switch acts as the Authenticator, bridging client EAP over LAN (EAPoL) traffic to the backend server.
The switch does not make the final authentication decision; it relays credentials securely to the AAA server.
2
Determine the backend protocol capable of encapsulating EAP messages.
RADIUS natively supports EAP encapsulation (RADIUS attributes carry EAP packets over UDP).
802.1X explicitly defines RADIUS as the primary protocol for carrying EAP payloads from authenticators to authentication servers.

Key Concept

802.1X EAP Protocol Encapsulation via RADIUS
Question 113Question

Match each core security principle of the CIA triad to its primary operational objective.

Click a left item, then click its matching right item

Items

Confidentiality
Integrity
Availability

Matches

Show answer & explanation

Answer

Confidentiality matches with preventing unauthorized disclosure; Integrity matches with guaranteeing data is not modified or tampered with; Availability matches with ensuring network services remain accessible when needed.
Each core principle of the CIA triad maps to a specific security mandate: Confidentiality prevents unauthorized data exposure, Integrity guards against data tampering or unauthorized modification, and Availability ensures continuous access to services for authorized users.

Step-by-Step Solution

1
Identify the objective of Confidentiality
Matches preventing unauthorized disclosure or interception of sensitive data.
Confidentiality ensures that sensitive information is accessible only to authorized individuals.
2
Identify the objective of Integrity
Matches guaranteeing that transmitted data has not been modified or tampered with by unauthorized parties.
Integrity focuses on maintaining the accuracy and trustworthiness of data.
3
Identify the objective of Availability
Matches ensuring network services and system resources remain accessible to authorized users when needed.
Availability safeguards network operational uptime and access to resources.

Key Concept

CIA Triad Core Principles
Question 114Question

Match each wireless security standard on the left with its primary encryption algorithm or cipher suite on the right.

Click a left item, then click its matching right item

Items

WEP
WPA2
WPA3

Matches

Show answer & explanation

Answer

WEP corresponds to the RC4 stream cipher; WPA2 corresponds to CCMP (AES); WPA3 corresponds to GCMP-256 (AES).
Each wireless security standard aligns with a specific cryptographic protocol: legacy WEP uses the RC4 stream cipher, WPA2 standardizes CCMP based on AES, and WPA3 introduces stronger GCMP-256 AES encryption.

Step-by-Step Solution

1
Identify the cipher used by WEP.
WEP uses RC4.
WEP was designed around the RC4 stream cipher, which is now considered deprecated and vulnerable.
2
Identify the encryption suite mandated by WPA2.
WPA2 uses CCMP (AES).
The IEEE 802.11i standard defining WPA2 requires CCMP with AES for encryption and integrity.
3
Identify the enhanced encryption suite defined for WPA3.
WPA3 uses GCMP-256 (AES).
WPA3 upgrades wireless encryption to Galois/Counter Mode Protocol using 256-bit AES.

Key Concept

Wireless Security Standards and Encryption Protocols
Question 115Question

A healthcare organization experiences an outage on its web-based patient portal after a misconfigured network backup script fails to clear temporary files, causing the primary storage volume to fill completely and crashing the service. Although all patient records remained securely encrypted at rest and no data was accessed or altered by unauthorized parties, clinical staff were unable to access critical patient records for three hours. Which pillar of the CIA triad was directly compromised in this incident?

Show answer & explanation

Answer: Availability, because authorized users were denied timely and reliable access to systems and data.

Answer

Availability, because authorized users were denied timely and reliable access to systems and data.
The correct answer highlights that Availability was breached. The CIA triad defines Availability as ensuring that network services and data remain accessible to authorized users when needed. In this scenario, storage exhaustion caused a service crash that prevented clinical staff from accessing critical patient data for three hours, directly violating the availability principle while data confidentiality and integrity remained uncompromised.

Step-by-Step Solution

1
Analyze the impact of the incident described in the scenario.
Patient records remained encrypted (no exposure) and unaltered (no modification), but legitimate healthcare personnel were unable to retrieve patient files when needed.
Determining which core security objective was impaired requires evaluating what failed: exposure, modification, or access.
2
Map the impact to the pillars of the CIA Triad.
The failure prevented timely access for authorized users, which directly corresponds to a loss of Availability.
Availability guarantees that system resources and data are reachable and operational whenever authorized entities require them.

Key Concept

CIA Triad Pillars (Confidentiality, Integrity, Availability)
Estimated Time:1m 30s
Question 116Question

A network administrator is configuring a corporate wireless network that requires individual user authentication against a central RADIUS server using WPA3-Enterprise. Which authentication framework must be implemented on the wireless network?

Show answer & explanation

Answer: 802.1X authentication with EAP

Answer

802.1X authentication with EAP is required for WPA3-Enterprise deployments to authenticate users against a central RADIUS server.
WPA3-Enterprise mandates the use of 802.1X port-based access control along with Extensible Authentication Protocol (EAP) to securely pass authentication credentials between client stations and a central RADIUS server.

Step-by-Step Solution

1
Identify the organizational requirements in the scenario
The scenario specifies a WPA3-Enterprise deployment requiring centralized RADIUS user authentication.
Enterprise security modes require central identity verification rather than static pre-shared passwords.
2
Select the appropriate authentication framework
802.1X port-based network access control with Extensible Authentication Protocol (EAP) must be configured.
802.1X provides the standard structure for passing EAP authentication messages between wireless clients, access points, and RADIUS servers.

Key Concept

WPA3-Enterprise authentication framework
Estimated Time:45s
Question 117Question

A senior network security analyst is reviewing telemetry logs and protocol captures across several enterprise security incidents. Match each specific network attack type to its underlying operational mechanism and observed protocol footprint.

Click a left item, then click its matching right item

Items

NTP Amplification DDoS
Pass-the-Hash (PtH)
802.11 Deauthentication Attack
BGP Route Hijacking

Matches

Show answer & explanation

Answer

NTP Amplification DDoS matches UDP 123 monlist amplification; Pass-the-Hash matches leveraging extracted memory authentication artifacts for SMB/RPC access; 802.11 Deauthentication Attack matches injecting spoofed unencrypted management frames; BGP Route Hijacking matches advertising more specific AS prefixes.
Each attack vector is paired directly to its unique network footprint: NTP Amplification relies on UDP 123 request/response size asymmetry via spoofed IPs; Pass-the-Hash utilizes captured credential hashes directly for SMB/RPC authentication; 802.11 Deauthentication uses spoofed unencrypted 802.11 control/management frames; and BGP Route Hijacking manipulates path selection by advertising more specific BGP IP prefixes.

Step-by-Step Solution

1
Analyze NTP Amplification DDoS mechanics
Identified UDP port 123 monlist command exploitation with spoofed victim source IPs causing asymmetric bandwidth saturation.
Amplication DDoS attacks exploit UDP-based protocols that return responses significantly larger than the initial query.
2
Analyze Pass-the-Hash (PtH) mechanics
Identified lateral movement using extracted NTLM or Kerberos credentials without cracking plaintext passwords.
Authentication protocols using hash-based authentication accept valid hashes directly for session establishment.
3
Analyze 802.11 Deauthentication Attack mechanics
Identified frame spoofing targeting unencrypted 802.11 management frames to force client disconnects.
Standard 802.11 management frames lack cryptographic integrity protection unless 802.11w PMF is enforced.
4
Analyze BGP Route Hijacking mechanics
Identified malicious prefix announcements exploiting longest-prefix matching rules in BGP exterior routing.
Routers prefer more specific network prefixes (e.g. /24 vs /22) when making routing decisions.

Key Concept

Network Attack Vector Differentiation and Protocol Footprints
Question 118Question

Match each intrusion detection/prevention operational mechanism or placement scenario to its primary functionality or characteristics.

Click a left item, then click its matching right item

Items

Inline NIPS Deployment
Passive NIDS via Switch SPAN Port
Signature-Based Detection Engine
Anomaly-Based Detection Engine

Matches

Show answer & explanation

Answer

Inline NIPS Deployment matches sitting directly in the network traffic path to actively drop malicious packets. Passive NIDS via Switch SPAN Port matches analyzing mirrored traffic out-of-band without introducing network latency. Signature-Based Detection Engine matches comparing packet payloads against known attack patterns. Anomaly-Based Detection Engine matches evaluating current network activity against a pre-established baseline of normal behavior.
Inline NIPS operates in-band to actively stop attacks in transit. Passive NIDS uses out-of-band SPAN mirroring to inspect traffic without introducing inline network delays. Signature-based systems match static patterns of known attacks, while anomaly-based systems detect deviations from an established operational baseline.

Step-by-Step Solution

1
Identify system placement models (in-band vs out-of-band)
Inline NIPS sits directly in the active data stream to block threats. Passive NIDS monitors mirrored switch SPAN data copies out-of-band.
Physical or logical network placement determines whether a system can actively prevent malicious traffic or passively detect and alert on it.
2
Identify detection engines and inspection strategies (signature vs anomaly)
Signature-based systems rely on known static indicators. Anomaly-based systems rely on deviations from a learned baseline of normal behavior.
Detection engines differ in their relying indicators (predefined patterns vs baseline metrics), impacting zero-day detection capabilities.
3
Associate each term with its primary functional description
Inline NIPS -> directly in path to drop packets; Passive NIDS -> mirrored out-of-band traffic; Signature-based -> known attack patterns; Anomaly-based -> pre-established baseline evaluation.
Matches each architectural deployment and detection mechanism to its operational definition.

Key Concept

IDS/IPS Architectural Placement and Detection Engine Mechanics
Question 119Question

During a security incident investigation on a segmented corporate network, a technician notices that workstations on VLAN 10 are sending traffic intended for the local default gateway (10.10.10.1) directly to an unknown host's MAC address (00:50:56:AB:CD:EF). Analysis of network traffic logs reveals that the unknown host continuously transmits unsolicited Ethernet frames asserting ownership of IP address 10.10.10.1 without altering the victim clients' DNS configuration or DHCP lease parameters. Which of the following attack vectors is actively occurring, and what underlying mechanism enables this compromise?

Show answer & explanation

Answer: ARP poisoning, enabled by broadcasting forged Gratuitous ARP frames to overwrite host ARP caches within the local broadcast domain.

Answer

ARP poisoning, enabled by broadcasting forged Gratuitous ARP frames to overwrite host ARP caches within the local broadcast domain.
The scenario describes ARP poisoning (ARP spoofing). Because the Address Resolution Protocol (ARP) lacks intrinsic authentication, an attacker on the same local Layer 2 broadcast domain can broadcast forged Gratuitous ARP (GARP) frames. These frames inform neighboring hosts that the default gateway's IP address (10.10.10.1) is now associated with the attacker's MAC address (00:50:56:AB:CD:EF). Consequently, victim workstations update their local ARP caches and forward all off-subnet traffic to the attacker, creating an On-Path (Man-in-the-Middle) attack vector.

Step-by-Step Solution

1
Analyze the observed network symptom
Workstation traffic destined for IP 10.10.10.1 is mapped to an unauthorized MAC address (00:50:56:AB:CD:EF).
Traffic redirection occurs strictly at Layer 2 via IP-to-MAC mapping manipulation.
2
Evaluate the mechanism described in packet logs
Unsolicited Ethernet frames assert IP-to-MAC ownership without modifying Layer 7 DNS or Layer 3/4 DHCP lease settings.
Gratuitous ARP (GARP) announcements update neighbor ARP tables without prior requests.
3
Identify the specific attack vector
The attack vector is ARP poisoning (ARP spoofing), which creates a Man-in-the-Middle (MitM) condition on the local broadcast domain.
Manipulating ARP cache tables via spoofed Layer 2 frames directly matches the definition and mechanism of ARP poisoning.

Key Concept

ARP Poisoning and Gratuitous ARP Exploitation
Estimated Time:2m 0s
Question 120Question

An organization installs redundant power supplies and an Uninterruptible Power Supply (UPS) unit for its core network switches to prevent system outages during electrical disruptions. Which pillar of the CIA triad is directly supported by this implementation?

Show answer & explanation

Answer: Availability

Answer

Availability is the pillar of the CIA triad directly supported by implementing redundant power supplies and UPS units.
The option specifying Availability is correct because installing redundant power supplies and UPS units ensures network devices remain operational and accessible during power disruptions, which directly fulfills the requirement of system availability.

Step-by-Step Solution

1
Identify the primary objective of the described security control.
Installing UPS systems and redundant power supplies prevents network downtime and maintains system operational status during power failures.
The primary goal is keeping hardware running continuously.
2
Map the operational objective to the corresponding CIA triad component.
Uptime and system accessibility correspond directly to Availability.
Availability guarantees that systems and services are accessible when required by authorized entities.

Key Concept

CIA Triad - Availability
Estimated Time:45s
PreviousPage 6 / 22Next