Network Security

427 questions

Question 341Question

Match each network attack vector to its primary technical mechanism or observed network anomaly.

Click a left item, then click its matching right item

Items

Rogue DHCP Server
TCP SYN Flood
MAC Flooding
SSL/TLS Stripping

Matches

Show answer & explanation

Answer

Rogue DHCP Server matches issuing unauthorized IP configuration settings to client endpoints; TCP SYN Flood matches exhausting the target host connection backlog queue with half-open requests; MAC Flooding matches overflowing the Layer 2 switch CAM table to force broadcast state; SSL/TLS Stripping matches downgrading HTTPS communications to unencrypted HTTP.
Each network attack vector targets a specific layer or operational protocol: Rogue DHCP misdirects network layer routing by spoofing configuration offers; TCP SYN floods exhaust transport layer state queues; MAC flooding saturates data link layer switch address tables; SSL/TLS stripping manipulates application/session layer encryption negotiation.

Step-by-Step Solution

1
Identify the primary operational target and mechanism of a Rogue DHCP Server.
Rogue DHCP servers exploit client broadcast discovery to assign unauthorized gateway and DNS settings.
Clients accept configuration settings from the fastest responding DHCP offer on the network segment.
2
Analyze the impact of a TCP SYN Flood on system resources.
Flooding incomplete handshakes exhausts the target server backlog queue.
The server allocates state memory for each SYN request and waits for an ACK packet that never arrives.
3
Determine the effect of MAC Flooding on switch behavior.
Overwriting switch CAM table entries forces the switch into fail-open (hub-like) broadcast mode.
When the lookup table cannot store new MAC-to-port mappings, unicast frames are flooded out all ports to ensure delivery.
4
Evaluate the objective of SSL/TLS Stripping during proxy interception.
Forces encrypted web sessions down to unencrypted HTTP sessions.
The proxy rewrites secure HTTPS links and location headers before forwarding response content to the endpoint browser.

Key Concept

Common Network Attack Types and Vectors
Question 342Question

A network security technician is analyzing packet captures from an enterprise user segment after host traffic was unexpectedly intercepted. The packet capture shows multiple unsolicited ARP responses associating the default gateway's IP address with an unauthorized host's MAC address. Which of the following options correctly identify the mechanism behind this incident and an effective defense? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: The underlying mechanism relies on sending spoofed gratuitous ARP frames to corrupt local MAC-to-IP translation tables.; Configuring Dynamic ARP Inspection (DAI) on Layer 2 switchports will validate ARP packets against trusted DHCP bindings.

Answer

The attack mechanism involves spoofing gratuitous ARP frames to alter host MAC-to-IP tables, and the effective defense is implementing Dynamic ARP Inspection (DAI) on access switch ports.
Unsolicited ARP replies linking a gateway IP to an attacker's MAC address indicate ARP poisoning. Spoofed gratuitous ARP frames corrupt local ARP tables to intercept network traffic. Implementing Dynamic ARP Inspection (DAI) on Layer 2 switches mitigates this vector by validating ARP responses against the DHCP snooping table.

Step-by-Step Solution

1
Analyze the packet capture anomaly
Unsolicited ARP replies binding the default gateway IP to an unauthorized MAC address indicate local Layer 2 ARP poisoning.
Address Resolution Protocol (ARP) translates Layer 3 IP addresses to Layer 2 MAC addresses without built-in authentication.
2
Identify the specific attack vector mechanism
Spoofed gratuitous ARP messages overwrite neighbor ARP cache entries across the broadcast domain.
Hosts accept incoming unsolicited ARP responses and update their translation tables dynamically.
3
Select the appropriate mitigation control
Dynamic ARP Inspection (DAI) intercept and drop invalid ARP replies on untrusted switch ports.
DAI cross-references incoming ARP requests and responses against the valid IP-to-MAC mappings in the DHCP snooping database.

Key Concept

Address Resolution Protocol (ARP) Poisoning and Dynamic ARP Inspection (DAI)
Question 343Question

A network administrator investigating wireless network instability observes that corporate laptops are repeatedly disconnected from the primary access point after receiving spoofed 802.11 management frames. Immediately following these disconnections, several client devices automatically connect to a nearby unauthorized access point broadcasting the same Service Set Identifier (SSID). Which of the following attack types is primary driver behind this network disruption?

Show answer & explanation

Answer: Wireless deauthentication attack

Answer

