Courseiva

CCNA Network Security Questions

75 of 98 questions · Page 1/2 · Network Security · Answers revealed

1
MCQeasy

Which attack technique involves an attacker intercepting and potentially modifying the communication between two parties without their knowledge?

A.Man-in-the-middle
B.Replay attack
C.Smurf attack
D.Phishing
AnswerA

A Man-in-the-Middle (MitM) attack positions the attacker transparently between two communicating parties, allowing them to intercept, read, and potentially modify all data exchanged without either party being aware. The attacker effectively spoofs the identities of both endpoints, making each believe they are communicating directly with the other. This enables real-time manipulation of the communication stream, making it a highly effective method for data theft or session hijacking.

Why this answer

A man-in-the-middle (MITM) attack is correct because it specifically involves an attacker secretly intercepting and potentially altering communications between two parties who believe they are directly communicating with each other. This is achieved by the attacker inserting themselves into the communication path, often by ARP spoofing, DNS spoofing, or rogue access points, allowing them to capture, decrypt, or modify packets in transit.

Exam trap

The trap here is that candidates often confuse a replay attack with a MITM attack because both involve capturing traffic, but a replay attack only retransmits captured data without real-time interception or modification of the ongoing session.

Why the other options are wrong

B

A replay attack involves capturing and retransmitting valid data, but it does not inherently intercept or modify live communication between two parties; the attacker typically does not position themselves in the middle of the ongoing session.

D

Phishing is a social engineering attack that tricks users into revealing sensitive information, not an attack that intercepts or modifies communication between two parties.

2
MCQmedium

A network security analyst notices high CPU utilization on the core switch and detects a large volume of ARP replies from a single IP address that claims to be the default gateway for all local subnets. Which type of attack is MOST likely occurring?

A.ARP poisoning
B.DHCP starvation
C.MAC flooding
D.DNS amplification
AnswerA

ARP poisoning involves an attacker sending unsolicited, forged ARP reply messages to devices on a local network. These replies falsely associate the attacker's MAC address with the IP address of a legitimate network device, such as the default gateway or another host. This manipulation redirects network traffic through the attacker's machine, enabling man-in-the-middle attacks, data interception, or session hijacking. The high volume of replies and claiming to be the gateway are strong indicators of this attack.

Why this answer

The attack described is ARP poisoning (also known as ARP spoofing), where an attacker sends forged ARP replies to associate their MAC address with the IP address of the default gateway. This causes all traffic destined for other subnets to be redirected to the attacker's machine, leading to high CPU utilization on the switch as it processes the flood of ARP packets and forwards the intercepted traffic.

Exam trap

The N10-009 exam often tests the distinction between ARP poisoning and MAC flooding by describing symptoms like 'high CPU utilization' and 'large volume of ARP replies,' which can mislead candidates into thinking MAC flooding is the answer because it also causes high CPU, but the key clue is the specific use of ARP replies targeting the default gateway IP.

Why the other options are wrong

B

DHCP starvation floods a DHCP server with fake requests to exhaust its IP address pool, causing denial of service. It does not involve ARP replies or claiming to be a default gateway.

C

MAC flooding overwhelms a switch's CAM table with fake MAC addresses, causing it to fail open and flood traffic to all ports. The question describes ARP replies from a single IP claiming to be the default gateway, which is characteristic of ARP poisoning, not MAC flooding.

D

DNS amplification attacks involve sending small queries with a spoofed source IP to open DNS servers, which then send large responses to the victim, causing bandwidth exhaustion. This does not involve ARP replies or high CPU on a switch.

3
MCQmedium

A network administrator is experiencing issues where unauthorized devices are offering IP addresses to clients, causing connectivity problems. Which security feature should be enabled on switches to prevent this?

A.Dynamic ARP Inspection (DAI)
B.IP Source Guard
C.DHCP Snooping
D.Port Security
AnswerC

DHCP Snooping allows only DHCP messages from trusted DHCP servers, blocking unauthorized DHCP offers.

Why this answer

C is correct because DHCP Snooping is a security feature that filters untrusted DHCP messages on a per-port basis, preventing unauthorized DHCP servers from offering IP addresses to clients. By configuring trusted ports (typically uplinks to legitimate DHCP servers) and untrusted ports (access ports), the switch drops DHCPOFFER and DHCPACK messages received on untrusted ports, directly stopping rogue DHCP server attacks.

Exam trap

The trap here is that candidates confuse the roles of DHCP Snooping, DAI, and IP Source Guard, often selecting DAI because they associate ARP with address assignment, but only DHCP Snooping directly filters unauthorized DHCP server messages.

Why the other options are wrong

A

Dynamic ARP Inspection (DAI) validates ARP packets to prevent man-in-the-middle attacks, but it does not prevent unauthorized DHCP servers from offering IP addresses. The issue described is rogue DHCP servers, which DHCP Snooping addresses.

B

IP Source Guard prevents IP spoofing by filtering traffic based on DHCP snooping bindings, but it does not prevent unauthorized DHCP servers from offering IP addresses.

D

Port Security limits the number of MAC addresses per port but does not prevent unauthorized DHCP servers from offering IP addresses.

4
MCQhard

A security analyst is investigating a potential breach. A network device shows logs indicating that it received packets with a source IP address belonging to the internal network range on its external (internet-facing) interface. This is a classic indication of which type of attack?

A.Denial-of-service (DoS) attack
B.IP spoofing
C.Man-in-the-middle (MITM) attack
D.ARP poisoning
AnswerB

IP spoofing involves an attacker deliberately altering the source IP address in packet headers to impersonate a legitimate or trusted host, often an internal network device. When a security analyst observes packets originating from an internal IP address on an external network interface (like a WAN port), it unequivocally indicates that an external entity is forging these source IPs. This technique is frequently used to bypass ingress filtering rules or to obscure the attacker's true identity, making it a definitive sign of a potential breach.

Why this answer

B is correct because receiving packets with a source IP address from the internal network range on an external (internet-facing) interface is a classic sign of IP spoofing. In IP spoofing, an attacker forges the source IP address in packet headers to impersonate a trusted internal host, often to bypass access controls or launch reflection attacks. This violates the expected behavior of ingress filtering, where external interfaces should never see internal source addresses.

Exam trap

The trap here is that candidates may confuse IP spoofing with a DoS attack because spoofing is often used in DDoS amplification, but the question's specific clue—internal source IP on an external interface—directly points to spoofing, not the volumetric nature of a DoS.

Why the other options are wrong

A

The logs show packets with an internal source IP arriving on the external interface, which is a sign of IP spoofing, not a DoS attack. DoS attacks focus on overwhelming resources, not on forging source addresses.

C

A man-in-the-middle attack involves intercepting and potentially altering communications between two parties, but the specific indicator of packets with an internal source IP on an external interface points to IP spoofing, not MITM.

D

ARP poisoning operates at Layer 2 and involves corrupting ARP caches within a local network segment, not receiving packets with internal source IPs on an external interface.

5
MCQhard

A security engineer notices that the company's web server is receiving an overwhelming number of HTTP GET requests from thousands of different IP addresses around the world. The requests are for legitimate pages and are well-formed. The server is becoming unresponsive. Which type of attack is most likely occurring?

A.ARP spoofing
B.SYN flood
C.DDoS attack
D.DNS amplification
AnswerC

A Distributed Denial-of-Service (DDoS) attack is precisely characterized by an overwhelming volume of traffic, often comprising legitimate-looking requests, originating from numerous compromised or controlled sources. These requests are designed to consume the target web server's resources, such as CPU, memory, network bandwidth, or connection capacity, rendering it unavailable to legitimate users. The distributed nature makes it challenging to block by simply filtering a single source IP address, as the attack traffic appears to come from many different, seemingly valid clients.

Why this answer

The attack involves a high volume of legitimate HTTP GET requests from many distinct IP addresses, overwhelming the web server. This is a classic distributed denial-of-service (DDoS) attack, where multiple compromised systems (a botnet) coordinate to flood the target with traffic, exhausting server resources and causing unresponsiveness. The key indicators are the distributed source IPs and the use of application-layer (HTTP) requests, which distinguishes it from network-layer floods.

Exam trap

The trap here is that candidates confuse a SYN flood (a TCP-level attack) with a DDoS attack that uses complete HTTP requests, but the question explicitly states the requests are 'well-formed' and for 'legitimate pages,' ruling out incomplete handshake attacks.

Why the other options are wrong

A

ARP spoofing operates at Layer 2 and targets local network communications, not a web server receiving HTTP requests from thousands of global IP addresses.

B

A SYN flood targets the TCP handshake by sending many SYN packets without completing the handshake, but this question specifies HTTP GET requests, which are application-layer and fully formed, not incomplete TCP connections.

D

DNS amplification attacks use reflection off open DNS resolvers to flood a target with amplified responses, not direct HTTP GET requests from many IPs. The question describes well-formed HTTP requests from diverse IPs, which is a classic DDoS, not a DNS-based attack.

6
MCQeasy

A company wants to ensure that only authorized employee computers can connect to the wired network. Each computer must be authenticated before it is granted access to the network. Which technology is designed to provide this port-based authentication?

A.802.1X
B.WPA2
C.MAC filtering
D.VPN
AnswerA

802.1X is a port-based Network Access Control (NAC) protocol that provides authentication for devices attempting to connect to a network, whether wired or wireless. It acts as a gatekeeper, requiring devices to successfully authenticate with an authentication server (like RADIUS) using credentials or certificates *before* granting any network access. This ensures only authorized employee computers can connect by validating their identity at the network edge.

Why this answer

802.1X is the IEEE standard for port-based Network Access Control (NAC). It uses the Extensible Authentication Protocol (EAP) over LAN (EAPoL) to authenticate a device at the switch port before granting full network access. Only after successful authentication does the switch open the port, ensuring that unauthorized computers cannot connect.

Exam trap

CompTIA often tests the distinction between authentication (802.1X) and access control methods (MAC filtering), where candidates mistakenly choose MAC filtering because they think it 'authenticates' devices, but it only identifies by MAC address without verifying identity or credentials.

Why the other options are wrong

B

WPA2 is a wireless security protocol for Wi-Fi networks, not for port-based authentication on wired networks. The question specifically asks about wired network access control.

C

MAC filtering authenticates based on MAC address, not user or device credentials, and does not provide port-based authentication as defined by 802.1X. It can be bypassed by MAC spoofing.

D

VPN provides encrypted remote access over an untrusted network, not port-based authentication for wired LAN access. It does not control access at the switch port level.

7
MCQhard

A security analyst is investigating a potential data exfiltration. The analyst notices that a server is sending DNS queries to an external IP address on TCP port 53, and the DNS responses are unusually large. The server is not a DNS server. Which technique is most likely being used?

A.DNS amplification attack
B.DNS tunneling
C.DNS zone transfer
D.DNS cache poisoning
AnswerB

DNS tunneling leverages the DNS protocol to exfiltrate data or establish command-and-control channels by encoding arbitrary data within DNS queries and responses. Attackers often embed data in subdomain names of queries or within resource record fields of responses, making it appear as legitimate DNS traffic. Indicators include unusually large DNS response sizes, frequent queries to uncommon domains, or the unexpected use of TCP port 53 for data transfer, which is typically reserved for zone transfers.

Why this answer

DNS tunneling encodes non-DNS data (e.g., exfiltrated files) within DNS queries and responses, often using TCP port 53 to bypass firewalls. The unusually large responses are a hallmark of tunneled data being returned in DNS payloads, and the fact that the server is not a DNS server strongly indicates it is being used as a client for covert data transfer.

Exam trap

CompTIA often tests the distinction between DNS amplification (a DDoS attack using UDP reflection) and DNS tunneling (a covert channel using TCP or UDP for data exfiltration), and the trap here is that candidates see 'large responses' and immediately think amplification, ignoring the TCP port 53 and non-DNS server context.

Why the other options are wrong

A

A DNS amplification attack uses UDP, not TCP, and involves sending small queries that generate large responses to a victim, not to an external IP from a server. The server here is the source, not the target.

C

DNS zone transfer is used to replicate DNS databases between authoritative servers, not for data exfiltration. The scenario involves a non-DNS server sending queries to an external IP, which is characteristic of tunneling, not zone transfer.

D

DNS cache poisoning involves corrupting a DNS resolver's cache with false records, not exfiltrating data via large DNS responses. The scenario describes data exfiltration, not cache manipulation.

8
MCQhard

An organization needs to authenticate network administrators and control which commands each administrator can execute on routers and switches. The solution must support granular per-command authorization and encrypt the entire session. Which protocol is best suited for this requirement?

A.TACACS+
B.RADIUS
C.LDAP
D.Kerberos
AnswerA

TACACS+ (Terminal Access Controller Access Control System Plus) is the correct protocol for this scenario because it provides robust Authentication, Authorization, and Accounting (AAA) services specifically designed for network device administration. It encrypts the entire communication session, not just the password, and offers granular command authorization, allowing administrators to define precisely which commands a user or group can execute on a network device. This level of control is essential for security and compliance in managing critical infrastructure.

Why this answer

TACACS+ is the correct choice because it separates authentication, authorization, and accounting (AAA) functions, allowing granular per-command authorization on routers and switches. It encrypts the entire session, including the username, password, and all command traffic, unlike RADIUS which only encrypts the password. This makes TACACS+ ideal for environments requiring strict command-level control and full session encryption.

Exam trap

CompTIA often tests the distinction that RADIUS is commonly used for network access control (e.g., 802.1X) but fails for device administration because it lacks per-command authorization and full-session encryption, leading candidates to mistakenly choose RADIUS due to its familiarity.

Why the other options are wrong

B

RADIUS encrypts only the password in the authentication packet, not the entire session, and does not support per-command authorization; it is designed for network access control, not device administration.

D

Kerberos is designed for authentication and single sign-on in a trusted network, but it does not provide per-command authorization or session encryption for network device administration.

9
MCQmedium

A network security analyst notices that a switch's CPU utilization is spiking and that the switch is flooding unicast frames to all ports. The analyst suspects a MAC address table overflow attack. Which of the following security features should be configured on the switch's access ports to mitigate this type of attack?

A.BPDU guard
B.Port security
C.DHCP snooping
D.Dynamic ARP Inspection (DAI)
AnswerB

Port security is a crucial layer 2 security feature that limits the number of MAC addresses allowed to be learned on a specific switch port. By configuring a maximum MAC address limit, it directly mitigates MAC flooding attacks, which attempt to overwhelm the switch's MAC address table. If the configured limit is exceeded, the port can be set to shut down, restrict traffic, or send an alert, preventing the switch from entering a hub-like state and maintaining network integrity.

Why this answer

Port security mitigates MAC address table overflow attacks by limiting the number of MAC addresses that can be learned on an access port. When the configured limit is exceeded, the switch can take action (e.g., shutdown or restrict) to prevent an attacker from flooding the CAM table with fake source MAC addresses, which would otherwise cause the switch to fail open and flood unicast frames out all ports.

Exam trap

The trap here is that candidates often confuse port security with other Layer 2 security features like BPDU guard or DHCP snooping, but only port security directly limits the number of MAC addresses learned on a port to prevent CAM table overflow.

Why the other options are wrong

A

BPDU guard prevents bridge loops by disabling ports receiving BPDUs, but it does not protect against MAC address table overflow attacks, which are mitigated by limiting the number of MAC addresses learned per port via port security.

10
MCQhard

A security analyst needs to deploy a device that can perform deep packet inspection and block specific application-layer attacks in real time. Which of the following devices is MOST appropriate for this purpose?

A.Stateful firewall
B.Intrusion Prevention System (IPS)
C.Proxy server
D.VPN concentrator
AnswerB

An Intrusion Prevention System (IPS) is deployed inline within the network path, allowing it to perform deep packet inspection (DPI) on all passing traffic. This capability enables the IPS to analyze packet payloads and protocol behavior at the application layer, identifying and actively blocking known attack signatures, anomalous activities, and zero-day threats in real-time. It is specifically designed to mitigate sophisticated application-layer attacks that bypass traditional firewalls.