The correct attack vector is a wireless deauthentication attack.
The correct answer identifies a wireless deauthentication attack. In legacy 802.11 standards, management frames such as deauthentication requests are unencrypted and unauthenticated. Attackers exploit this vulnerability by spoofing the MAC address of the legitimate AP and transmitting deauth frames to force client disassociation, often driving clients onto an Evil Twin AP.

Step-by-Step Solution

1
Analyze the observed anomaly and frame types in the incident description.
The attack explicitly utilizes spoofed 802.11 wireless management frames to disassociate connected clients from their legitimate access point.
Identifying the specific protocol layer and frame type isolates Layer 2 wireless disassociation mechanisms.
2
Correlate the client behavior following the disconnections.
Clients attempt to re-establish connectivity and connect to an unauthorized rogue AP broadcasting the same SSID (an Evil Twin setup).
Deauthentication attacks are typically executed to force endpoints to re-authenticate, driving them onto rogue access points controlled by an attacker.

Key Concept

Wireless Deauthentication and Rogue AP (Evil Twin) Attack Vectors
Estimated Time:1m 15s
Question 344Question

A network security engineer is configuring a central remote-access VPN gateway to integrate with an external authentication server. According to the organization's compliance policy, the selected authentication protocol must encrypt the entire packet payload during transit and strictly separate authentication from authorization duties. Which protocol should the engineer implement on the VPN gateway?

Show answer & explanation

Answer: TACACS+

Answer

TACACS+ is the correct choice because it encrypts the full payload of access control packets and decouples authentication, authorization, and accounting functions.
TACACS+ provides full payload encryption (encrypting all data following the standard header) and strictly separates authentication, authorization, and accounting into distinct, independent processes.

Step-by-Step Solution

1
Analyze the policy requirements stated in the scenario.
The requirements mandate full payload encryption and explicit separation of authentication from authorization.
Security characteristics of AAA protocols differ fundamentally in how traffic is encrypted and how access control functions are structured.
2
Compare RADIUS and TACACS+ encryption mechanisms.
RADIUS encrypts only the password attribute in Access-Request packets, whereas TACACS+ encrypts the entire packet body following the header.
Full payload encryption prevents unauthorized eavesdropping of usernames, accounting logs, and authorization command sets.
3
Evaluate the architectural decoupling of AAA functions.
TACACS+ maintains independent operational components for authentication, authorization, and accounting over TCP port 49.
Decoupling AAA functions allows fine-grained command-by-command authorization policies independent of user authentication.

Key Concept

RADIUS vs TACACS+ Protocol Architecture and Security Features
Question 345Question

A financial firm is upgrading the wireless infrastructure across its corporate headquarters to comply with updated security policies. The engineering team must implement a wireless architecture that enforces centralized, individual user authentication against an existing RADIUS server and utilizes 256-bit Galois/Counter Mode Protocol (GCMP-256) for data confidentiality. Which wireless security deployment combination directly fulfills these mandate requirements?

Show answer & explanation

Answer: WPA3-Enterprise utilizing 802.1X authentication with GCMP-256 encryption

Answer

WPA3-Enterprise utilizing 802.1X authentication with GCMP-256 encryption
The correct deployment is WPA3-Enterprise utilizing 802.1X authentication with GCMP-256 encryption. WPA3-Enterprise integrates with 802.1X/EAP frameworks to pass user credentials to an enterprise RADIUS server for centralized, per-user authentication. Combined with GCMP-256, it ensures strong cryptographic protection and confidentiality for all client traffic.

Step-by-Step Solution

1
Identify the authentication requirement
Individual credential validation against a RADIUS server requires 802.1X authentication (Enterprise mode), ruling out Personal/PSK modes.
Enterprise modes decouple authentication by leveraging an Extensible Authentication Protocol (EAP) framework connected to a backend RADIUS server.
2
Identify the encryption cipher requirement
Selecting WPA3-Enterprise with GCMP-256 satisfies the modern 256-bit encryption mandate.
GCMP-256 provides authenticated cryptographic protection and is a standard option in modern WPA3 enterprise implementations.

Key Concept

Wireless Security Standards and Encryption Protocols
Question 346Question

A network security administrator is configuring an IPsec Remote Access VPN using IKEv1 Main Mode. Place the four primary operational steps of the IKE handshake process into the correct chronological sequence from start to finish.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequential order for establishing an IPsec VPN tunnel using IKEv1 is: 1) Negotiate ISAKMP policy parameters, 2) Perform Diffie-Hellman key exchange and nonce generation, 3) Authenticate peer identities to complete Phase 1, and 4) Execute Quick Mode to establish Phase 2 IPsec SAs for data traffic.
The correct order follows the standard 6-message Phase 1 exchange followed by Phase 2 Quick Mode: initial ISAKMP policy proposal matching, Diffie-Hellman public key and nonce exchange, encrypted identity authentication, and finally Quick Mode negotiation of IPsec SAs for data transport.

Step-by-Step Solution

1
Identify the initial policy negotiation phase.
The client and gateway negotiate policy proposals covering symmetric cipher, hashing algorithm, authentication type, and DH group.
End-points must agree on baseline cryptographic algorithms before initiating key exchange.
2
Identify the shared secret key generation phase.
Endpoints exchange Diffie-Hellman values and nonces to compute shared symmetric keys (SKEYID).
Diffie-Hellman key exchange provides the secret key material required to secure subsequent authentication messages.
3
Identify the peer authentication phase.
End-device identities (IP addresses or certificates) are transmitted and validated, completing Phase 1 (ISAKMP SA).
Main Mode protects identity privacy by encrypting authentication payloads with the DH-derived keys.
4
Identify the Phase 2 IPsec SA establishment phase.
Quick Mode negotiates payload protection parameters (such as ESP encryption and hash mechanisms) to build the data-plane IPsec tunnel.
Phase 2 utilizes the secure ISAKMP SA management tunnel established in Phase 1 to safely negotiate data-plane protection.

Key Concept

IPsec IKEv1 Phase 1 and Phase 2 Handshake Sequence
Question 347Question

A network security engineer configures a stateful firewall to protect an internal database server residing at 10.0.1.5010.0.1.50 that receives connections from an application server at 10.0.2.1010.0.2.10 over TCP port 14331433. An inbound rule permitting traffic from source IP 10.0.2.1010.0.2.10 to destination IP 10.0.1.5010.0.1.50 on TCP port 14331433 is explicitly applied. Although no explicit outbound rule is created to permit return traffic from the database server back to the application server's ephemeral ports, communication functions normally without packet drops. Which of the following best explains why the return traffic is successfully permitted through the firewall?

Show answer & explanation

Answer: Stateful firewalls maintain a state table tracking active TCP connections and dynamically permit return traffic matching established sessions.

Answer

Stateful firewalls maintain a state table tracking active TCP connections and dynamically permit return traffic matching established sessions.
Stateful firewalls maintain an internal connection state table. When an initial connection request matches an inbound rule, the firewall records the source IP, destination IP, source port, and destination port. Any subsequent return traffic belonging to that active session is automatically permitted without requiring a separate explicit outbound rule.

Step-by-Step Solution

1
Analyze the operational difference between stateful firewalls and stateless Access Control Lists (ACLs).
Stateless filters inspect each packet in isolation and require explicit rules for both request and response traffic directions, whereas stateful firewalls track connection context.
Understanding state tracking is essential to determine how return packets are evaluated.
2
Evaluate how stateful firewalls process return packets for established TCP streams.
When the initial inbound packet matching the permitted rule (TCP 14331433) passes through, the firewall adds an entry to its state table. Return packets matching this active session are automatically validated and permitted.
Dynamic session tracking eliminates the need for separate outbound rules for response traffic on ephemeral ports.

Key Concept

Stateful Packet Inspection vs. Stateless Filtering
Estimated Time:1m 15s
Question 348Question

A network administrator is designing a wireless infrastructure upgrade to implement WPA3-Enterprise across corporate headquarters. The design must ensure individual user accountability, centralized authentication, and protection against management frame spoofing attacks. Which of the following technical specifications and security mechanisms are required for this deployment? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: 802.1X authentication integrated with a RADIUS server for centralized credential validation; Mandatory Protected Management Frames (PMF / 802.11w) enabled for all connecting clients

Answer

The required components for a WPA3-Enterprise implementation are 802.1X authentication integrated with a RADIUS server and mandatory Protected Management Frames (PMF).
WPA3-Enterprise requires 802.1X RADIUS authentication to manage distinct user credentials centrally and mandates Protected Management Frames (PMF) to safeguard network management frames against tampering and disassociation attacks.

Step-by-Step Solution