Why this answer

An Intrusion Prevention System (IPS) is designed to inspect traffic in real time, perform deep packet inspection (DPI) up to Layer 7, and automatically block malicious traffic, including application-layer attacks such as SQL injection or cross-site scripting. Unlike a passive IDS, an IPS sits inline and can drop or reset sessions based on signature or anomaly detection, making it the most appropriate device for this requirement.

Exam trap

The trap here is that candidates often confuse an IPS with a stateful firewall, assuming that stateful inspection includes deep packet inspection, but stateful firewalls only check packet headers and connection state, not application-layer payloads.

Why the other options are wrong

A

A stateful firewall tracks connection states and filters traffic based on state and port/protocol, but it does not perform deep packet inspection or block application-layer attacks in real time.

C

A proxy server primarily acts as an intermediary for client requests, often caching content or filtering URLs, but it does not perform deep packet inspection or block application-layer attacks in real time like an IPS does.

D

A VPN concentrator is designed to manage VPN tunnels and encrypt/decrypt traffic, not to perform deep packet inspection or block application-layer attacks in real time.

11
MCQeasy

A company wants to allow employees to securely access internal resources (email, file servers) when working from home over the internet. Which technology should be implemented to create an encrypted tunnel between the employee's remote computer and the corporate network?

A.VPN concentrator
B.Firewall
C.DMZ
D.Intrusion detection system (IDS)
AnswerA

A VPN concentrator is a dedicated network device or service specifically designed to terminate numerous encrypted VPN tunnels from remote clients. It authenticates users and establishes secure, encrypted connections, allowing employees to securely access internal network resources like email servers and file shares as if they were physically on the corporate LAN. This device is crucial for enabling secure remote work by ensuring data confidentiality and integrity over untrusted public networks.

Why this answer

A VPN concentrator is the correct technology because it terminates VPN tunnels from remote users, creating an encrypted tunnel (using protocols like IPsec or TLS) between the employee's remote computer and the corporate network. This ensures that all traffic to internal resources such as email and file servers is securely encapsulated and protected from interception over the internet.

Exam trap

The trap here is that candidates may confuse a firewall's ability to allow or block VPN traffic (e.g., permitting UDP 500 for IPsec) with the firewall itself being the device that terminates the VPN tunnel, but only a VPN concentrator or VPN gateway performs the actual encryption and tunnel management.

Why the other options are wrong

B

A firewall controls traffic based on rules but does not create encrypted tunnels; it lacks the encryption and encapsulation capabilities needed for secure remote access over the internet.

C

A DMZ is a network segment that exposes external-facing services to the internet while isolating the internal network, but it does not create encrypted tunnels for individual remote user access.

D

An intrusion detection system (IDS) monitors network traffic for suspicious activity but does not create encrypted tunnels or provide remote access connectivity.

12
MCQhard

A network administrator is concerned about DHCP security. To prevent rogue DHCP servers from offering incorrect IP addresses, the administrator enables DHCP snooping on the switches. Additionally, the administrator wants to prevent DHCP starvation attacks that exhaust the DHCP pool. Which feature should be enabled on the switch to specifically mitigate DHCP starvation?

A.Dynamic ARP Inspection (DAI)
B.IP Source Guard (IPSG)
C.Port Security
D.Rate limiting on DHCP packets
AnswerD

DHCP rate limiting, often configured as part of DHCP snooping on network switches, restricts the maximum number of DHCP messages (e.g., Discover, Request, Offer) that can be processed from a specific port within a given time frame. This mechanism is crucial for preventing denial-of-service attacks, such as DHCP starvation, where an attacker floods the network with requests to exhaust the legitimate DHCP server's address pool. By limiting the rate, it also effectively mitigates the impact of rogue DHCP servers attempting to respond to numerous client requests, as their excessive traffic would be dropped.

Why this answer

Rate limiting on DHCP packets (option D) is the correct feature to mitigate DHCP starvation attacks. DHCP starvation works by flooding the network with fake DHCP discover messages, each using a different MAC address, to exhaust the DHCP server's address pool. By limiting the rate at which DHCP packets are accepted from a given interface, the switch can drop excessive requests before they reach the DHCP server, preventing pool exhaustion without blocking legitimate traffic.

Exam trap

The N10-009 exam often tests the distinction between DHCP snooping features: candidates confuse DHCP snooping's role in preventing rogue servers (by filtering DHCP server messages) with the need for a separate rate-limiting mechanism to prevent starvation attacks.

Why the other options are wrong

A

Dynamic ARP Inspection (DAI) validates ARP packets to prevent ARP spoofing attacks, not DHCP starvation. DHCP starvation is mitigated by rate limiting DHCP packets to prevent an attacker from exhausting the DHCP pool.

B

IP Source Guard (IPSG) prevents IP spoofing by filtering traffic based on DHCP snooping bindings, but it does not limit the rate of DHCP packets, which is required to mitigate DHCP starvation attacks.

C

Port Security limits the number of MAC addresses per port but does not control the rate of DHCP packets, so it cannot prevent DHCP starvation attacks that exhaust the DHCP pool by flooding DHCP requests.

13
MCQmedium

A company is implementing 802.1X port-based authentication on its wired network to ensure only authorized devices can connect. Which of the following servers is required to authenticate users and devices?

A.A) RADIUS server
B.B) Syslog server
C.C) TACACS+ server
D.D) NTP server
AnswerA

Correct. RADIUS is the most common protocol for 802.1X authentication and is widely supported.

Why this answer

802.1X port-based authentication relies on the Extensible Authentication Protocol (EAP) over LAN (EAPoL) between the supplicant (device) and the authenticator (switch), which then forwards authentication requests to a central authentication server. A RADIUS server is the required backend because it validates credentials (e.g., username/password or certificates) and returns an Accept/Reject decision to the switch, enabling or disabling the port. RADIUS is the standard protocol defined in IEEE 802.1X for this purpose, supporting EAP methods like PEAP, EAP-TLS, and EAP-FAST.

Exam trap

The N10-009 exam often tests the misconception that TACACS+ can replace RADIUS in 802.1X environments, but TACACS+ encrypts the entire packet body and is designed for device administration (e.g., CLI access), not for 802.1X port-based authentication, which mandates RADIUS per the IEEE 802.1X standard.

Why the other options are wrong

C

TACACS+ is used for device administration authentication (e.g., router/switch login), not for 802.1X port-based network access control. 802.1X requires a RADIUS server to authenticate users and devices connecting to the network.

D

NTP (Network Time Protocol) servers synchronize clocks across network devices, but they do not perform authentication of users or devices. 802.1X requires a RADIUS server to validate credentials and authorize access.

14
MCQmedium

An employee plugs a personal laptop into a network jack and then the laptop is infected with malware that spreads to other devices on the network. Which security control would have most effectively prevented this scenario?

A.MAC filtering on the switch
B.802.1X authentication
C.VLAN segmentation
D.Access control lists on the router
AnswerB

802.1X authentication provides robust port-based network access control, requiring devices to successfully authenticate with an authentication server (typically RADIUS) before the switch port is activated and granted network access. This mechanism effectively prevents unauthorized personal laptops or other devices from gaining any network connectivity, even at the link layer, until proper credentials or certificates are presented and validated.

Why this answer

802.1X authentication requires devices to authenticate before gaining network access, typically via EAP (Extensible Authentication Protocol) over RADIUS. In this scenario, the employee's personal laptop would be blocked at the port level because it lacks valid credentials, preventing the malware from ever reaching the internal network and spreading to other devices.

Exam trap

The N10-009 exam often tests the misconception that MAC filtering or VLAN segmentation alone can prevent unauthorized device access, when in fact 802.1X is the only option that provides per-port authentication and dynamic VLAN assignment based on credentials.

Why the other options are wrong

A

MAC filtering only controls which devices can connect based on their MAC address, but it does not authenticate users or prevent an infected laptop from spreading malware once connected. It also does not enforce endpoint compliance.

C

VLAN segmentation separates network traffic into logical groups but does not authenticate devices; it would not prevent an unauthenticated personal laptop from connecting to the network and spreading malware.

D

Access control lists on the router control traffic between subnets but do not prevent an unauthorized device from connecting to the network jack in the first place. They cannot block the initial infection or lateral spread within the same VLAN.

15
MCQhard

A network administrator needs to ensure that only authorized devices can connect to the wired network. Each user must authenticate using their domain credentials. Which of the following should be implemented?

A.MAC filtering
B.802.1X with EAP-TLS
C.WPA2-PSK
D.Port security
AnswerB

802.1X with EAP-TLS provides user authentication using certificates, typically tied to domain credentials. It ensures that only authenticated users can gain access to the network, and it can be integrated with Active Directory.

Why this answer

802.1X with EAP-TLS is correct because it provides port-based network access control that requires each user to authenticate using their domain credentials (via a RADIUS server) before the switch port is opened for traffic. EAP-TLS uses mutual authentication with digital certificates, ensuring only authorized devices and users gain access to the wired network.

Exam trap

CompTIA often tests the distinction between port security (which is MAC-based and does not authenticate users) and 802.1X (which provides user authentication via RADIUS), leading candidates to mistakenly choose port security when the question explicitly requires domain credential authentication.

Why the other options are wrong

A

MAC filtering only checks device MAC addresses, not user credentials, so it cannot authenticate users with domain credentials.

C

WPA2-PSK is a wireless security protocol, not suitable for wired network authentication. It uses a pre-shared key rather than individual domain credentials, failing to meet the requirement for per-user authentication with domain credentials.

D

Port security limits access by MAC address, not by user authentication with domain credentials. It does not require per-user authentication via 802.1X, so it fails to meet the requirement of authenticating each user individually.

16
MCQhard

A security administrator observes that an employee's workstation is sending large amounts of data to an external IP address on TCP port 443. The workstation is not supposed to initiate outbound connections, and there is no business need for it. What is the most likely cause?

A.The workstation is part of a botnet and is communicating with a command-and-control server
B.A legitimate software update is being downloaded
C.The workstation is acting as a VPN client connecting to a corporate VPN server
D.The workstation is hosting a web server that is being accessed externally
AnswerA

A botnet infection is highly probable given the workstation's unauthorized outbound transmission of large data volumes to an unknown external IP, without any legitimate business justification. Botnets often leverage common ports like HTTPS (TCP 443) for command-and-control (C2) communication to evade detection, making the traffic appear innocuous. This activity typically involves data exfiltration, participation in DDoS attacks, or receiving further instructions from the botmaster.

Why this answer

The workstation is sending large amounts of data to an external IP on TCP port 443, which is commonly used for HTTPS traffic. Since the workstation is not authorized to initiate outbound connections and has no business need for this traffic, the most likely cause is that it has been compromised and is part of a botnet, using HTTPS to communicate with a command-and-control (C2) server to evade detection by blending in with legitimate encrypted web traffic.

Exam trap

The trap here is that candidates may assume TCP 443 always indicates legitimate HTTPS traffic, such as a software update or VPN, without considering that attackers commonly use this port to hide malicious C2 communications, especially when the workstation has no business need for outbound connections.

Why the other options are wrong

C

The workstation is not supposed to initiate outbound connections, and there is no business need for it, so acting as a VPN client would be an authorized, business-justified activity, not a security concern.

D

The workstation is sending data to an external IP on port 443, but hosting a web server would involve inbound connections, not outbound. The question states the workstation initiates outbound connections, which is opposite to a server being accessed externally.

17
MCQhard

A security administrator is configuring a wireless network to use WPA3-Enterprise. Which authentication server protocol is required for WPA3-Enterprise?

A.RADIUS
B.LDAP
C.TACACS+
D.Kerberos
AnswerA

WPA3-Enterprise leverages the 802.1X standard for robust authentication, which mandates the use of an external authentication server. RADIUS (Remote Authentication Dial-In User Service) is the industry-standard protocol for this purpose, providing centralized Authentication, Authorization, and Accounting (AAA) services. It acts as an intermediary between the wireless access point (authenticator) and the user database, verifying user credentials and assigning network access policies.

Why this answer

WPA3-Enterprise requires 802.1X/EAP authentication, which uses RADIUS as the backend authentication server protocol. RADIUS handles the exchange of EAP frames between the authenticator (access point) and the authentication server, enforcing per-user credentials and supporting the mandatory 192-bit security suite for WPA3-Enterprise. Without RADIUS, the 802.1X framework cannot operate, making it the only required protocol for this deployment.

Exam trap

The trap here is that candidates often confuse TACACS+ with RADIUS because both are AAA protocols, but TACACS+ is used for device administration (e.g., router login) while RADIUS is the only protocol that supports 802.1X/EAP for wireless network access.

Why the other options are wrong

B

WPA3-Enterprise requires an 802.1X/EAP authentication framework, which uses RADIUS as the backend authentication server protocol. LDAP is a directory access protocol, not an authentication server protocol for 802.1X.

C

WPA3-Enterprise requires 802.1X/EAP authentication, which uses RADIUS as the backend authentication server protocol. TACACS+ is a Cisco-proprietary protocol for device administration, not for wireless network authentication.

D

WPA3-Enterprise requires an 802.1X/EAP authentication framework, which uses RADIUS as the backend authentication server protocol. Kerberos is a network authentication protocol for domain environments, not for 802.1X wireless authentication.

18
MCQhard

A security engineer is configuring a firewall to protect an internal network. The requirement is that internal users can initiate connections to the internet, but external hosts should not be able to initiate connections to internal hosts unless the internal host first requested the connection. Which firewall technology should be used?

A.Stateless packet filtering
B.Stateful inspection
C.Application proxy
D.Packet filtering based on ACL only
AnswerB

Stateful inspection firewalls maintain a state table that tracks active connections, including source/destination IP addresses, port numbers, and sequence numbers. This allows them to dynamically permit return traffic for established outbound connections without needing explicit inbound rules, significantly enhancing security by only allowing legitimate responses and blocking unsolicited inbound packets. This method is highly effective for protecting internal networks by ensuring only traffic related to internal requests is allowed back in.

Why this answer

Stateful inspection (B) tracks the state of active connections by maintaining a state table that records source/destination IPs, ports, and sequence numbers. It allows return traffic for connections initiated from the internal network while blocking unsolicited inbound traffic, which directly matches the requirement that external hosts cannot initiate connections unless the internal host requested them first.

Exam trap

The N10-009 exam often tests the misconception that stateless packet filtering can handle return traffic by simply allowing inbound packets with a high source port, but without state tracking, it cannot verify that the packet actually belongs to an existing session, making stateful inspection the correct answer.

Why the other options are wrong

A

Stateless packet filtering does not track connection state, so it cannot distinguish between packets belonging to a new connection initiated by an external host versus a response to an internal request. It cannot enforce the requirement that external hosts cannot initiate connections unless the internal host first requested it.

C

An application proxy operates at Layer 7 and can inspect application data, but it does not inherently track connection state to allow return traffic for outbound requests; stateful inspection is specifically designed for that purpose.

D

Packet filtering based on ACL only cannot track connection state, so it cannot distinguish between packets belonging to a new connection initiated by an external host and those belonging to an existing connection initiated by an internal host.

19
MCQmedium

An organization uses a AAA server for network device authentication. The security team requires that all authentication traffic be fully encrypted and that authorization commands be logged per user. Which protocol is best suited for this requirement?

A.RADIUS with EAP-TLS
B.TACACS+
C.LDAP over SSL
D.Kerberos
AnswerB

TACACS+ is the correct choice for network device administration because it encrypts the entire authentication, authorization, and accounting (AAA) packet, not just the password. This robust encryption protects sensitive administrative data during transit. Furthermore, TACACS+ uniquely provides granular, per-command authorization, allowing administrators to define precisely which commands a user can execute on a network device, and logs these actions for comprehensive auditing. Its separation of AAA functions makes it highly flexible and scalable for complex network environments.

Why this answer

TACACS+ is the best choice because it encrypts the entire authentication packet (including username, password, and all other fields) and supports per-user command authorization logging. This meets the requirement for fully encrypted authentication traffic and detailed audit trails for each user's commands.