1
Identify the authentication requirements of WPA3-Enterprise
Recognize that WPA3-Enterprise mandates 802.1X EAP-based authentication backed by a RADIUS server rather than Pre-Shared Keys.
Enterprise wireless security requires centralized account control and unique per-user authentication.
2
Identify mandatory WPA3 baseline security features
Determine that Protected Management Frames (PMF / 802.11w) are required across all WPA3 implementations.
PMF protects unicast and multicast management frames against spoofing and denial-of-service attacks.
3
Differentiate WPA3-Personal from WPA3-Enterprise features
Exclude SAE key exchange and legacy TKIP ciphers.
SAE is exclusive to WPA3-Personal PSK replacements, and TKIP is explicitly forbidden in modern WPA3 specifications.

Key Concept

WPA3-Enterprise Architecture and Baseline Security Requirements
Question 349Question

A network administrator is securing a newly deployed edge router at a remote facility. The organization requires central monitoring of system health over public networks while enforcing payload encryption and cryptographic user authentication. Additionally, legacy unencrypted protocols must be removed. Which configuration strategy best satisfies these hardening requirements for network monitoring?

Show answer & explanation

Answer: Configure SNMPv3 with authPriv mode using strong passphrase hashing and AES payload encryption.

Answer

Configure SNMPv3 with authPriv mode using strong passphrase hashing and AES payload encryption.
Configuring SNMPv3 with the authPriv security level ensures both user authentication (using SHA or MD5) and payload encryption (using AES or DES). This guarantees that network monitoring statistics and system management traffic cannot be eavesdropped on or modified in transit across untrusted network links.

Step-by-Step Solution

1
Identify security requirements for management monitoring
Requirements specify central health monitoring over untrusted networks with authentication and payload encryption.
Cleartext protocols expose administrative credentials and telemetry to eavesdropping.
2
Evaluate protocol features for SNMP versions
SNMPv1 and SNMPv2c use cleartext community strings (no encryption). SNMPv3 supports noAuthNoPriv, authNoPriv, and authPriv.
Only SNMPv3 authPriv provides both message integrity/authentication and data privacy (encryption).
3
Select the hardening control matching all criteria
SNMPv3 in authPriv mode meets both cryptographic authentication and AES payload encryption mandates.
This establishes robust management plane hardening for monitoring over public or shared network infrastructure.

Key Concept

SNMP Security Modes and Management Plane Hardening
Estimated Time:1m 0s
Question 350Question

A network technician is provisioning an isolated Wi-Fi network for temporary contractors at a branch office. The organization requires protection against offline dictionary attacks and passive eavesdropping, but explicitly wants to avoid the operational complexity of deploying an 802.1X RADIUS server or digital certificates. Which wireless security standard and authentication mechanism best meets these specifications?

Show answer & explanation

Answer: WPA3-Personal utilizing Simultaneous Authentication of Equals (SAE)

Answer

WPA3-Personal utilizing Simultaneous Authentication of Equals (SAE)
WPA3-Personal implements Simultaneous Authentication of Equals (SAE) in place of the static pre-shared key four-way handshake used in WPA2. SAE leverages a Dragonfly key exchange that mitigates offline dictionary attacks even when simple passphrases are used and delivers forward secrecy for session traffic without requiring 802.1X RADIUS servers.

Step-by-Step Solution

1
Analyze the technical requirements and constraints presented in the scenario.
The requirements specify mitigating offline dictionary attacks without implementing an 802.1X RADIUS infrastructure or client certificate management.
Identifying constraints eliminates both legacy vulnerable standards and complex enterprise authentication modes.
2
Evaluate wireless authentication protocols against the requirement set.
WPA3-Personal replaces the legacy WPA2 pre-shared key handshake with Simultaneous Authentication of Equals (SAE).
SAE incorporates the Dragonfly key exchange algorithm, which resists dictionary attacks and guarantees forward secrecy while retaining passphrase convenience.

Key Concept

WPA3-Personal SAE vs. WPA3-Enterprise RADIUS authentication mechanisms
Estimated Time:1m 15s
Question 351Question

A network administrator is configuring an extended IPv4 Access Control List (ACL) on a gateway router to secure a DMZ web server at IP address 10.80.1.20/2410.80.1.20/24. The security policy requires allowing inbound web traffic (HTTPS) from any external source, and allowing remote administration (SSH) strictly from the internal network management subnet (172.16.50.0/24172.16.50.0/24). All other inbound traffic must be blocked. Which TWO of the following extended ACL statements must be included to satisfy these requirements? (Select TWO)

Select all that apply

Show answer & explanation

Answer: permit tcp any host 10.80.1.20 eq 443; permit tcp 172.16.50.0 0.0.0.255 host 10.80.1.20 eq 22

Answer