Exam trap

The trap here is that candidates often confuse RADIUS's partial encryption (password only) with full encryption, or assume LDAP over SSL can handle device AAA, but TACACS+ is the only protocol that fully encrypts all traffic and logs per-user commands for network device administration.

Why the other options are wrong

A

RADIUS with EAP-TLS encrypts only the authentication traffic (EAP within RADIUS), but the RADIUS protocol itself does not encrypt the entire session, and it does not log authorization commands per user. TACACS+ is required for full encryption and per-command logging.

C

LDAP over SSL encrypts authentication traffic but does not provide per-user command authorization logging, which is a key requirement for this question. TACACS+ is specifically designed for device administration with full encryption and command logging.

D

Kerberos does not encrypt authorization commands or log per-user commands; it is designed for single sign-on and mutual authentication, not for detailed command accounting on network devices.

20
MCQeasy

A company wants to prevent unauthorized devices from connecting to the corporate network. The policy requires that only specific MAC addresses are permitted on switch ports. Which security feature should be implemented on the switches?

A.802.1X authentication
B.MAC filtering / Port security
C.VLAN hopping prevention
D.DHCP snooping
AnswerB

Port security, often referred to as MAC filtering at the port level, is a Layer 2 security feature implemented on network switches. It enables an administrator to configure a specific switch port to allow traffic only from a predefined list of MAC addresses, or to dynamically learn a limited number of MAC addresses. If an unauthorized device with a different MAC address attempts to connect to that port, the switch can be configured to take action, such as shutting down the port, restricting traffic, or sending an alert, effectively preventing unauthorized device access.

Why this answer

MAC filtering, also known as port security, is the correct feature because it allows the switch to restrict access to a port based on the source MAC address of incoming frames. By configuring a list of allowed MAC addresses, the switch will drop traffic from any unauthorized device, directly enforcing the policy that only specific MAC addresses are permitted on switch ports.

Exam trap

The N10-009 exam often tests the distinction between MAC-based port security and 802.1X authentication, where candidates mistakenly choose 802.1X because it is a more robust access control method, but the question specifically asks for a feature that permits only specific MAC addresses, which is exactly what port security does.

Why the other options are wrong

C

VLAN hopping prevention is a security measure to prevent traffic from jumping between VLANs, not to control which devices connect based on MAC addresses. The question specifically requires restricting unauthorized devices by MAC address, which is not addressed by VLAN hopping prevention.

D

DHCP snooping is a security feature that filters untrusted DHCP messages and builds a DHCP snooping binding table, but it does not restrict which MAC addresses can connect to a switch port; it prevents rogue DHCP servers, not unauthorized devices.

21
MCQhard

A company wants to prevent unauthorized users from plugging into network jacks and gaining access to the wired network. Which of the following security mechanisms should be implemented at the switch level?

A.MAC address filtering
B.Port security
C.802.1X
D.Dynamic ARP Inspection
AnswerC

802.1X is a port-based network access control protocol. It prevents unauthorized access by requiring authentication (typically using EAP over LAN, EAPOL) from a connecting device or user before the switch port is fully activated and allowed to pass traffic. This authentication is validated against an external authentication server, like RADIUS, ensuring only authorized entities gain network access. If authentication fails, the port remains in an unauthorized state, effectively blocking network connectivity.

Why this answer

802.1X is a port-based Network Access Control (NAC) standard (IEEE 802.1X) that authenticates devices before granting full network access. When a device plugs into a switch port, the switch (as the authenticator) blocks all traffic except EAPoL (Extensible Authentication Protocol over LAN) frames until the device successfully authenticates via a RADIUS server. This prevents unauthorized users from gaining network access simply by connecting to a live jack.

Exam trap

The trap here is that candidates confuse port security (which only limits MAC addresses) with 802.1X (which provides actual authentication), leading them to pick port security because it sounds like it 'secures the port' at the switch level.

Why the other options are wrong

A

MAC address filtering only restricts traffic based on MAC addresses, but it does not authenticate users or prevent unauthorized devices from connecting if the MAC address is spoofed or allowed. It also does not enforce per-user authentication at the switch port level.

B

Port security limits the number of MAC addresses per port but does not authenticate users; it can be bypassed by spoofing allowed MAC addresses, so it does not prevent unauthorized users from plugging in.

D

Dynamic ARP Inspection (DAI) is used to prevent ARP spoofing attacks by validating ARP packets against a trusted database, not to control physical access to network jacks. It does not authenticate users or devices attempting to connect to the switch.

22
MCQhard

A network security administrator is configuring authentication for network devices and wants to use a protocol that supports separate encryption of the entire authentication packet. Which of the following protocols is designed to encrypt the entire authentication packet and is commonly used with AAA services?

A.RADIUS
B.TACACS+
C.LDAP
D.Kerberos
AnswerB

TACACS+ is a robust AAA protocol that significantly enhances security by encrypting the entire payload of the authentication packet. Unlike other protocols that might only encrypt specific fields, TACACS+ ensures that all authentication-related data, including usernames, command parameters, and other attributes, remains confidential during transit. This comprehensive encryption provides superior protection against eavesdropping and unauthorized access to sensitive network administration information, making it ideal for securing device management.

Why this answer

TACACS+ is the correct answer because it encrypts the entire authentication packet, including the username, password, and all other fields, using a shared secret key. This full-packet encryption is a key differentiator from RADIUS, which only encrypts the password field. TACACS+ is commonly used with AAA services to provide separate authentication, authorization, and accounting processes.

Exam trap

The N10-009 exam often tests the misconception that RADIUS encrypts the entire packet because it uses a shared secret, but in reality, only the password is encrypted, whereas TACACS+ encrypts the full payload.

Why the other options are wrong

A

RADIUS encrypts only the password in the authentication packet, not the entire packet, so it does not meet the requirement for encrypting the entire authentication packet.

C

LDAP is a directory access protocol, not an authentication protocol designed to encrypt entire authentication packets for AAA services. It does not natively encrypt the entire authentication packet; it typically relies on external encryption like TLS.

23
Drag & Dropmedium

Drag and drop the steps for a disaster recovery procedure after a server failure into the correct order.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4

Why this order

The correct disaster recovery order begins with assessing the damage to understand the scope of the failure. Next, rebuild the server (hardware/OS), then restore data from backup. After restoration, apply any necessary patches to bring the system up to date, and finally test functionality to confirm successful recovery.

This sequence ensures data integrity and minimizes downtime.

24
MCQhard

A security analyst is reviewing DHCP server logs and notices that a single MAC address is sending an extremely high number of DHCP discover packets. The DHCP server is responding, but the client never sends a DHCP request. Which type of attack is most likely occurring?

A.A) DHCP starvation
B.B) ARP poisoning
C.C) MAC flooding
D.D) DNS spoofing
AnswerA

DHCP starvation is an attack where a malicious actor rapidly sends numerous DHCP Discover messages to the DHCP server, each containing a spoofed MAC address. This malicious activity aims to exhaust the server's entire pool of available IP addresses, preventing legitimate clients from obtaining network configurations. As a result, new clients attempting to join the network will be unable to receive an IP address, effectively denying them service and causing a network outage for new connections.

Why this answer

A DHCP starvation attack works by flooding the DHCP server with DHCPDISCOVER packets from spoofed MAC addresses, exhausting the server's IP address pool. In this scenario, a single MAC address sending excessive DHCPDISCOVER packets without completing the DORA handshake (no DHCPREQUEST) is a classic indicator of a starvation attack, as the attacker aims to consume all available leases and cause a denial of service for legitimate clients.

Exam trap

The trap here is confusing DHCP starvation with MAC flooding, as both involve 'flooding' and MAC addresses, but MAC flooding targets switch CAM tables at Layer 2, while DHCP starvation targets the DHCP server at Layer 7 (application layer) using DHCP protocol messages.

Why the other options are wrong

B

ARP poisoning involves sending fake ARP replies to associate a malicious MAC address with a legitimate IP, not flooding DHCP discover packets without completing the handshake. The described behavior is classic DHCP starvation.

C

MAC flooding targets switch MAC tables to force flooding of frames, not DHCP servers. The described behavior—high DHCP Discover packets without Request—is characteristic of DHCP starvation, not MAC flooding.

D

DNS spoofing involves corrupting DNS responses to redirect traffic, not exhausting DHCP IP address pools. The described behavior of high DHCP discover packets without requests is characteristic of a DHCP starvation attack.

25
MCQmedium

A company's wireless network currently uses WPA2-PSK with a shared passphrase. A security audit identifies that the passphrase is weak and shared among all employees. Which of the following would provide the MOST secure wireless access while addressing the shared passphrase issue?

A.Implement WPA2-Enterprise with 802.1X
B.Upgrade to WPA3-Personal with a strong passphrase
C.Disable SSID broadcast
D.Enable MAC address filtering
AnswerA

Implementing WPA2-Enterprise with 802.1X is the most robust solution for a corporate environment. This method leverages a centralized authentication server, typically RADIUS, to authenticate individual users or devices using unique credentials, rather than a single shared key. It provides dynamic, per-user encryption keys and strong access control, significantly mitigating the risks associated with a compromised shared passphrase by ensuring individual accountability and secure key distribution.

Why this answer

WPA2-Enterprise with 802.1X eliminates the shared passphrase by using a RADIUS server to authenticate each user individually, typically via EAP methods such as PEAP or EAP-TLS. This provides per-user credentials (e.g., username/password or certificates), so compromising one user's credentials does not expose the entire network. It also supports dynamic per-session encryption keys, making it far more secure than any shared-passphrase solution.

Exam trap

The trap here is that candidates often assume upgrading to WPA3-Personal (with SAE) is sufficient, but the question specifically requires addressing the 'shared passphrase' issue, which only per-user authentication (802.1X) can solve.

Why the other options are wrong

B

WPA3-Personal still uses a shared passphrase, which does not address the security audit's finding that the passphrase is shared among all employees. The goal is to eliminate the shared passphrase, not just strengthen it.

C

Disabling SSID broadcast only hides the network name from beacon frames, but the weak shared passphrase remains unchanged, so it does not address the core security issue of shared credentials.

D

MAC address filtering does not address the shared passphrase issue; it only restricts access based on device MAC addresses, which can be spoofed and does not improve authentication security.

26
MCQmedium

A company wants to allow inbound HTTPS traffic to a web server located in the DMZ from the Internet. The firewall has three interfaces: Inside (corporate network), Outside (Internet), and DMZ (web server). Which of the following firewall rules is required?

A.Allow traffic from Outside to DMZ on port 443
B.Allow traffic from DMZ to Outside on port 443
C.Allow traffic from Inside to DMZ on port 443
D.Allow traffic from Outside to Inside on port 443
AnswerA

This firewall rule explicitly permits inbound connections originating from the "Outside" network (representing the public internet) to destination IP addresses within the "DMZ" (Demilitarized Zone). By specifying port 443, the rule exclusively allows HTTPS traffic, which is the standard secure protocol for web communication. This directly fulfills the requirement to allow secure web access to a server hosted in the DMZ from external users.

Why this answer

The correct rule is to allow traffic from the Outside (Internet) interface to the DMZ interface on TCP port 443 (HTTPS). This permits inbound web requests to reach the web server while keeping the corporate Inside network isolated. The firewall must explicitly permit this traffic because the default implicit deny rule would otherwise block all inbound connections from the Outside zone.

Exam trap

The trap here is that candidates often confuse the direction of the traffic flow, mistakenly thinking the rule should allow traffic from the DMZ to the Outside (Option B) because they focus on the server sending responses, rather than the client initiating the connection.

Why the other options are wrong

B

The question asks for a rule to allow inbound HTTPS traffic from the Internet to the web server in the DMZ. Option B allows traffic from DMZ to Outside, which is outbound, not inbound, and does not permit the initial connection from the Internet.

C

The question specifies inbound HTTPS traffic from the Internet to a web server in the DMZ, so the rule must allow traffic from Outside to DMZ, not from Inside to DMZ.

D

The question specifies the web server is in the DMZ, not the Inside network. Allowing traffic from Outside to Inside on port 443 would bypass the DMZ and expose the internal corporate network to inbound internet traffic, violating security best practices.

27
MCQmedium

A security administrator discovers that an attacker has intercepted data between two legitimate hosts by redirecting traffic through a rogue device. Which type of attack is this?

A.ARP poisoning
B.DNS poisoning
C.Man-in-the-middle
D.Replay attack
AnswerC

A Man-in-the-Middle (MITM) attack occurs when an attacker secretly intercepts and potentially alters the communication between two parties who believe they are directly communicating with each other. The attacker positions themselves in the data path, effectively becoming an intermediary that can eavesdrop on, capture, or even manipulate the data in real-time without either legitimate party being aware of the compromise. This direct interception of data between two hosts perfectly matches the scenario described.

Why this answer

This is a classic man-in-the-middle (MITM) attack, where the attacker intercepts and potentially alters communication between two legitimate hosts by inserting a rogue device into the data path. The key characteristic is the redirection of traffic through the attacker's device, which allows them to capture, inspect, or modify packets in transit.

Exam trap

CompTIA often tests the distinction between the attack type (MITM) and the technique used to achieve it (ARP poisoning), leading candidates to choose the method rather than the broader category.

Why the other options are wrong

A

ARP poisoning is a technique used to associate an attacker's MAC address with the IP address of a legitimate host, enabling traffic interception. However, the question describes redirecting traffic through a rogue device, which is the definition of a man-in-the-middle attack, not specifically ARP poisoning.

B

DNS poisoning involves corrupting DNS records to redirect traffic to malicious sites, not intercepting traffic between two hosts via a rogue device.

D

A replay attack involves capturing and retransmitting valid data to produce an unauthorized effect, but it does not inherently involve redirecting traffic through a rogue device; the question describes traffic redirection, which is characteristic of a man-in-the-middle attack.

28
MCQmedium

A network administrator notices that several workstations on the network are receiving IP addresses from an unknown source, causing intermittent connectivity issues. The DHCP server is located in the server room and is the only authorized DHCP server. Which security feature should be implemented on the access switches to prevent rogue DHCP servers from distributing IP addresses?

A.DHCP Snooping
B.Dynamic ARP Inspection
C.IP Source Guard
D.Port Security
AnswerA

DHCP Snooping is a crucial Layer 2 security feature implemented on network switches to prevent unauthorized DHCP servers from distributing IP addresses and configurations. It operates by classifying switch ports as either trusted (where legitimate DHCP servers are connected) or untrusted. The switch then filters DHCP server messages, specifically DHCPOFFER and DHCPACK, on untrusted ports, dropping any that originate from there, thereby ensuring clients only receive valid IP configurations from authorized sources.

Why this answer

DHCP Snooping is the correct security feature because it filters untrusted DHCP messages on access switches. By configuring ports connected to end-user workstations as untrusted, the switch drops DHCP server responses (OFFER, ACK) received on those ports, preventing rogue DHCP servers from distributing IP addresses. This ensures only the authorized DHCP server in the server room can provide IP configurations.

Exam trap

The N10-009 exam often tests the distinction between DHCP Snooping and Dynamic ARP Inspection, where candidates mistakenly choose DAI because they confuse DHCP spoofing with ARP spoofing, but DHCP Snooping is the specific mechanism to block rogue DHCP servers.

Why the other options are wrong

B

Dynamic ARP Inspection (DAI) validates ARP packets to prevent ARP spoofing, not DHCP server unauthorized distribution. The question specifically asks about rogue DHCP servers, which DHCP Snooping addresses by filtering DHCP messages on untrusted ports.

C

IP Source Guard is used to prevent IP spoofing by filtering traffic based on the DHCP snooping binding table, but it does not directly prevent rogue DHCP servers from distributing IP addresses. The question specifically asks for a feature to block unauthorized DHCP servers, which is DHCP Snooping.

D

Port Security limits the number of MAC addresses per port but does not inspect DHCP messages or block rogue DHCP servers. It cannot prevent unauthorized DHCP offers from being forwarded.