The correct ACL entries are 'permit tcp any host 10.80.1.20 eq 443' and 'permit tcp 172.16.50.0 0.0.0.255 host 10.80.1.20 eq 22'.
The security policy requires allowing HTTPS (TCP port 443) from any source to the DMZ server IP (10.80.1.2010.80.1.20), which is fulfilled by 'permit tcp any host 10.80.1.20 eq 443'. Additionally, allowing SSH (TCP port 22) strictly from the management subnet (172.16.50.0/24172.16.50.0/24) requires matching the source subnet with wildcard mask 0.0.0.255 directed to the server on destination port 22, fulfilled by 'permit tcp 172.16.50.0 0.0.0.255 host 10.80.1.20 eq 22'.

Step-by-Step Solution

1
Identify transport protocols and destination ports for the required services.
HTTPS uses TCP port 443, and SSH uses TCP port 22.
Extended IPv4 ACLs inspect Layer 4 protocol headers to filter traffic by port number.
2
Construct the rule for public HTTPS traffic.
'permit tcp any host 10.80.1.20 eq 443'
The source is 'any', the destination host is 10.80.1.2010.80.1.20, and the destination port is 443.
3
Construct the rule for restricted SSH administration traffic.
'permit tcp 172.16.50.0 0.0.0.255 host 10.80.1.20 eq 22'
The source network 172.16.50.0/24172.16.50.0/24 requires wildcard mask 0.0.0.255, targeting destination host 10.80.1.2010.80.1.20 on port 22.

Key Concept

Extended Access Control List (ACL) Syntax and Layer 4 Port Filtering
Question 352Question

A network security administrator is analyzing recorded security incident logs and anomaly reports across enterprise infrastructure. Match each observed security incident on the left to the corresponding network attack vector on the right.

Click a left item, then click its matching right item

Items

An influx of unexpected ICMP Echo Reply packets hits a targeted host after broadcast ICMP Echo Requests were sent with a spoofed source address.
Traffic intended for an organization's public IP range is redirected through an unauthorized internet service provider via malicious route advertisements.
An attacker on an access port sends traffic encapsulated with nested 802.1Q headers to traverse a native VLAN trunk and reach a restricted segment.
Encrypted web communications between a client and a server are transparently intercepted and converted to plain text HTTP sessions.

Matches

Show answer & explanation

Answer

Incident 1 matches Smurf Attack, Incident 2 matches BGP Hijacking, Incident 3 matches Double-Tagging VLAN Hopping, and Incident 4 matches SSL Stripping.
Each attack vector directly aligns with its specific network manifestation: broadcast ICMP amplification reflects as a Smurf attack; forged routing prefix announcements constitute BGP hijacking; dual 802.1Q tag exploitation corresponds to double-tagging VLAN hopping; and interception that downgrades TLS/HTTPS to cleartext HTTP represents SSL stripping.

Step-by-Step Solution

1
Analyze incident 1 involving ICMP Echo Reply flooding following a broadcast request.
Identify this mechanism as a Smurf attack.
Smurf attacks leverage ICMP broadcast amplification with a spoofed victim source address.
2
Analyze incident 2 involving malicious route announcements rerouting IP prefix traffic.
Identify this mechanism as Border Gateway Protocol (BGP) Hijacking.
Manipulating prefix announcements in BGP forces internet traffic through unauthorized Autonomous Systems.
3
Analyze incident 3 involving nested 802.1Q VLAN headers.
Identify this mechanism as Double-Tagging VLAN Hopping.
The outer tag matches the native VLAN and is removed by the switch, allowing the frame with the second tag to reach another VLAN without routing.
4
Analyze incident 4 involving the downgrade of encrypted HTTPS traffic to unencrypted HTTP.
Identify this mechanism as SSL Stripping.
SSL stripping forces secure web connections down to unencrypted HTTP so an on-path adversary can read data.

Key Concept

Common Network Attack Types and Vectors
Question 353Question

Following an internal security assessment, a system administrator is tasked with securing the administrative management plane of a core network switch against unauthorized remote access and brute-force authentication attacks. Which of the following hardening practices should the administrator implement on the device? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Configure virtual terminal (VTY) lines to accept SSH connections exclusively while disabling cleartext Telnet access.; Implement local user login lockout thresholds and rate limiting for consecutive failed administrative authentication attempts.

Answer

The administrator should restrict VTY lines exclusively to encrypted SSH transport and establish local user account lockout thresholds to limit failed authentication attempts.
Hardening the administrative management plane requires restricting virtual terminal (VTY) access to SSH to guarantee encrypted communication, alongside configuring local account lockout thresholds to block brute-force authentication attacks.

Step-by-Step Solution

1
Evaluate remote management protocol security controls.
Identify that Telnet broadcasts credentials in plaintext and must be replaced by SSH on VTY lines.
Cryptographic protection of management sessions prevents network interception and packet sniffing of administrative credentials.
2
Identify protection mechanisms against automated authentication attacks.
Implement account lockout controls and attempt limits for administrative logins.
Lockout thresholds stop brute-force script attempts from trying large numbers of password combinations sequentially.

Key Concept

Device Management Plane Hardening Best Practices
Question 354Question

Match each wireless security standard to its corresponding cryptographic cipher and integrity mechanism.

Click a left item, then click its matching right item

Items

WEP (Wired Equivalent Privacy)
WPA (Wi-Fi Protected Access)
WPA2 (Wi-Fi Protected Access 2)
WPA3 (Wi-Fi Protected Access 3)

Matches

Show answer & explanation

Answer

WEP corresponds to RC4 stream cipher with 24-bit IV and CRC-32. WPA corresponds to TKIP with the Michael algorithm. WPA2 corresponds to AES with CCMP. WPA3 corresponds to SAE key exchange with AES-GCMP encryption.
Each wireless security standard aligns with a specific generation of encryption ciphers and integrity mechanisms: WEP uses basic RC4 with a 24-bit IV, WPA introduced TKIP with the Michael MIC, WPA2 mandated AES-CCMP, and WPA3 upgraded authentication to SAE with modern AES-GCMP ciphers.

Step-by-Step Solution

1
Identify legacy and deprecated legacy standards (WEP and WPA)
WEP uses RC4 with a 24-bit IV and CRC-32. WPA upgrades this by introducing TKIP and the Michael algorithm.
WEP was vulnerable due to small static keying flaws, leading WPA to implement per-packet keying via TKIP while retaining hardware compatibility.
2
Identify modern standards (WPA2 and WPA3)
WPA2 standardizes AES-CCMP encryption. WPA3 advances authentication with SAE and utilizes AES-GCMP.
WPA2 required dedicated hardware upgrades for AES-CCMP processing, while WPA3 enforces protected management frames, SAE, and stronger GCMP ciphers.

Key Concept

Evolution of Wireless Encryption Protocols and Integrity Controls
Question 355Question

A network administrator configures a new extended IPv4 Access Control List (ACL) on a router interface serving an R&D subnet (172.16.30.0/24172.16.30.0/24). The administrator creates specific rules to permit hosts on this subnet to access an internal file server (10.5.5.1010.5.5.10) via FTP. Immediately after applying the ACL inbound on the interface, users on the 172.16.30.0/24172.16.30.0/24 subnet report that they have lost connectivity to the internet and all other company subnets. What is the primary cause of this widespread connectivity failure?

Show answer & explanation

Answer: The ACL ends with an invisible implicit deny statement that drops all traffic not explicitly permitted by preceding rules.

Answer

The connectivity failure occurs because Access Control Lists contain an unwritten implicit deny rule at the end of the rule set, which blocks all traffic that is not explicitly allowed by a preceding permit statement.
Network Access Control Lists operate using sequential evaluation and end with an unwritten implicit 'deny all' rule. When the administrator created permit statements solely for FTP traffic, any packet not matching those specific criteria fell through to the end of the ACL and was dropped by the implicit deny rule.

Step-by-Step Solution

1
Analyze the reported symptom following the ACL application.
Specific traffic (FTP to 10.5.5.1010.5.5.10) was permitted, but all other outbound traffic from subnet 172.16.30.0/24172.16.30.0/24 was blocked.
This indicates that unlisted traffic flows are being filtered out by the router interface.
2
Evaluate standard ACL execution mechanics.
ACLs process packets top-down until a match is found. If no explicit rule matches a packet, it reaches the end of the list where an implicit 'deny all' rule executes.
Because only FTP traffic was permitted, all internet and inter-subnet traffic hit the implicit deny rule and was dropped.
3
Determine the necessary configuration fix.
Add explicit permit rules or an 'permit ip any any' statement at the end of the list if general traffic should be allowed.
Explicit permit statements override the default implicit deny behavior for designated traffic.

Key Concept

ACL Implicit Deny Behavior
Question 356Question