29
MCQhard

A company wants to implement network access control that requires users to authenticate before gaining access to the network. The NAC solution uses a policy that checks for antivirus updates and OS patches. Which component enforces the policy?

A.Supplicant
B.Authenticator
C.Authentication server
D.Policy server
AnswerB

The authenticator (e.g., a switch) enforces the policy by controlling the port state based on the authentication result.

Why this answer

The Authenticator (typically a switch or wireless access point) is the component that enforces the NAC policy by controlling access to the network port or SSID. It receives the authentication result from the Authentication Server and applies the policy (e.g., placing the endpoint in a quarantine VLAN if antivirus or OS patch checks fail). This enforcement is defined in IEEE 802.1X, where the Authenticator acts as the gatekeeper between the Supplicant and the network.

Exam trap

The trap here is that candidates often confuse the Authentication Server (which makes the decision) with the Authenticator (which enforces the decision), especially when the question emphasizes 'policy checks' like antivirus updates, leading them to incorrectly select the server.

Why the other options are wrong

A

The supplicant is the client software that requests access, not the component that enforces the policy. Enforcement is done by the authenticator (e.g., switch or wireless controller) which applies the policy after authentication.

C

The authentication server (e.g., RADIUS) validates credentials and checks policy compliance but does not enforce the policy by controlling network access; enforcement is done by the authenticator (e.g., switch or wireless controller) that applies the result.

D

The policy server defines and stores policies but does not enforce them; enforcement is done by the authenticator (e.g., switch or wireless controller) that applies the policy to the endpoint.

30
MCQhard

A security analyst is investigating a user's complaint that their wireless connection keeps disconnecting. The analyst uses a wireless scanning tool and discovers two access points broadcasting the same SSID 'CorpNet' with different BSSIDs. One is the legitimate company AP on channel 1, and the other is on channel 11 with a strong signal and security set to 'Open'. Which of the following attacks is most likely occurring?

A.War driving
B.Rogue access point
C.Evil twin
D.Bluesnarfing
AnswerC

An evil twin attack involves an attacker setting up a malicious access point (AP) that mimics a legitimate Wi-Fi network's Service Set Identifier (SSID). This imposter AP often broadcasts with a stronger signal or open security to entice users to connect, allowing the attacker to intercept network traffic, harvest credentials, or inject malware. The scenario's description of two APs with the same SSID, one strong and open, perfectly matches this deceptive impersonation technique.

Why this answer

The presence of two access points broadcasting the same SSID 'CorpNet' with different BSSIDs, where the second AP is on channel 11 with a strong signal and security set to 'Open', is characteristic of an evil twin attack. The attacker sets up a fraudulent AP with the same SSID as the legitimate network but without encryption, tricking users into connecting to it and exposing their credentials or traffic. This differs from a rogue AP, which typically mimics the corporate network but may not necessarily use an open security setting or a different channel to lure victims.

Exam trap

The N10-009 exam often tests the distinction between a rogue AP (an unauthorized device plugged into the wired network) and an evil twin (a standalone malicious AP that mimics the SSID without being connected to the corporate infrastructure), so candidates must remember that the key differentiator is the open security and different channel used to lure clients away from the legitimate AP.

Why the other options are wrong

A

War driving is the act of searching for Wi-Fi wireless networks by a person in a moving vehicle, using a portable device. It does not involve setting up a fake access point to intercept connections, which is what the scenario describes.

B

A rogue access point is an unauthorized AP connected to the network, but the question describes an AP broadcasting the same SSID with an open security setting, which is characteristic of an evil twin attack, not a rogue AP.

D

Bluesnarfing is an attack against Bluetooth devices, not Wi-Fi networks. The question describes a wireless disconnection issue involving two access points with the same SSID, which is a Wi-Fi attack scenario.

31
MCQhard

A company wants to ensure that only authorized users can access the internal network by requiring both a password and a one-time code from a mobile app. This is an example of:

A.Two-factor authentication
B.Single sign-on
C.Biometric authentication
D.Multifactor authentication with three factors
AnswerA

Two-factor authentication (2FA) requires a user to present two distinct types of authentication factors to verify their identity. Typically, this involves something the user knows, like a password or PIN, combined with something the user possesses, such as a one-time code generated by a hardware token or sent to a mobile device. This combination significantly enhances security by making it much harder for unauthorized individuals to gain access, even if one factor is compromised, aligning with the need for a password and a code.

Why this answer

Two-factor authentication (2FA) requires exactly two distinct authentication factors from different categories: something you know (password) and something you have (one-time code from a mobile app). This matches the scenario precisely, as the password is a knowledge factor and the mobile app-generated code is a possession factor, satisfying the definition of 2FA.

Exam trap

CompTIA often tests the distinction between two-factor authentication and multifactor authentication, where candidates mistakenly think that using two different types of the same factor (e.g., two passwords) counts as 2FA, but the key is that the factors must come from different categories (knowledge, possession, inherence).

Why the other options are wrong

B

Single sign-on (SSO) allows a user to log in once and access multiple systems without re-entering credentials, but it does not inherently require a one-time code from a mobile app. The question describes two distinct authentication factors (password and one-time code), which is two-factor authentication, not SSO.

C

The question describes a password plus a one-time code from a mobile app, which are two different factors (something you know and something you have), not biometrics.

D

The scenario uses only two factors (password and one-time code), so it is two-factor authentication, not three-factor. Multifactor authentication with three factors would require three distinct categories, such as password, token, and biometric.

32
MCQmedium

A company wants to ensure that only authorized devices that comply with security policies (such as updated antivirus and OS patches) are allowed to connect to the internal network. Both wired and wireless connections are used. Which of the following security solutions would best enforce this requirement?

A.VPN
B.Network Access Control (NAC)
C.Access control list (ACL)
D.Intrusion prevention system (IPS)
AnswerB

Network Access Control (NAC) is specifically designed to ensure that only authorized and compliant devices can connect to a network. It performs pre-admission checks, assessing an endpoint's security posture—such as antivirus status, patch levels, and presence of specific software—before granting access. Non-compliant devices can be quarantined, remediated, or denied access entirely, making it ideal for enforcing security policies at the point of connection.

Why this answer

Network Access Control (NAC) is the correct solution because it enforces security policies by inspecting the health and compliance of devices—such as checking for updated antivirus definitions and OS patches—before granting access to the network. NAC can operate on both wired (e.g., 802.1X) and wireless (e.g., WPA2-Enterprise with RADIUS) connections, blocking or quarantining non-compliant devices. This matches the requirement to ensure only authorized, policy-compliant devices connect.

Exam trap

The trap here is that candidates often confuse NAC with VPN or ACL, thinking VPN provides endpoint security or ACLs can enforce policy compliance, but NAC is the only solution that performs dynamic, policy-based admission control based on device health and authorization.

Why the other options are wrong

A

VPN creates encrypted tunnels for remote access but does not enforce endpoint compliance checks (e.g., antivirus status, OS patches) before granting network access. It only secures data in transit, not device authorization.

C

ACLs filter traffic based on IP addresses or ports but cannot assess device compliance (e.g., antivirus status, OS patches) before granting network access.

D

An IPS is designed to detect and block malicious traffic, not to enforce device compliance or control network access based on security posture.

33
MCQeasy

A network administrator wants to ensure that only a specific laptop can connect to a particular switch port. The laptop's MAC address is known. Which security feature should be configured?

A.802.1X
B.Port security
C.DHCP snooping
D.BPDU guard
AnswerB

Port security is a Layer 2 control mechanism implemented on network switches. It enables an administrator to statically configure or dynamically learn specific MAC addresses that are permitted to transmit traffic on a given switch port. By limiting the number of allowed MAC addresses, or by specifying a single static MAC address, port security ensures that only the intended device, such as a particular laptop, can connect and communicate through that port, effectively preventing unauthorized devices from gaining network access.

Why this answer

Port security is the correct feature because it allows the administrator to statically configure the allowed MAC address on a specific switch port. Once configured, the switch will only forward traffic from that MAC address, dropping frames from any other source MAC. This directly fulfills the requirement to restrict access to a single known laptop.

Exam trap

The N10-009 exam often tests the distinction between port security (which controls MAC-level access on a single port) and 802.1X (which controls network access via authentication), leading candidates to mistakenly choose 802.1X because they associate it with 'security' and 'laptop access' without understanding the specific requirement of a static MAC binding.

Why the other options are wrong

A

802.1X is a network access control method that authenticates users or devices via an authentication server (e.g., RADIUS), but it does not restrict a specific switch port to a single known MAC address without additional configuration. The question explicitly asks for a feature that ensures only a specific laptop (by MAC address) can connect to a particular port, which is the function of port security, not 802.1X.

D

BPDU guard is used to protect against bridge loops by disabling ports that receive BPDUs, not to restrict access based on MAC address.

34
MCQmedium

A company wants to enforce network access control such that only authenticated users can connect to the wired network. The authentication server will use RADIUS. Which IEEE standard should be implemented?

A.802.11i
B.802.1X
C.802.3af
D.802.1Q
AnswerB

802.1X provides robust port-based authentication for both wired and wireless networks, acting as a critical component for Network Access Control (NAC). It leverages an authenticator (like a switch or access point) to control network access based on successful authentication by an external server, typically RADIUS. This standard ensures that only authenticated and authorized devices or users can connect to the network, preventing unauthorized access at the network edge.

Why this answer

802.1X is the IEEE standard for port-based network access control (PNAC). It provides a framework for authenticating devices before granting access to a wired or wireless LAN, using an authentication server such as RADIUS. This directly meets the requirement to enforce network access control so that only authenticated users can connect to the wired network.

Exam trap

The trap here is that 802.11i sounds security-related and is often confused with 802.1X because both involve authentication, but 802.11i is strictly for wireless encryption (WPA2) and does not control port-based access on wired networks.

Why the other options are wrong

A

802.11i is a security standard for wireless networks (WPA2), not for wired network access control. The question specifies a wired network, making 802.1X the correct choice for port-based authentication.

C

802.3af is the Power over Ethernet (PoE) standard, which defines how power is delivered over Ethernet cabling. It does not provide network access control or authentication, so it is irrelevant to enforcing NAC with RADIUS.

35
MCQmedium

A security analyst notices a large number of incoming TCP packets to a server with the FIN, PSH, and URG flags set. This pattern is characteristic of which type of network scan?

A.SYN scan
B.Xmas tree scan
C.Null scan
D.ACK scan
AnswerB

An Xmas tree scan is specifically characterized by setting the FIN (finish), PSH (push), and URG (urgent) flags simultaneously within a TCP packet. When a security analyst observes a high volume of incoming TCP packets with this particular flag combination, it is a definitive indicator of an Xmas tree scan in progress. This method attempts to elicit different responses from open versus closed ports, often bypassing simpler stateful firewalls due to its non-standard flag configuration, making it a stealthy reconnaissance technique.

Why this answer

An Xmas tree scan sends TCP packets with the FIN, PSH, and URG flags set (the packet 'lights up' like a Christmas tree). This is a stealth scan technique used to probe open or closed ports based on RFC 793 behavior: closed ports should respond with an RST packet, while open ports may ignore the packet (or respond differently depending on the OS). The pattern described—FIN, PSH, and URG all set—is the definitive signature of an Xmas tree scan.

Exam trap

CompTIA often tests the distinction between Xmas tree, Null, and SYN scans by focusing on the specific flag combinations, so the trap here is confusing the FIN/PSH/URG set (Xmas tree) with a Null scan (no flags) or a SYN scan (only SYN).

Why the other options are wrong

A

A SYN scan sends packets with only the SYN flag set, not the FIN, PSH, and URG flags. The described pattern of FIN, PSH, and URG flags is characteristic of an Xmas tree scan.

C

A null scan sends packets with no flags set (all flags off), whereas the question describes packets with FIN, PSH, and URG flags set, which is characteristic of an Xmas tree scan.

D

ACK scan sends packets with only the ACK flag set, not FIN, PSH, and URG. The question describes a scan with multiple flags set, which is characteristic of an Xmas tree scan.

36
MCQmedium

A network security analyst notices that the firewall is logging traffic on the external interface that has a source IP address of 10.0.1.5, which is within the internal network range. This is most likely the result of which type of attack?

A.DNS poisoning
B.IP spoofing
C.ARP poisoning
D.VLAN hopping
AnswerB

IP spoofing is the act of creating Internet Protocol (IP) packets with a forged source IP address, making the packet appear to originate from a different host than its actual sender. A firewall logging "IP spoofing" indicates it has detected incoming packets with source IP addresses that do not align with the expected network topology or routing rules, such as an external packet claiming an internal source IP. This technique is often used to bypass network access controls, launch denial-of-service attacks, or hide the attacker's identity.

Why this answer

The firewall is logging traffic on its external interface with a source IP address from the internal RFC 1918 range (10.0.1.5). This indicates the source IP has been forged, because private IP addresses should never appear as source addresses on a public-facing interface. This is the classic signature of an IP spoofing attack, where the attacker modifies the source IP in the packet header to impersonate an internal host.

Exam trap

The trap here is that candidates confuse IP spoofing with ARP poisoning, because both involve address impersonation, but ARP poisoning is a Layer 2 attack confined to the local subnet, whereas IP spoofing can originate from anywhere on the Internet and is visible on the external interface.

Why the other options are wrong

A

DNS poisoning involves corrupting DNS resolution data to redirect traffic, not generating traffic with an internal source IP on an external interface.

D

VLAN hopping attacks involve gaining access to traffic on other VLANs, typically by exploiting trunking protocols or double-tagging. The scenario describes a source IP address from the internal range appearing on the external interface, which is a classic sign of IP spoofing, not VLAN hopping.

37
MCQhard

A security analyst has enabled DHCP snooping on all VLANs of the company's switches to mitigate the risk of rogue DHCP servers. After implementation, the analyst discovers that clients are still receiving IP addresses from an unauthorized DHCP server. The unauthorized server is connected to a switch port that is currently configured as a trusted port. What should the analyst do to stop the rogue DHCP server from offering addresses?

A.Enable Dynamic ARP Inspection on the VLAN.
B.Change the port connecting the unauthorized server to an untrusted port.
C.Configure port security on the unauthorized server's port to limit MAC addresses.
D.Increase the rate limit on the unauthorized server's port.
AnswerB

DHCP snooping treats trusted ports as authorized sources of DHCP offers. By making the port untrusted, the switch will drop any DHCP server messages received on that port.

Why this answer

DHCP snooping operates by designating switch ports as either trusted or untrusted. Trusted ports are allowed to send DHCP server messages (OFFER, ACK), while untrusted ports are blocked from sending such messages. Since the rogue server is connected to a trusted port, it can still offer IP addresses.

Changing the port to untrusted will cause the switch to drop all DHCP server messages from that port, stopping the rogue server.

Exam trap

CompTIA often tests the misconception that DHCP snooping alone blocks all rogue servers, but the trap is that it only works if the rogue server's port is correctly classified as untrusted; candidates may forget that a trusted port bypasses all DHCP snooping filtering.

Why the other options are wrong

A

DHCP snooping already filters unauthorized DHCP servers by trusting only specific ports; Dynamic ARP Inspection (DAI) validates ARP packets, not DHCP offers, so it wouldn't stop the rogue DHCP server from assigning IP addresses.

C

Port security limits the number of MAC addresses on a port but does not prevent a rogue DHCP server from offering addresses. The issue is DHCP snooping trust, not MAC flooding.

D

Increasing the rate limit on the unauthorized server's port would allow more DHCP traffic, not block it. The issue is that the port is trusted, so DHCP snooping does not filter DHCP server messages from that port.

38
MCQhard

An attacker intercepts communication between two parties and is able to modify the data in transit without either party's knowledge. Which type of attack is this?

A.Man-in-the-middle
B.ARP spoofing
C.DNS poisoning
D.Replay attack
AnswerA

A Man-in-the-Middle (MITM) attack involves an unauthorized third party secretly relaying and potentially altering the communication between two parties who believe they are directly communicating. The attacker positions themselves logically between the endpoints, intercepting all traffic, reading its contents, and then forwarding it, often after modification, to the intended recipient. This allows the attacker to eavesdrop, inject false information, or manipulate data in real-time without detection by the legitimate participants, precisely matching the scenario described.

Why this answer

A man-in-the-middle (MITM) attack occurs when an adversary secretly intercepts and potentially alters the communication between two parties who believe they are directly communicating with each other. The attacker can modify data in transit without either party's knowledge by placing themselves in the logical or physical path of the data flow, often by exploiting weaknesses in authentication or encryption. This matches the scenario described, where the attacker both intercepts and modifies the data.

Exam trap

The N10-009 exam often tests the distinction between the attack type (MITM) and the technique used to achieve it (ARP spoofing, DNS poisoning), so candidates mistakenly select the technique rather than the overarching attack described in the scenario.

Why the other options are wrong

B

ARP spoofing is a technique used to associate an attacker's MAC address with the IP address of a legitimate device, enabling interception of traffic, but it does not inherently involve modifying data in transit. The question specifies modification of data, which is a key characteristic of a man-in-the-middle attack, not ARP spoofing alone.

C

DNS poisoning involves corrupting DNS resolver caches to redirect traffic to malicious sites, but it does not inherently allow real-time modification of data in transit between two parties.

D

A replay attack involves capturing and retransmitting valid data, but it does not allow the attacker to modify data in transit without detection. The question specifies modification, which is a key feature of man-in-the-middle attacks.

39
MCQeasy

A network administrator wants to prevent unauthorized devices from being plugged into switch ports. Only devices with specific MAC addresses should be allowed on each port. Which switch security feature should be enabled?

A.DHCP snooping
B.Dynamic ARP inspection
C.Port security
D.802.1X
AnswerC

Port security is a Layer 2 control mechanism configured on a switch port to restrict which MAC addresses are permitted to send traffic. It can be configured to allow only a specific number of MAC addresses, or even just one, to learn and communicate through that port. If an unauthorized device with a different MAC address attempts to connect, the port can be configured to shut down, restrict traffic, or simply drop packets from the unauthorized MAC, effectively preventing its use. This directly addresses the goal of preventing unauthorized devices from being plugged into a switch.

Why this answer

Port security is the correct feature because it allows the administrator to restrict which MAC addresses can communicate through a switch port. By configuring allowed MAC addresses (sticky or static), any device with an unknown MAC address attempting to send traffic will trigger a security violation (shutdown, restrict, or protect). This directly addresses the requirement to prevent unauthorized devices from being plugged into switch ports.

Exam trap

CompTIA often tests the distinction between port security (MAC-based access control) and 802.1X (authentication-based access control), leading candidates to incorrectly choose 802.1X when the question explicitly mentions 'specific MAC addresses' rather than user credentials or certificates.

Why the other options are wrong

A

DHCP snooping is a security feature that filters untrusted DHCP messages and builds a DHCP snooping binding table, but it does not restrict which devices can be plugged into switch ports based on MAC addresses.

B

Dynamic ARP inspection (DAI) validates ARP packets to prevent ARP spoofing attacks, but it does not restrict which devices can be physically plugged into switch ports based on MAC addresses.

D

802.1X is a port-based network access control protocol that authenticates users or devices before granting network access, but it does not restrict specific MAC addresses per port; it relies on authentication credentials, not a static MAC address list.

40
MCQhard

A security administrator is configuring a firewall to allow remote employees to access the company's internal web server (port 443) from the internet. The web server has an internal IP address of 10.0.0.5. The firewall has a public IP of 203.0.113.10. Which type of firewall rule should be created?

A.A) Port forwarding (DNAT) rule
B.B) Allow rule with source any, destination 10.0.0.5, port 443
C.C) Access control list on the internal interface
D.D) VPN rule to require remote access VPN
AnswerA

Port forwarding, also known as Destination Network Address Translation (DNAT), is the correct solution because it modifies the destination IP address and port of incoming network packets. When an external client sends traffic to the firewall's public IP address on a specific port, the DNAT rule translates this public address and port to the internal private IP address and port of the target server. This allows the remote employees' traffic, destined for the public IP, to be correctly routed to the internal server within the private network, making the service externally accessible.

Why this answer

A port forwarding (DNAT) rule is required because the web server uses a private RFC 1918 IP address (10.0.0.5), which is not routable on the public internet. The firewall must translate the destination IP from its public address (203.0.113.10) to the internal server's private address, allowing inbound traffic on port 443 to reach the correct internal host.

Exam trap

The trap here is that candidates often confuse a simple 'allow' rule with the necessary NAT translation, failing to realize that without DNAT, the firewall has no way to forward the packet to the private IP address of the internal server.

Why the other options are wrong

C

An access control list on the internal interface would only control traffic already inside the network, not allow inbound connections from the internet to the internal web server. The firewall must translate the public IP to the private IP, which DNAT does.

D

The question asks for a firewall rule to allow remote employees to access the internal web server from the internet. A VPN rule is not required for simple port forwarding; it would be an unnecessary complication and not the direct solution for allowing access via port 443.

41
MCQmedium

A security analyst notices that the DHCP server is responding to a large number of DHCP Discover messages from a single MAC address, but that client never sends a DHCP Request to complete the lease. This pattern repeats continuously. Which type of attack is most likely occurring?

A.ARP poisoning
B.DNS amplification
C.DHCP starvation
D.Rogue DHCP server
AnswerC

The scenario describes a classic DHCP starvation attack. The attacker floods the DHCP server with Discover messages, causing it to exhaust its address pool. Legitimate clients then cannot obtain IP addresses.

Why this answer

The described behavior—a single MAC address sending continuous DHCP Discover messages without completing the lease with a DHCP Request—is the hallmark of a DHCP starvation attack. The attacker exhausts the DHCP server's IP address pool by claiming all available leases, preventing legitimate clients from obtaining IP addresses. This attack targets the DHCP protocol's four-step DORA (Discover, Offer, Request, Acknowledge) process by never completing the handshake.

Exam trap

The trap here is that candidates confuse DHCP starvation with a rogue DHCP server attack, but the key distinction is that starvation exhausts the legitimate server's pool via incomplete handshakes, while a rogue server offers its own IPs to intercept traffic.

Why the other options are wrong

A

ARP poisoning involves manipulating ARP tables to intercept traffic, not flooding DHCP with Discover messages from a single MAC without completing the lease.

B

DNS amplification attacks exploit open DNS resolvers to flood a target with amplified traffic, not DHCP servers or MAC addresses. The question describes DHCP-specific behavior (Discover messages without Request), which is unrelated to DNS.

D

A rogue DHCP server attack involves an unauthorized server offering IP addresses, not a single MAC address repeatedly sending Discover messages without completing the lease. The described pattern of continuous Discover messages from one MAC is characteristic of DHCP starvation, not rogue server.

42
MCQeasy

A security analyst notices that the company's web server is receiving a high volume of TCP SYN packets from a single source IP address, but the server is not completing the three-way handshake. Which type of attack is most likely occurring?

A.A) SYN flood
B.B) Smurf attack
C.C) Ping of death
D.D) ARP poisoning
AnswerA

A SYN flood is a classic Denial-of-Service (DoS) attack that exploits the TCP three-way handshake. The attacker sends a large volume of TCP SYN requests with spoofed source IP addresses to a target server. The server responds with SYN-ACK packets and allocates resources for each half-open connection, awaiting a final ACK that never arrives. This eventually exhausts the server's connection table and prevents legitimate connections from being established.

Why this answer

A SYN flood attack exploits the TCP three-way handshake by sending a high volume of SYN packets from a spoofed or single source IP without completing the handshake. The server allocates resources for each half-open connection, eventually exhausting its connection table and denying service to legitimate users. This matches the scenario where the server receives many SYN packets but never completes the handshake.

Exam trap

CompTIA often tests the distinction between a SYN flood and a Smurf attack by describing a flood of packets from a single source—candidates confuse the ICMP-based Smurf attack with the TCP-based SYN flood because both involve flooding, but the protocol and mechanism are completely different.

Why the other options are wrong

B

A Smurf attack uses ICMP echo requests (pings) to a broadcast address, causing all hosts on the network to reply to a spoofed victim IP, overwhelming it with ICMP replies, not TCP SYN packets.

C

A ping of death attack involves sending oversized or malformed ICMP packets to crash a system, not a high volume of TCP SYN packets that fail to complete the three-way handshake.

D

ARP poisoning manipulates the ARP cache to intercept traffic on a local network, not to flood a web server with TCP SYN packets from a single source.

43
MCQhard

A security analyst notices that an attacker is sending crafted packets with overlapping IP fragments to a target server, causing the server to crash. Which type of attack is described?

A.Teardrop attack
B.Smurf attack
C.Ping flood
D.SYN flood
AnswerA

The Teardrop attack is a denial-of-service (DoS) attack that exploits vulnerabilities in the reassembly of fragmented IP packets. Attackers send crafted IP fragments with overlapping or oversized offset fields, causing the target system to crash or reboot when it attempts to reconstruct the malformed datagram. This manipulation of IP fragmentation logic prevents proper packet processing and disrupts network services, directly matching the description of an attacker sending crafted packets.

Why this answer

This is a Teardrop attack, which exploits a vulnerability in the IP fragmentation reassembly process. The attacker sends a series of fragmented IP packets with intentionally overlapping fragment offsets, causing the target system to miscalculate the size of the reassembled packet, leading to a buffer overflow and system crash. This attack specifically targets the IP stack's handling of fragment offset fields in the IP header.

Exam trap

CompTIA often tests the distinction between attacks that exploit protocol logic flaws (like Teardrop) versus volumetric or handshake-based attacks, so candidates may confuse Teardrop with a SYN flood because both can cause crashes, but the key difference is that Teardrop targets IP fragmentation, not TCP state exhaustion.

Why the other options are wrong

B

The Smurf attack involves sending ICMP echo requests with a spoofed source IP to a network's broadcast address, causing amplification and flooding the victim, not using overlapping IP fragments to crash a server.

C

A ping flood involves overwhelming a target with ICMP Echo Request packets, not crafted packets with overlapping IP fragments that cause a crash due to reassembly errors.

D

A SYN flood attack involves sending many TCP SYN requests to exhaust server resources, not sending crafted packets with overlapping IP fragments.

44
MCQhard

A security analyst detects a large number of DNS queries for the same domain from multiple internal hosts. The responses contain large payloads. Which type of attack is likely occurring?

A.DNS cache poisoning
B.DNS amplification
C.DNS tunneling
D.DNS zone transfer
AnswerB

DNS amplification is a type of Distributed Denial-of-Service (DDoS) attack where attackers leverage vulnerable open DNS resolvers to flood a target with an overwhelming volume of traffic. The attacker spoofs the victim's IP address as the source for small DNS queries sent to numerous open resolvers. These resolvers then send much larger DNS responses back to the spoofed victim, effectively multiplying the attack's bandwidth and overwhelming the target's network capacity.

Why this answer