During a routine network security audit, an administrator notices that internal workstation traffic destined for external web services is being redirected to an unauthorized local host on the same switch segment. An inspection of local workstation cache tables reveals that the default gateway's IP address has been mapped to the attacker's network interface card address, allowing the attacker to inspect and modify traffic prior to forwarding it. Which of the following attack types has occurred?

Show answer & explanation

Answer: ARP Poisoning

Answer

ARP Poisoning
ARP Poisoning occurs when an attacker broadcasts spoofed Address Resolution Protocol messages across a local area network. This links the attacker's MAC address with the IP address of a legitimate target, such as the default gateway, enabling the attacker to intercept, inspect, or modify local network traffic.

Step-by-Step Solution

1
Analyze the observed anomaly in the scenario
Workstation traffic destined for the default gateway is being routed to an unauthorized host on the local ethernet segment.
The attacker has modified local workstation address resolution tables.
2
Evaluate the underlying mechanism causing the address cache corruption
The mapping between the default gateway's IP address and a physical MAC address was altered in the local ARP table.
Address Resolution Protocol (ARP) translates Layer 3 IP addresses into Layer 2 MAC addresses on local subnets.
3
Identify the specific network attack matching this mechanism
The attack is ARP Poisoning (or ARP Spoofing).
Unsolicited or malicious ARP responses overwrite legitimate MAC address bindings in the target host's ARP cache.

Key Concept

Address Resolution Protocol (ARP) Poisoning and Man-in-the-Middle (MitM) Attacks
Estimated Time:1m 15s
Question 357Question

A network administrator is deploying a wireless network for standalone IoT inventory scanners in a logistics warehouse. Corporate security policies mandate protection against offline dictionary attacks through Simultaneous Authentication of Equals (SAE) without relying on a centralized RADIUS authentication server. Which wireless security standard should the administrator implement to fulfill these requirements?

Show answer & explanation

Answer: WPA3-Personal

Answer

WPA3-Personal is the correct selection because it utilizes Simultaneous Authentication of Equals (SAE) to secure passphrase-based authentication against offline dictionary attacks without requiring a centralized RADIUS server.
WPA3-Personal incorporates Simultaneous Authentication of Equals (SAE), based on the Dragonfly handshake protocol. SAE secures passphrase authentication against offline dictionary attacks and ensures forward secrecy without requiring the deployment of an 802.1X RADIUS server.

Step-by-Step Solution

1
Analyze the scenario constraints.
The requirements mandate protection against offline dictionary attacks using SAE and explicitly prohibit requiring a central RADIUS server.
Evaluating requirements isolates the exact wireless security framework needed.
2
Differentiate between WPA3 operation modes.
SAE is the defining feature of WPA3-Personal, whereas WPA3-Enterprise mandates 802.1X authentication.
WPA3-Personal replaces legacy PSK with SAE for robust standalone authentication.

Key Concept

WPA3-Personal and Simultaneous Authentication of Equals (SAE)
Estimated Time:1m 0s
Question 358Question

During a post-incident audit at a branch office, a security analyst discovers that an unauthorized device successfully connected to the internal network by plugging into an unassigned Ethernet wall port. Further inspection reveals that all unassigned switchports remain administrative enabled in their default state on VLAN 1. Which of the following actions represents the best practice to harden these unassigned ports against unauthorized physical network access?

Show answer & explanation

Answer: Administratively shut down all unused interfaces and reassign them to an unroutable blackhole VLAN.

Answer

Administratively shut down all unused interfaces and reassign them to an unroutable blackhole VLAN.
The standard device hardening procedure for securing unused physical switch ports requires administratively disabling the interfaces (shutdown command) and moving them out of the default VLAN 1 into an unused, unroutable VLAN (often called a dummy or blackhole VLAN). This double layer of security prevents unauthorized devices from obtaining an IP address or communicating on the internal network.

Step-by-Step Solution

1
Identify vulnerabilities on unassigned access ports
Unused interfaces left in an active state on default VLAN 1 allow immediate Layer 2 access to any plugged-in device.
Default configurations on enterprise switches leave ports in an active state assigned to VLAN 1 unless explicitly hardened.
2
Apply interface state hardening
Disabling unused interfaces (shutdown) prevents physical link establishment.
Administratively shutting down inactive ports stops network traffic negotiation at Layer 1 and Layer 2.
3
Isolate port assignment to a blackhole VLAN
Assigning unused interfaces to an isolated VLAN with no Layer 3 routing interface ensures zero network access even if a port is accidentally re-enabled.
Segregating unused ports from active management and production VLANs ensures defense-in-depth.

Key Concept