DNS amplification is a type of reflection-based DDoS attack where an attacker sends a small query (e.g., ANY or DNSSEC-signed record request) with a spoofed source IP (the victim's address) to an open DNS resolver. The resolver responds with a large payload (often 50–100x larger than the query), flooding the victim's network. The scenario describes many internal hosts making queries to the same domain and receiving large responses, which matches the amplification effect from a compromised or misconfigured internal resolver.

Exam trap

CompTIA often tests the distinction between DNS amplification and DNS cache poisoning by describing 'large payloads' and 'many hosts' — the trap is that candidates confuse the reflection/amplification mechanism with the cache corruption of poisoning, but amplification focuses on traffic volume, not record integrity.

Why the other options are wrong

A

DNS cache poisoning involves corrupting the resolver's cache with false records, not causing large responses to many queries from internal hosts. The large payloads indicate amplification, not cache manipulation.

C

DNS tunneling typically involves encoding data in DNS queries or responses for covert communication, not large payloads from many hosts querying the same domain. The scenario describes many hosts querying the same domain with large responses, which is characteristic of amplification, not tunneling.

D

DNS zone transfer is a mechanism for replicating DNS databases between servers, not an attack that generates many queries with large payloads from internal hosts.

45
MCQhard

A company's public web server is experiencing a flood of TCP SYN packets from multiple external IP addresses. The server's connection table is full, causing new legitimate connections to be dropped. Which of the following mitigation techniques should be implemented to protect the server while still allowing legitimate traffic?

A.Implement SYN cookies on the server.
B.Increase the server's TCP connection backlog.
C.Enable bogon filtering on the perimeter firewall.
D.Deploy an intrusion prevention system (IPS) with signature detection.
AnswerA

SYN cookies are a highly effective defense against SYN floods because they allow the server to defer allocating memory for a new connection until the three-way handshake is fully completed. Instead of storing connection state, the server encodes all necessary information, such as client IP, port, and sequence numbers, into the initial SYN-ACK packet's sequence number. Only upon receiving a valid final ACK, which includes the correct cookie, does the server reconstruct the connection state and allocate resources, effectively preventing its connection table from being exhausted by spoofed or incomplete SYN requests.

Why this answer

SYN cookies allow the server to avoid storing connection state in the TCP backlog until the three-way handshake completes. When the SYN flood fills the connection table, the server encodes the initial sequence number (ISN) with cryptographic information about the connection, enabling it to verify the ACK from a legitimate client without consuming table entries. This technique preserves resources for legitimate traffic while dropping spoofed or incomplete handshakes.

Exam trap

The N10-009 exam often tests the misconception that increasing the TCP backlog (Option B) is a viable defense against SYN floods, but candidates must recognize that backlog tuning only delays exhaustion, whereas SYN cookies provide a stateless, scalable solution.

Why the other options are wrong

B

Increasing the TCP connection backlog only raises the limit of pending connections in the queue, but a SYN flood fills the connection table regardless of backlog size, so the server still exhausts resources and drops legitimate connections.

C

Bogon filtering blocks traffic from invalid or unallocated IP addresses, but the SYN flood is coming from multiple external IPs that may be legitimate (spoofed or real). It does not prevent the connection table from filling up due to half-open connections.

D

An IPS with signature detection can block known attack patterns, but it cannot prevent the connection table from filling up during a SYN flood because the attack traffic still reaches the server and consumes resources before the IPS can act.

46
MCQhard

A security engineer is configuring a site-to-site VPN between two branch offices. The requirement is to encrypt all traffic between the two networks using IPsec. Which IPsec mode should be used to encrypt the entire IP packet including the original header?

A.Transport mode
B.Tunnel mode
C.AH only
D.ESP only
AnswerB

Tunnel mode is the correct choice for site-to-site VPNs because it encapsulates the entire original IP packet, including both its header and payload, within a new, outer IP header. This comprehensive encapsulation ensures that the original source and destination IP addresses are hidden from intermediate networks, providing complete confidentiality and network-level anonymity. The new outer header then directs the packet to the VPN gateway at the remote site, making it ideal for connecting entire networks securely.

Why this answer

Tunnel mode is the correct choice because it encrypts the entire original IP packet, including the original header, and then encapsulates it within a new IP header. This is required for site-to-site VPNs where the original source and destination IP addresses must be hidden or protected, and the new header is used for routing between the two VPN gateways.

Exam trap

The N10-009 exam often tests the distinction between Transport and Tunnel modes by asking which mode encrypts the entire packet, and candidates mistakenly choose Transport mode because they confuse 'encrypting the payload' with 'encrypting the entire packet', or they think AH provides encryption.

Why the other options are wrong

A

Transport mode only encrypts the payload of the IP packet, leaving the original IP header intact, so it does not encrypt the entire packet including the header as required.

C

AH only provides authentication and integrity, but does not encrypt the payload or the original header, failing to meet the requirement to encrypt all traffic.

D

ESP only can be used in either transport or tunnel mode, but the question asks for the mode that encrypts the entire IP packet including the original header. ESP alone does not specify the mode; tunnel mode is required for full packet encryption.

47
MCQhard

A network administrator reviews firewall logs and sees thousands of SYN packets coming from various source IP addresses to a single internal web server. No ACK or RST packets are observed from these sources. Which type of attack is most likely occurring?

A.DNS amplification attack
B.SYN flood attack
C.ARP spoofing attack
D.Man-in-the-middle attack
AnswerB

A SYN flood attack exploits the TCP three-way handshake by sending numerous SYN requests to a target server without completing the final ACK. This leaves the server with many half-open connections, rapidly consuming its connection table resources and memory. The firewall logs would precisely reflect this by showing thousands of incoming SYN packets, often from spoofed source IPs, indicating a denial-of-service attempt.

Why this answer

A SYN flood attack exploits the TCP three-way handshake by sending a high volume of SYN packets to a target server without completing the handshake (no ACK or RST). This exhausts the server's connection table resources, preventing legitimate connections. The observed pattern of many SYN packets from various sources with no subsequent ACK or RST is the hallmark of a SYN flood.

Exam trap

The N10-009 exam often tests the distinction between a SYN flood (which targets the TCP handshake) and a DNS amplification attack (which uses UDP reflection), so candidates may confuse the two because both involve high packet volumes and spoofed sources.

Why the other options are wrong

A

A DNS amplification attack uses DNS servers to flood a target with large DNS responses, not SYN packets. The question describes thousands of SYN packets with no ACK or RST, which is characteristic of a SYN flood, not a DNS amplification attack.

C

ARP spoofing attacks involve sending forged ARP messages to link an attacker's MAC address with the IP address of a legitimate device, not flooding a server with SYN packets. The described behavior of thousands of SYN packets without ACK/RST is characteristic of a SYN flood, not ARP spoofing.

D

A man-in-the-middle attack involves intercepting and potentially altering communications between two parties, not sending a flood of SYN packets without completing the handshake. The described behavior of thousands of SYN packets with no ACK or RST is characteristic of a SYN flood, not a MITM attack.

48
MCQmedium

A network administrator discovers that client workstations are receiving IP addresses from an unknown device, causing network connectivity issues. Which security feature should be configured on switches to prevent rogue DHCP servers from assigning IP addresses?

A.DHCP snooping
B.Dynamic ARP Inspection
C.Port security
D.BPDU guard
AnswerA

DHCP snooping is a Layer 2 security feature designed to prevent unauthorized DHCP servers from providing IP addresses and configuration to clients. It operates by classifying switch ports as either trusted, where legitimate DHCP server messages are allowed, or untrusted, where incoming DHCP server responses are blocked. This mechanism ensures that only approved DHCP servers can respond to client requests, effectively mitigating the risk of IP address conflicts and network misconfigurations caused by rogue devices.

Why this answer

DHCP snooping is the correct security feature because it acts as a firewall between untrusted hosts and trusted DHCP servers. By configuring ports as trusted (where legitimate DHCP servers are connected) and untrusted (client-facing ports), the switch drops all DHCP server messages (OFFER, ACK, NAK) received on untrusted ports, effectively blocking rogue DHCP servers from assigning IP addresses.

Exam trap

The trap here is that candidates confuse DHCP snooping with Dynamic ARP Inspection (DAI) because both rely on the DHCP snooping binding table, but DAI only validates ARP packets, not DHCP server messages.

Why the other options are wrong

B

Dynamic ARP Inspection (DAI) is used to prevent ARP spoofing attacks by validating ARP packets, not to block rogue DHCP servers. The question specifically asks about preventing unauthorized DHCP server activity, which is addressed by DHCP snooping.

C

Port security limits the number of MAC addresses per switch port but does not inspect DHCP messages or block unauthorized DHCP servers. It cannot prevent rogue DHCP servers from assigning IP addresses.

D

BPDU guard is used to prevent loops by disabling ports that receive Bridge Protocol Data Units (BPDUs) from unauthorized switches, not to block rogue DHCP servers.

49
MCQhard

A security analyst receives an alert that an internal user's workstation is sending a high volume of ARP requests for multiple IP addresses on the local subnet. The analyst suspects a man-in-the-middle attack. Which security mechanism is most effective at mitigating this type of attack on a switched network?

A.Port security
B.DHCP snooping
C.Dynamic ARP Inspection
D.MAC address filtering
AnswerC

DAI uses the DHCP snooping binding table to validate ARP packets and block spoofed ARP messages.

Why this answer

Dynamic ARP Inspection (DAI) is the correct answer because it validates ARP packets on a switched network, ensuring that only legitimate ARP replies are forwarded. In a man-in-the-middle attack, an attacker sends spoofed ARP replies to associate their MAC address with the IP address of a legitimate host. DAI intercepts all ARP packets and compares them against a trusted binding table (built by DHCP snooping), dropping any that are invalid, thus preventing ARP spoofing.

Exam trap

The N10-009 exam often tests the distinction between DHCP snooping and DAI, where candidates mistakenly choose DHCP snooping because it builds the binding table, but DAI is the actual mechanism that validates ARP packets to prevent man-in-the-middle attacks.

Why the other options are wrong

A

Port security limits the number of MAC addresses per port but does not inspect ARP packets, so it cannot prevent ARP spoofing or man-in-the-middle attacks.

B

DHCP snooping filters DHCP messages to prevent rogue DHCP servers, but it does not inspect ARP traffic. The attack described involves ARP spoofing, which Dynamic ARP Inspection (DAI) directly mitigates by validating ARP packets against the DHCP snooping binding table.

D

MAC address filtering restricts which MAC addresses can communicate on a port, but it does not prevent ARP spoofing or man-in-the-middle attacks because an attacker can spoof a legitimate MAC address.

50
MCQhard

A security analyst observes that a workstation on the network is sending unsolicited ARP replies stating that the workstation's MAC address corresponds to the default gateway IP for all subnets. This behavior is causing other devices to send traffic destined for external networks to the workstation instead of the legitimate gateway. Which type of attack is being performed?

A.A: ARP spoofing
B.B: DHCP starvation
C.C: DNS poisoning
D.D: MAC flooding
AnswerA

ARP spoofing is a Layer 2 attack where an attacker sends forged Address Resolution Protocol (ARP) messages over a local area network. The goal is to associate the attacker's MAC address with the IP address of another host, most commonly the default gateway. By doing this, the attacker intercepts traffic intended for the gateway, effectively positioning themselves as a "man-in-the-middle" between the victim and the actual gateway, allowing for eavesdropping or manipulation of data.

Why this answer

The workstation is sending unsolicited ARP replies that map the default gateway IP to its own MAC address. This poisons the ARP caches of other devices on the network, causing them to forward traffic destined for external networks to the attacker's workstation instead of the legitimate gateway. This is the classic behavior of an ARP spoofing (or ARP poisoning) attack, which exploits the lack of authentication in the ARP protocol (RFC 826).

Exam trap

The trap here is confusing ARP spoofing with MAC flooding, because both involve MAC addresses and network interception, but MAC flooding targets the switch's CAM table to capture traffic, while ARP spoofing targets host ARP caches to redirect traffic to a specific MAC address.

Why the other options are wrong

B

DHCP starvation floods a DHCP server with requests to exhaust its IP address pool, causing denial of service. The question describes unsolicited ARP replies mapping the attacker's MAC to the gateway IP, which is ARP spoofing, not DHCP-related.

C

DNS poisoning involves corrupting DNS resolver caches to redirect domain names to malicious IPs, not manipulating ARP tables with unsolicited replies for the default gateway IP.

D

MAC flooding involves sending many frames with different source MAC addresses to overflow the switch's MAC address table, causing it to fail open and broadcast traffic. The question describes unsolicited ARP replies, not MAC table overflow.

51
MCQhard

An organization wants to implement a security solution that uses a cloud-based service to inspect all incoming web traffic for malware and policy violations before it reaches the internal network. This type of solution is known as a:

A.Web application firewall (WAF)
B.Secure web gateway (SWG)
C.Intrusion detection system (IDS)
D.VPN concentrator
AnswerB

A Secure Web Gateway (SWG) is precisely designed to filter and secure web traffic, often delivered as a cloud-based service. It acts as an intermediary proxy, inspecting all outbound and inbound web requests to block malware, enforce acceptable use policies, and prevent data loss. This cloud-native approach provides consistent security for users regardless of their location, making it ideal for distributed workforces and aligning perfectly with the need for a cloud-based security solution.

Why this answer

A Secure Web Gateway (SWG) is a cloud-based security solution that inspects all outbound and inbound web traffic for malware, policy violations, and data loss. It operates at the application layer, typically using proxy-based or API-based inspection to enforce security policies before traffic reaches the internal network. This matches the requirement for a cloud service that inspects incoming web traffic for malware and policy violations.

Exam trap

The trap here is confusing a Secure Web Gateway (SWG) with a Web Application Firewall (WAF), as both deal with web traffic, but SWG focuses on user-to-web traffic inspection and policy enforcement, while WAF protects a specific web server from application-layer attacks.

Why the other options are wrong

A

A WAF inspects and filters HTTP/HTTPS traffic to protect web applications from attacks like SQL injection, but it does not inspect all web traffic for malware and policy violations before reaching the internal network; that is the role of a secure web gateway (SWG).

C

An IDS is a passive monitoring system that detects suspicious activity but does not inspect or block web traffic inline; it cannot enforce policies on incoming web traffic before it reaches the internal network.

D

A VPN concentrator is used to create secure tunnels for remote access or site-to-site connectivity, not to inspect web traffic for malware or policy violations. It does not perform content filtering or threat detection on incoming web traffic.

52
MCQhard

A security analyst is reviewing logs and finds that a single MAC address is rapidly requesting IP addresses from a DHCP server, each time with a different client ID. The DHCP server is exhausting its address pool. Which type of attack is occurring?

A.DHCP starvation attack
B.MAC flooding attack
C.ARP spoofing
D.DNS poisoning
AnswerA

This is exactly the description of a DHCP starvation attack, where the attacker floods the DHCP server with requests to deplete the address pool.

Why this answer

A DHCP starvation attack occurs when an attacker sends numerous DHCP discover messages, each with a unique client ID (chaddr), to exhaust the DHCP server's address pool. This prevents legitimate clients from obtaining IP addresses, as the server believes all leases are assigned. The rapid requests with different client IDs from a single MAC address are a hallmark of this attack.

Exam trap

The trap here is confusing DHCP starvation with MAC flooding, as both involve 'flooding' and MAC addresses, but MAC flooding targets switch CAM tables, not DHCP servers.

Why the other options are wrong

B

MAC flooding attacks target switch MAC address tables by sending many frames with different source MAC addresses, not by exhausting DHCP IP address pools via rapid DHCP requests.

C

ARP spoofing involves sending forged ARP replies to associate an attacker's MAC address with a legitimate IP address, not exhausting DHCP address pools by rapidly requesting IPs with different client IDs.

D

DNS poisoning involves corrupting DNS resolver caches to redirect traffic, not exhausting DHCP address pools via rapid requests with varying client IDs.

53
MCQeasy

A security auditor is reviewing firewall logs and notices repeated login attempts from a single external IP address to the company's SSH server. Which type of attack is likely occurring?

A.Brute force attack
B.Man-in-the-middle attack
C.ARP poisoning
D.DDoS attack
AnswerA

A brute force attack involves systematically trying numerous combinations of usernames and passwords to gain unauthorized access to a system or service, such as SSH. The firewall logs showing repeated login attempts from a single IP address are a definitive indicator of such an attack, as the attacker is attempting to guess credentials through exhaustive trial and error. This pattern aims to eventually find a valid credential pair rather than exploiting a vulnerability.

Why this answer

Repeated login attempts from a single external IP to an SSH server are characteristic of a brute force attack, where an attacker systematically tries many username/password combinations to gain unauthorized access. SSH (port 22) is a common target because it provides remote shell access, and automated tools like Hydra or Medusa can rapidly test credentials. The firewall logs show multiple failed authentication attempts from the same source, which is the hallmark of this attack type.

Exam trap

The N10-009 exam often tests the distinction between a brute force attack (repeated single-source login attempts) and a DDoS attack (traffic flood from multiple sources), so candidates mistakenly choose DDoS when they see 'repeated attempts' without recognizing the single-source, credential-guessing nature of the activity.

Why the other options are wrong

B

A man-in-the-middle attack involves intercepting communication between two parties, not repeated login attempts from a single external IP to an SSH server.

C

ARP poisoning operates at Layer 2 by corrupting ARP tables to intercept traffic on a local network, whereas the question describes repeated login attempts from a single external IP to an SSH server, which is a Layer 7 authentication attack.

D

A DDoS attack aims to overwhelm a service with traffic from multiple sources, causing denial of service. This scenario describes repeated login attempts from a single IP, which is characteristic of a brute force attack, not a DDoS.

54
MCQmedium

A security engineer is configuring port security on a switch to prevent unauthorized devices from connecting. The requirement is that only the first device to connect to a port is allowed, and if a different device connects, the port should be disabled. Which port security violation mode should be configured?

A.Protect
B.Restrict
C.Shutdown
D.Sticky
AnswerC

Shutdown mode is the most stringent port security violation action, immediately disabling the switch port upon detection of an unauthorized MAC address. This action effectively takes the port offline, preventing any further traffic flow and completely blocking unauthorized access attempts. Re-enabling the port typically requires manual intervention by an administrator, making it a highly secure but operationally impactful response that directly prevents unauthorized use.

Why this answer

The 'shutdown' violation mode disables the port entirely when a violation occurs, which meets the requirement that the port be disabled if a different device connects. This is the only mode that physically err-disables the port, preventing any further traffic until manually re-enabled.

Exam trap

The N10-009 exam often tests the distinction that 'shutdown' is the only mode that physically disables the port, while 'restrict' and 'protect' only filter traffic but leave the port administratively up, leading candidates to mistakenly choose 'restrict' because it logs violations.

Why the other options are wrong

A

The Protect mode drops traffic from unauthorized devices but does not disable the port, which contradicts the requirement that the port should be disabled when a different device connects.

B

Restrict mode allows traffic from unauthorized devices but logs the violation and increments a counter; it does not disable the port, which is required by the question's condition that the port be disabled when a different device connects.

D

Sticky is not a violation mode; it is a feature that dynamically learns MAC addresses and adds them to the running configuration. The question asks for a violation mode that disables the port when a different device connects, which is 'shutdown'.

55
MCQmedium

A small business uses a wireless network for employees and guests. The owner wants to ensure that guest devices cannot access internal resources such as file servers and printers. Which network security technique should be implemented?

A.VLAN segmentation with separate SSID for guests
B.MAC address filtering
C.WPA2 encryption
D.Disabling SSID broadcast
AnswerA

Implementing VLAN segmentation with a dedicated SSID for guests effectively isolates guest traffic from the internal employee network at Layer 2. This separation, often combined with firewall rules or Access Control Lists (ACLs) on the router or Layer 3 switch, prevents guest devices from accessing sensitive internal resources while still providing them internet connectivity. This robust security measure ensures that potential compromises on guest devices do not impact the business's operational network.

Why this answer

VLAN segmentation with a separate SSID for guests is the correct approach because it creates a logical network boundary that isolates guest traffic from internal resources. By assigning the guest SSID to a distinct VLAN, the network can enforce access control lists (ACLs) at the Layer 3 switch or firewall, preventing guest devices from reaching file servers, printers, or other internal subnets while still allowing internet access.

Exam trap

The trap here is that candidates often confuse encryption (WPA2) with network segmentation, assuming that securing the wireless link inherently protects internal resources, when in fact encryption only protects data in transit and does not control east-west traffic between devices on the same SSID.

Why the other options are wrong

B

MAC address filtering controls which devices can connect based on hardware addresses, but it does not prevent guest devices from accessing internal resources once connected; it also fails to isolate traffic between guest and internal networks.

C

WPA2 encryption secures wireless communication but does not prevent guest devices from accessing internal resources; it only protects data in transit.

56
MCQhard

An organization's security policy requires that all remote access VPN connections use two-factor authentication and that the VPN clients are compliant with the latest patch levels before gaining network access. Which technology combination provides these capabilities?

A.SSL VPN with client certificate authentication
B.IPsec VPN using preshared keys
C.NAC integrated with a reverse proxy
D.VPN with RADIUS authentication and posture assessment
AnswerD

RADIUS can enforce two-factor authentication (e.g., via OTP) and work with a NAC (posture) server to check client health (patch levels) before allowing full VPN access.

Why this answer

RADIUS authentication can enforce two-factor authentication (e.g., via token or OTP), and posture assessment (often via Network Access Control or a VPN posture plugin) checks the client's patch level before granting network access. This combination directly satisfies the policy requirements for both multi-factor authentication and endpoint compliance verification.

Exam trap

The trap here is that candidates often confuse 'two-factor authentication' with simply using a certificate (Option A) or a preshared key (Option B), failing to recognize that posture assessment is a separate, critical requirement that RADIUS combined with a NAC or posture system uniquely fulfills.

Why the other options are wrong

A

SSL VPN with client certificate authentication provides two-factor authentication (certificate + something else) but does not include posture assessment to verify patch compliance before granting network access.

B

IPsec VPN using preshared keys provides only single-factor authentication (the preshared key) and does not include any mechanism for posture assessment to verify client patch compliance.

57
MCQhard

A security analyst is reviewing firewall logs and sees many incoming packets with a source IP address that matches the internal IP range of the company (10.0.0.0/8) arriving on the external interface. Which type of attack is likely being attempted?

A.Smurf attack
B.IP spoofing attack
C.SYN flood
D.DNS amplification
AnswerB

Correct. The attacker is spoofing the source IP address to appear as an internal host, trying to bypass firewall rules that may allow internal traffic without inspection.

Why this answer

Packets arriving on the external interface with a source IP address from the internal 10.0.0.0/8 range indicate that the attacker is forging (spoofing) the source address to impersonate an internal host. This is a classic IP spoofing attack, often used to bypass access control lists or to launch further attacks that rely on trust relationships based on source IP.

Exam trap

CompTIA often tests the distinction between IP spoofing and other attacks by focusing on the specific packet characteristic (source IP matching internal range on an external interface) rather than the attack's goal or volume, leading candidates to confuse it with a Smurf or SYN flood attack.

Why the other options are wrong

A

A Smurf attack uses ICMP echo requests with a spoofed source IP to cause a broadcast storm, but the question describes incoming packets with a source IP matching the internal range on the external interface, which is classic IP spoofing, not a Smurf attack.

C

A SYN flood attack involves sending many TCP SYN packets to exhaust server resources, but the question describes packets with a spoofed internal source IP arriving on the external interface, which is characteristic of IP spoofing, not SYN flood.

D

DNS amplification attacks use open DNS servers to amplify traffic to a victim, but they do not involve source IP addresses matching the internal range of the target. The question describes packets with internal IPs arriving externally, which is characteristic of IP spoofing, not DNS amplification.

58
MCQmedium

A network administrator wants to prevent unauthorized devices from connecting to the network by limiting the number of MAC addresses allowed on a switch port. Which security feature should be configured?

A.802.1X
B.Port security
C.DHCP snooping
D.Dynamic ARP inspection
AnswerB

Port security is a Layer 2 control plane feature that restricts the number of MAC addresses allowed to communicate through a specific switch port. Network administrators can configure a maximum limit of MAC addresses per port, or even statically assign specific MAC addresses. If an unauthorized device attempts to connect and exceeds this configured limit, the switch can be configured to take actions such as shutting down the port, restricting traffic, or sending an SNMP trap, effectively preventing unauthorized access.

Why this answer

Port security is the correct feature because it directly restricts the number of unique MAC addresses that can be learned on a switch port, preventing unauthorized devices from connecting. When the configured limit is exceeded, the switch can take actions such as shutdown, restrict, or protect, effectively blocking the unauthorized device. This is a Layer 2 access control mechanism that operates on the switch port itself.

Exam trap

The N10-009 exam often tests the distinction between port security (MAC address limiting) and 802.1X (authentication), leading candidates to mistakenly choose 802.1X when the question explicitly asks about limiting the number of MAC addresses.

Why the other options are wrong

A

802.1X is an authentication protocol that controls network access based on user or device credentials, not by limiting the number of MAC addresses on a port. The question specifically asks for limiting MAC addresses, which is a function of port security.

C

DHCP snooping is used to filter untrusted DHCP messages and prevent rogue DHCP servers, not to limit the number of MAC addresses on a switch port.

D

Dynamic ARP inspection validates ARP packets to prevent man-in-the-middle attacks, but it does not limit the number of MAC addresses on a switch port.

59
MCQmedium

A company hosts a web server in a DMZ. The firewall has three interfaces: inside (corporate network), outside (Internet), and DMZ. Which firewall rule is necessary to allow external users to access the web server?

A.Allow traffic from the outside interface to the DMZ interface on port 80
B.Allow traffic from the inside interface to the DMZ interface on port 80
C.Allow traffic from the outside interface to the inside interface on port 80
D.Deny all traffic by default and create no specific rules
AnswerA

This firewall rule is essential for a public-facing web server located within a DMZ. By allowing traffic from the untrusted outside interface to the DMZ interface specifically on port 80, it enables external users to access the web service via HTTP. This configuration ensures the web server is reachable while maintaining the critical security posture of isolating the internal network from direct internet exposure.

Why this answer

External users on the Internet (outside interface) need to reach the web server located in the DMZ. The firewall must permit inbound traffic from the outside zone to the DMZ zone on TCP port 80 (HTTP) to allow web requests while keeping the corporate network (inside) isolated from direct external access.

Exam trap

The trap here is that candidates mistakenly choose Option B or C, confusing the direction of traffic or thinking that external users need access to the inside network, when the correct security design is to restrict external traffic only to the DMZ.

Why the other options are wrong

B

This rule allows traffic from the inside (corporate network) to the DMZ, which is not needed for external users to access the web server. External users come from the Internet (outside interface), not the inside network.

C

This rule would allow traffic from the Internet to the corporate network on port 80, which bypasses the DMZ and directly exposes internal resources, violating security best practices.

D

Option D suggests denying all traffic by default and creating no specific rules, which would block all traffic including legitimate external access to the web server, making it impossible for external users to reach the server.

60
MCQeasy

A network administrator wants to prevent unauthorized DHCP servers from offering IP addresses to clients on a switch. Which security feature should be enabled?

A.BPDU guard
B.DHCP snooping
C.Dynamic ARP inspection
D.Port security
AnswerB

DHCP snooping is a crucial security feature implemented on network switches that inspects DHCP messages to prevent unauthorized DHCP servers from distributing IP addresses. It classifies switch ports as either trusted (connected to legitimate DHCP servers) or untrusted (all other ports). The switch then actively blocks DHCP offer messages originating from untrusted ports, ensuring clients only receive IP configurations from authorized sources. This mechanism effectively mitigates man-in-the-middle attacks and ensures network integrity by preventing rogue servers from interfering with IP address assignment.

Why this answer

DHCP snooping is the correct answer because it is a security feature specifically designed to filter untrusted DHCP messages on a switch. By configuring trusted and untrusted ports, DHCP snooping drops DHCP server responses (OFFER, ACK) received on untrusted ports, effectively preventing rogue DHCP servers from assigning IP addresses to clients.

Exam trap

The trap here is that candidates confuse DHCP snooping with Dynamic ARP Inspection, but DAI only validates ARP traffic, not DHCP offers, while BPDU guard is an STP mechanism unrelated to DHCP security.

Why the other options are wrong

A

BPDU guard is used to prevent loops by disabling ports that receive Bridge Protocol Data Units (BPDUs) from unauthorized switches, not to block unauthorized DHCP servers.

C

Dynamic ARP inspection (DAI) validates ARP packets to prevent ARP spoofing, but it does not prevent unauthorized DHCP servers from assigning IP addresses. DHCP snooping is the feature that filters DHCP messages and blocks rogue DHCP servers.

D

Port security limits the number of MAC addresses per port but does not prevent unauthorized DHCP servers from assigning IP addresses.

61
MCQmedium

A network administrator wants to prevent unauthorized devices from connecting to the company's Ethernet ports. The company uses a centralized authentication server. Which IEEE standard should be implemented?

A.802.1X
B.802.11i
C.802.3af
D.802.1Q
AnswerA

IEEE 802.1X is a port-based network access control standard designed to prevent unauthorized devices from connecting to a wired or wireless LAN. It enforces authentication before granting network access by using the Extensible Authentication Protocol (EAP) between a supplicant (the client device), an authenticator (typically a switch or access point), and an authentication server (usually RADIUS). This process ensures that only authenticated and authorized users or devices can access network resources, effectively securing the physical access layer.

Why this answer

802.1X is the IEEE standard for port-based Network Access Control (NAC) that authenticates devices before granting access to an Ethernet port. It uses a centralized authentication server (typically RADIUS) to verify credentials, preventing unauthorized devices from connecting to the network. This directly matches the requirement of controlling access at the port level with a centralized server.

Exam trap

The trap here is that candidates confuse 802.1X with wireless security standards like 802.11i, because both involve authentication, but 802.1X is specifically for wired port-based access control.

Why the other options are wrong

B

802.11i is a wireless security standard (WPA2) for Wi-Fi networks, not for controlling access to Ethernet ports. The question specifies preventing unauthorized devices from connecting to Ethernet ports, which requires a port-based network access control standard like 802.1X.

C

802.3af is Power over Ethernet (PoE) standard, which provides power over Ethernet cables, not port-based network access control. The question asks for preventing unauthorized devices, which is addressed by 802.1X.

D

802.1Q is used for VLAN tagging, not for port-based network access control. It does not authenticate devices or prevent unauthorized connections to Ethernet ports.

62
MCQmedium

A company wants to protect its internal network by placing web servers that need to be accessible from the internet in a separate network segment. Which security architecture best describes this setup?

A.Intranet
B.VPN
C.DMZ
D.Extranet
AnswerC

A DMZ (Demilitarized Zone) is a perimeter network designed to expose public-facing services, such as web servers, to an untrusted network (the internet) while isolating them from the organization's private internal network. It acts as a buffer, typically secured by two firewalls, to prevent direct access from the internet to internal resources even if the public-facing server is compromised. This architecture significantly enhances security by limiting the attack surface on the core internal network.

Why this answer

A DMZ (demilitarized zone) is a network segment that sits between the internal trusted network and the external untrusted internet. By placing web servers in the DMZ, the company ensures that external users can access the servers without directly exposing the internal network, as traffic must pass through a firewall that enforces strict access control policies. This architecture is specifically designed to isolate public-facing services from internal assets, reducing the attack surface.

Exam trap

The trap here is that candidates confuse a DMZ with a VPN, thinking that a VPN provides the same isolation for public servers, when in fact a VPN is designed for secure remote access to internal resources, not for hosting services accessible to the general internet.

Why the other options are wrong

A

An intranet is a private network accessible only to an organization's internal users, not designed to host publicly accessible web servers. Placing internet-facing servers in an intranet would expose internal resources to external threats.

B

A VPN creates an encrypted tunnel for remote access or site-to-site connectivity, but it does not isolate publicly accessible web servers from the internal network. The question specifically asks for a separate network segment for internet-facing servers, which is the definition of a DMZ.

D

An extranet is a controlled private network allowing external partners limited access to internal resources, not a separate network segment for publicly accessible web servers. The question describes isolating web servers in a DMZ, not providing external partner access.

63
MCQmedium

A company wants to prevent unauthorized personal devices from connecting to the corporate wired network. Employees must authenticate using their domain credentials before gaining full network access. Which security measure should be implemented on the switch ports?

A.MAC filtering
B.802.1X
C.Port security with sticky MAC
D.VLAN hopping prevention
AnswerB

802.1X provides robust port-based network access control, requiring authentication before a device gains full network access. It leverages the Extensible Authentication Protocol (EAP) to communicate with a central RADIUS server, which validates user or device credentials. Until successful authentication, the port remains in an unauthorized state, typically allowing only EAP traffic, effectively preventing unauthorized personal devices from connecting. This robust mechanism ensures only authenticated entities can access network resources.

Why this answer

802.1X is the correct choice because it provides port-based network access control (PNAC) that requires end devices to authenticate using domain credentials (e.g., via RADIUS) before being granted full network access. This ensures that only authorized users, not just authorized devices, can connect to the corporate wired network, meeting the requirement to prevent unauthorized personal devices.

Exam trap

The trap here is that candidates often confuse port security with 802.1X, thinking that locking MAC addresses via sticky MAC provides user-based authentication, but it only controls device identity, not user credentials, and fails to meet the requirement for domain credential authentication.

Why the other options are wrong

A

MAC filtering only checks MAC addresses, not user credentials, so it cannot enforce domain authentication. It also does not prevent unauthorized devices if their MAC is spoofed or manually added.

64
MCQmedium

A security auditor recommends implementing a solution that authenticates users and devices before granting network access, regardless of the physical port they connect to. Which technology should be deployed?

A.Port security
B.802.1X
C.VLAN hopping
D.DHCP snooping
AnswerB

802.1X provides port-based authentication using EAP and requires credentials from the device or user.

Why this answer

802.1X is the correct technology because it provides port-based network access control (PNAC) that authenticates users and devices before granting network access, regardless of the physical port they connect to. It uses the Extensible Authentication Protocol (EAP) over LAN (EAPoL) to communicate with a RADIUS server, ensuring that only authenticated endpoints are allowed on the network. This meets the auditor's requirement for authentication at the port level, independent of the switch port used.

Exam trap

The trap here is that candidates often confuse port security with 802.1X because both control port access, but port security only filters by MAC address and does not provide user authentication or integration with a central authentication server, which is the key requirement in the question.

Why the other options are wrong

A

Port security limits MAC addresses per port but does not authenticate users or devices before granting network access; it only controls which MAC addresses are allowed on a specific switch port.

C

VLAN hopping is an attack technique, not a security solution. It exploits switch configuration to gain unauthorized access to VLANs, whereas the question asks for a technology that authenticates users and devices before granting network access.

D

DHCP snooping is a security feature that filters untrusted DHCP messages to prevent rogue DHCP servers, but it does not authenticate users or devices before granting network access.

65
MCQhard

During a security audit, a consultant discovers that encrypted traffic between a client and a web server is being decrypted and re-encrypted by an intermediate device on the network path. Which type of attack best describes this scenario?

A.ARP poisoning
B.SSL stripping
C.Man-in-the-middle
D.Rogue DHCP
AnswerC

A Man-in-the-Middle (MITM) attack involves an attacker secretly relaying and possibly altering the communication between two parties who believe they are directly communicating with each other. In the described scenario, the attacker acts as a proxy, intercepting the encrypted traffic, decrypting it to read or modify the contents, and then re-encrypting it before forwarding it to the legitimate destination. This allows the attacker to maintain the illusion of a secure connection for both endpoints while gaining full access to the data.

Why this answer

The scenario describes a classic man-in-the-middle (MITM) attack where an intermediary intercepts, decrypts, and re-encrypts traffic between the client and server. This allows the attacker to read or modify the data while both endpoints believe they have a secure TLS session. The key indicator is the decryption and re-encryption step, which is the hallmark of an active MITM proxy.

Exam trap

The trap here is that candidates confuse the method (e.g., ARP poisoning) with the attack type (MITM), or they mistake SSL stripping for any interception of encrypted traffic, not realizing that SSL stripping removes encryption entirely rather than re-encrypting it.

Why the other options are wrong

A

ARP poisoning involves manipulating ARP tables to intercept traffic at layer 2, but it does not inherently decrypt and re-encrypt encrypted traffic; it only redirects traffic. The scenario describes decryption and re-encryption, which is characteristic of a man-in-the-middle attack, not ARP poisoning alone.

B

SSL stripping downgrades HTTPS to HTTP, but the scenario describes decryption and re-encryption of encrypted traffic, which is characteristic of a man-in-the-middle attack, not SSL stripping.

D

Rogue DHCP involves an unauthorized DHCP server assigning IP configurations, not intercepting and re-encrypting traffic. The scenario describes decryption and re-encryption, which is a man-in-the-middle attack, not DHCP-related.

66
MCQhard

An attacker is eavesdropping on network traffic to capture sensitive data sent over an unencrypted HTTP connection. Which technology should be implemented to protect data in transit between clients and web servers?

A.SSL/TLS
B.IPSec
C.SSH
D.SNMPv3
AnswerA

SSL/TLS (Secure Sockets Layer/Transport Layer Security) is the foundational protocol suite for encrypting communication over computer networks, most notably for securing web traffic via HTTPS. When an attacker attempts to eavesdrop on web sessions, SSL/TLS encrypts the data at the application layer, ensuring confidentiality, integrity, and authenticity between the client and server. This prevents unauthorized parties from reading or tampering with sensitive information exchanged during browsing.

Why this answer

SSL/TLS (Secure Sockets Layer/Transport Layer Security) operates at the application layer to encrypt HTTP traffic, creating HTTPS. This ensures that data transmitted between clients and web servers is encrypted, preventing eavesdroppers from reading sensitive information like passwords or credit card numbers. TLS is the standard protocol for securing HTTP communications, as defined in RFC 8446.

Exam trap

CompTIA often tests the distinction between encryption protocols by layering (e.g., IPSec at Layer 3 vs. TLS at Layer 4/Application), causing candidates to pick IPSec because it is a well-known security protocol, even though it does not directly protect HTTP traffic.

Why the other options are wrong

B

IPSec is designed to secure IP communications by encrypting and authenticating IP packets, but it operates at the network layer and is typically used for site-to-site VPNs or remote access, not for protecting individual HTTP sessions between clients and web servers.

C

SSH is used for secure remote administration and file transfers, not for protecting HTTP web traffic between clients and servers. It does not integrate with HTTP to encrypt web sessions.

67
MCQmedium

A network engineer is deploying 802.1X authentication for a wireless network. The security policy requires mutual authentication between the client and the network using certificates on both ends. Which EAP method should the engineer select?

A.EAP-MD5
B.EAP-TLS
C.PEAP
D.EAP-FAST
AnswerB

EAP-TLS (Transport Layer Security) is considered one of the strongest EAP methods due to its comprehensive use of X.509 digital certificates. It requires both the authentication server (e.g., RADIUS) and the client device (supplicant) to present valid certificates, establishing robust mutual authentication. This process creates a highly secure, encrypted TLS tunnel for all subsequent communication, effectively preventing man-in-the-middle attacks and ensuring the identity of both parties.

Why this answer

EAP-TLS (Transport Layer Security) is the correct choice because it provides mutual authentication using certificates on both the client and the server, satisfying the security policy requirement. Unlike other EAP methods, EAP-TLS requires a PKI with certificates installed on both endpoints, ensuring that each side validates the other's identity before establishing the connection.

Exam trap

CompTIA often tests the distinction between EAP methods that use certificates on both ends versus those that use certificates only on the server side, leading candidates to mistakenly choose PEAP or EAP-FAST when the question explicitly requires mutual certificate authentication.

Why the other options are wrong

C

PEAP uses a server-side certificate to create a TLS tunnel, but it does not require a client certificate for mutual authentication; it relies on inner EAP methods like MS-CHAPv2 for client authentication, which does not meet the requirement for certificates on both ends.

68
MCQmedium

A company wants to prevent unauthorized devices from connecting to the wired network by authenticating users or devices before granting network access. Which of the following technologies should be implemented on the switch ports to achieve this?

A.A: 802.1X
B.B: Port security with MAC address sticky
C.C: Access control lists (ACLs)
D.D: DHCP snooping
AnswerA

802.1X is a port-based network access control protocol that authenticates devices before granting them access to the network. It leverages an authenticator (e.g., a switch port), a supplicant (the client device), and an authentication server (e.g., RADIUS) to verify user or device credentials. Until successful authentication, the port remains in an unauthorized state, preventing any unauthorized device from sending or receiving traffic beyond the authentication exchange. This effectively blocks unauthorized devices from connecting.

Why this answer

802.1X is an IEEE standard (802.1X-2020) for port-based Network Access Control (NAC). It authenticates users or devices via EAP (Extensible Authentication Protocol) before the switch port transitions from the unauthorized (blocking) state to the authorized (forwarding) state, effectively preventing unauthorized devices from accessing the wired network.

Exam trap

CompTIA often tests the misconception that port security with sticky MAC addresses provides authentication, but it only restricts MAC addresses and does not verify user identity or credentials, making it a layer-2 control, not an authentication mechanism.

Why the other options are wrong

B

Port security with MAC address sticky only allows specific MAC addresses to connect, but it does not authenticate users or devices before granting network access; it simply filters based on MAC addresses, which can be spoofed.

C

ACLs filter traffic based on IP addresses or protocols but do not authenticate users or devices before granting network access; they control traffic after access is already granted.

D

DHCP snooping is a security feature that filters untrusted DHCP messages to prevent rogue DHCP servers, but it does not authenticate users or devices before granting network access. The question specifically requires authentication before access, which DHCP snooping does not provide.

69
MCQmedium

A network administrator is configuring a firewall to allow external users to securely access an internal web server. Which security technique should be used to place the web server in a separate, isolated network segment that is still accessible from the internet?

A.VLAN
B.DMZ
C.VPN
D.NAT
AnswerB

A Demilitarized Zone (DMZ) is a perimeter network specifically designed to host public-facing services, such as web servers or email servers, that need to be accessible from the internet. It acts as a buffer zone, typically situated between two firewalls: one separating it from the external internet and another separating it from the internal private network. This architecture allows external users to access specific services without gaining direct access to the sensitive internal network, significantly enhancing security by isolating potential threats.

Why this answer

A DMZ (demilitarized zone) is a separate, isolated network segment that exposes internal services, such as a web server, to external users while keeping the internal LAN secure. By placing the web server in the DMZ, the firewall can allow inbound traffic from the internet to the DMZ while blocking direct access to the internal network, enforcing strict access control policies.

Exam trap

The trap here is that candidates often confuse VLANs with security isolation, assuming a VLAN alone provides the same protection as a DMZ, but VLANs lack the firewall-enforced access controls and segmentation from the internet that a DMZ requires.

Why the other options are wrong

C

A VPN creates an encrypted tunnel for remote access to a network, but it does not place a server in a separate, isolated network segment accessible from the internet. The question asks for isolating the web server itself, not providing secure remote access.

D

NAT translates private IP addresses to a public IP but does not place the web server in a separate, isolated network segment; it only modifies address translation, not network segmentation.

70
MCQhard

A security analyst is investigating a network anomaly. The analyst notices that the company's web server is receiving a large number of TCP SYN packets from random source IP addresses, all destined for port 80. The web server is responding with SYN-ACK packets, but the connections are never completed. This is causing the server's connection table to fill up, degrading performance for legitimate users. Which type of attack is being described?

A.Ping of death
B.Smurf attack
C.SYN flood
D.DNS amplification
AnswerC

A SYN flood is a denial-of-service attack that exploits the TCP three-way handshake. The attacker sends numerous TCP SYN requests to a target server, often with spoofed source IP addresses. The server responds with SYN-ACK packets and allocates resources for each half-open connection, but never receives the final ACK, eventually exhausting its connection table and preventing legitimate users from connecting.

Why this answer

The attack described is a SYN flood, a type of denial-of-service (DoS) attack that exploits the TCP three-way handshake. The attacker sends a high volume of TCP SYN packets with spoofed source IP addresses to the server's port 80. The server responds with SYN-ACK packets to each spoofed source and waits for the final ACK, which never arrives, causing the server's half-open connection table (backlog queue) to fill up and exhaust resources, degrading performance for legitimate users.

Exam trap

The trap here is that candidates confuse a SYN flood with a Smurf attack or DNS amplification because all three are volumetric DoS attacks, but the key differentiator is the protocol and mechanism: SYN flood uses TCP SYN packets targeting the three-way handshake, while Smurf uses ICMP and DNS amplification uses UDP.

Why the other options are wrong

A

A ping of death involves sending oversized or malformed ICMP packets to crash a system, not TCP SYN packets to fill a connection table.

B

A Smurf attack uses ICMP echo requests sent to a broadcast address with a spoofed source IP, causing all hosts on the network to reply to the victim. This question describes TCP SYN packets to a single server, not ICMP traffic to a broadcast address.

D

DNS amplification attacks use open DNS resolvers to flood a target with large DNS response traffic, not TCP SYN packets to a web server's port 80.

71
Matchingmedium

Match each network attack to its description.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Attacker sends fake ARP messages to associate their MAC with another IP

Corrupts DNS cache to redirect traffic to malicious sites

Overwhelms a target with traffic from multiple sources

Attacker intercepts communication between two parties

Why these pairings

DDoS attacks flood systems with traffic, MitM attacks intercept communications, phishing tricks users into revealing info, and ransomware encrypts files for ransom.

72
MCQmedium

A security auditor discovers that several unused switch ports are in default configuration. The auditor recommends implementing a security measure that will disable the port if an unauthorized device is connected, and then automatically re-enable the port after a specified time period. Which feature should be configured on the switch ports?

A.802.1X with RADIUS authentication and guest VLAN
B.Port security with violation mode 'shutdown' and errdisable recovery interval
C.DHCP snooping and dynamic ARP inspection
D.Storm control and broadcast suppression
AnswerB

Port security configured with a 'shutdown' violation mode immediately disables a switch port upon detecting an unauthorized MAC address or exceeding the configured MAC address limit. This action places the port into an errdisable state, effectively preventing any further traffic. The `errdisable recovery interval` command then allows the port to automatically re-enable itself after a specified duration, making it available again for legitimate connections without manual intervention. This combination directly addresses the scenario of disabling unused ports and allowing for eventual re-use.

Why this answer

Port security with violation mode 'shutdown' disables the port when an unauthorized device is detected, and the errdisable recovery interval automatically re-enables the port after a specified time period. This directly matches the auditor's requirement to disable on unauthorized connection and auto-re-enable after a timeout.

Exam trap

The N10-009 exam often tests the distinction between port security's 'shutdown' violation mode (which triggers errdisable) and 'restrict' or 'protect' modes (which do not disable the port), leading candidates to incorrectly assume any port security mode meets the requirement for automatic re-enablement.

Why the other options are wrong

A

802.1X with RADIUS authentication and guest VLAN does not automatically disable a port upon unauthorized connection; it grants limited access via guest VLAN. It also does not automatically re-enable the port after a timeout, as errdisable recovery is specific to port security violation modes.

C

DHCP snooping and dynamic ARP inspection are security features that prevent DHCP spoofing and ARP poisoning attacks, but they do not disable ports upon unauthorized device connection or automatically re-enable them after a timeout.

D

Storm control and broadcast suppression are used to limit excessive broadcast, multicast, or unicast traffic to prevent network storms, not to disable ports upon unauthorized device connection or to automatically re-enable them after a timeout.

73
MCQhard

An attacker sends ICMP echo request packets to the broadcast address of a network, with the source IP address spoofed to be the target's IP address. This causes all hosts on the network to send ICMP echo replies to the target, overwhelming it. Which type of attack is this?

A.Smurf attack
B.Fraggle attack
C.Ping flood
D.ARP poisoning
AnswerA

A Smurf attack is a classic distributed denial-of-service (DDoS) technique that leverages ICMP echo requests. The attacker sends these requests to a network's broadcast address, but with the source IP address spoofed to that of the intended victim. Every host on the target network that receives the broadcast then replies to the spoofed source IP, overwhelming the victim with a flood of ICMP echo replies.

Why this answer

This is a classic Smurf attack, which exploits ICMP by sending echo request packets to the network's broadcast address with the source IP spoofed as the target. All hosts on the network receive the request and reply to the spoofed source, flooding the target with ICMP echo replies and consuming its bandwidth or resources.

Exam trap

CompTIA often tests the distinction between Smurf (ICMP) and Fraggle (UDP) attacks, so candidates mistakenly choose Fraggle when they see 'broadcast' and 'spoofed source' without noting the protocol used.

Why the other options are wrong

B

The Fraggle attack uses UDP echo packets (typically to port 7 or 19) instead of ICMP echo requests, so the description of ICMP packets makes this incorrect.

C

A ping flood typically involves sending a high volume of ICMP echo request packets directly to a single target, not using a broadcast address to amplify traffic from multiple hosts.

D

ARP poisoning involves manipulating ARP tables to intercept traffic, not flooding a target with ICMP replies via broadcast amplification.

74
MCQmedium

A company wants to deploy a wireless network with the highest level of security for client authentication. The network will use a RADIUS server. Which authentication method should be used?

A.WPA2-PSK
B.WPA3-SAE
C.802.1X with EAP-TLS
D.802.1X with PEAP
AnswerC

802.1X with EAP-TLS (Extensible Authentication Protocol-Transport Layer Security) offers the highest level of wireless security by implementing robust mutual authentication. Both the client device and the authentication server (typically a RADIUS server) must present and validate digital certificates, ensuring that only trusted devices connect to a legitimate network. This certificate-based approach eliminates password vulnerabilities and provides strong identity verification, making it ideal for highly secure enterprise environments despite its configuration complexity.

Why this answer

802.1X with EAP-TLS provides certificate-based mutual authentication, eliminating the risk of credential theft or dictionary attacks. This is the strongest authentication method for enterprise wireless networks, as it requires both the client and the RADIUS server to present valid X.509 certificates, ensuring a cryptographically verified identity on both sides.

Exam trap

The trap here is that candidates often confuse PEAP with EAP-TLS because both use TLS, but PEAP only authenticates the server with a certificate while the client authenticates with a password (e.g., MSCHAPv2), making it less secure than full mutual certificate authentication in EAP-TLS.

Why the other options are wrong

A

WPA2-PSK uses a pre-shared key for authentication, not a RADIUS server, so it does not meet the requirement for the highest level of security with RADIUS-based client authentication.

B

WPA3-SAE is a personal authentication method that does not use a RADIUS server; it relies on a pre-shared key (PSK) for client authentication, not 802.1X or EAP.

D

PEAP uses a server-side certificate only, not requiring client certificates, which provides lower security than EAP-TLS. The question specifies the highest level of security, so EAP-TLS with mutual certificate authentication is required.

75
MCQhard

An IT security analyst is implementing a solution to detect malware on endpoints by monitoring system calls and file integrity. Which of the following types of controls is being deployed?

A.Host-based Intrusion Detection System (HIDS)
B.Network-based Intrusion Detection System (NIDS)
C.Firewall
D.Virtual Private Network (VPN)
AnswerA

A Host-based Intrusion Detection System (HIDS) operates directly on an individual endpoint, such as a server or workstation, to monitor its internal activities. It meticulously scrutinizes system calls, application logs, file integrity, registry changes, and running processes for anomalous behavior or known malware signatures. By focusing on the host's internals, HIDS is uniquely positioned to detect malware execution, unauthorized file modifications, or privilege escalation attempts that might bypass network-level defenses.

Why this answer

A Host-based Intrusion Detection System (HIDS) monitors system calls, file integrity, and operating system logs directly on the endpoint. This matches the scenario because the analyst is deploying a solution that detects malware by observing low-level system behavior and verifying file integrity, which are core HIDS functions.

Exam trap

The trap here is that candidates confuse HIDS with NIDS, thinking any 'intrusion detection' must be network-based, but the question's focus on system calls and file integrity clearly points to host-level monitoring.

Why the other options are wrong

B

The question specifies monitoring system calls and file integrity on endpoints, which is host-level activity. NIDS monitors network traffic, not endpoint system calls or file integrity.

C

A firewall controls network traffic based on rules, but it does not monitor system calls or file integrity on endpoints, which are the specific actions described in the question.

D

A VPN is used to create secure, encrypted connections over a network, not to monitor system calls or file integrity on endpoints for malware detection.

Page 1 of 2 · 98 questions totalNext →

Ready to test yourself?

Try a timed practice session using only Network Security questions.