Switch Port Security & Baseline Interface Hardening
Estimated Time:1m 15s
Question 359Question

A network administrator needs to apply an inbound extended Access Control List (ACL) on a router interface connected to the user subnet 192.168.1.0/24192.168.1.0/24 to secure access to a server located at 10.0.0.1010.0.0.10. The policy must enforce the following requirements:

1. Allow administrator workstation 192.168.1.50192.168.1.50 SSH access (TCP port 22) to the server.
2. Block host 192.168.1.100192.168.1.100 from accessing HTTP services (TCP port 80) on the server.
3. Allow all other hosts on the 192.168.1.0/24192.168.1.0/24 subnet to access HTTP services (TCP port 80) on the server.
4. Block all other unauthorized IP traffic.

Arrange the given ACL statements in the correct top-to-bottom processing sequence to enforce this security policy without rule shadowing.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct order from top to bottom is: 1) permit tcp host 192.168.1.50 host 10.0.0.10 eq 22, 2) deny tcp host 192.168.1.100 host 10.0.0.10 eq 80, 3) permit tcp 192.168.1.0 0.0.0.255 host 10.0.0.10 eq 80, and 4) deny ip any any.
ACL entries are evaluated sequentially in top-down order. Specific entries must always precede broader entries to prevent rule shadowing. Placing the specific host SSH permit rule first ensures administrative access is evaluated immediately. Placing the specific host HTTP deny rule second ensures that host 192.168.1.100 is blocked before reaching the general subnet HTTP permit rule. The general subnet HTTP permit rule follows third to allow remaining subnet hosts, while the catch-all deny rule is placed at the end.

Step-by-Step Solution

1
Identify specific host exceptions that require dedicated access.
Place the specific host permit rule for SSH (`permit tcp host 192.168.1.50 host 10.0.0.10 eq 22`) near the top so administrative access is granted before any general filtering.
ACLs process rules sequentially from top to bottom, stopping at the first matching entry.
2
Place specific host deny rules above broader subnet permit rules.
Place `deny tcp host 192.168.1.100 host 10.0.0.10 eq 80` before the subnet-wide HTTP permit statement.
If the broader subnet permit rule were placed first, traffic from 192.168.1.100 would match the permit rule and be allowed, shadowing the specific deny rule.
3
Add the general subnet permit rule for remaining web traffic.
Position `permit tcp 192.168.1.0 0.0.0.255 host 10.0.0.10 eq 80` directly after the specific host deny rule.
This allows all non-restricted hosts on the 192.168.1.0/24 subnet to reach HTTP port 80.
4
Append the explicit/implicit catch-all deny statement.
Place `deny ip any any` at the bottom of the list.
All traffic not explicitly allowed by earlier rules must be dropped.

Key Concept

Access Control List Top-to-Bottom Sequential Evaluation and Rule Shadowing
Question 360Question

An enterprise security Operations center detects two distinct anomalous network activities. First, an external threat actor transmits forged requests to public time servers, causing heavy response traffic to flood an internal web server's public IP interface. Second, an internal rogue host answers local broadcast Link-Local Multicast Name Resolution (LLMNR) queries to redirect workstations to a fake login portal. Which of the following attack types and vectors are present in this scenario? (Select TWO)

Select all that apply

Show answer & explanation

Answer: Reflected Denial of Service using NTP amplification; On-path credential harvesting via LLMNR poisoning

Answer

The scenario describes a Reflected Denial of Service using NTP amplification and On-path credential harvesting via LLMNR poisoning.
The correct choices accurately identify both attack vectors: NTP amplification leverages public time servers with spoofed source IPs to reflect amplified traffic onto a victim, while LLMNR poisoning intercepts local broadcast hostname queries to establish an on-path position for credential harvesting.

Step-by-Step Solution

1
Analyze the first anomaly involving external time servers.
Identified NTP amplification attack vector where spoofed requests cause public servers to generate large volumes of traffic targeting the victim.
Forging source IPs to generate disproportionate response traffic from third-party servers defines a reflected amplification DDoS attack.
2
Analyze the second anomaly involving local multicast name resolution requests.
Identified LLMNR poisoning attack vector where malicious hosts answer local name requests to intercept user credentials.
Spoofing broadcast/multicast local name resolution responses positions the attacker as an on-path entity to collect user authentication details.

Key Concept

Identifying Common Network Attack Vectors and Amplification Techniques
PreviousPage 18 / 22Next
Network Security Practice Questions — CompTIA Network+ — Page 18 | Examkin