Network Security

427 soru

Soru 421Soru

A network security team is auditing remote access infrastructure and site-to-site connectivity parameters across an enterprise environment. Match each remote access or tunneling mechanism on the left with its corresponding technical encapsulation and operational characteristic on the right.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

IPsec Encapsulating Security Payload (ESP) with NAT-Traversal (NAT-T)
Secure Socket Tunneling Protocol (SSTP)
Generic Routing Encapsulation (GRE) over IPsec Tunnel Mode
WireGuard Protocol

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

IPsec ESP with NAT-T matches encapsulation inside UDP port 4500 to protect integrity checks across PAT devices; SSTP matches encapsulation of PPP frames in SSL/TLS over TCP port 443; GRE over IPsec matches encapsulating multicast routing protocols prior to IPsec encryption; WireGuard matches the modern kernel-space cryptokey routing architecture using UDP port 51820.
Each protocol match correctly aligns the underlying encapsulation mechanism with its target operational requirement: IPsec NAT-T encapsulates ESP in UDP 4500 to survive PAT translation; SSTP packages PPP into SSL/TLS over TCP 443 for firewall traversal; GRE over IPsec enables dynamic routing by wrapping multicast traffic in unicast headers before IPsec encryption; and WireGuard delivers high performance via kernel-space cryptokey routing on UDP 51820.

Adım Adım Çözüm

1
Analyze the technical requirements of IPsec NAT-Traversal.
Recognize that NAT-T embeds IPsec ESP (protocol 50) within UDP port 4500 headers so NAT/PAT gateways can translate addresses without corrupting packets or breaking ICV checks.
Standard IPsec ESP lacks Layer 4 port numbers, causing translation failures on NAPT/PAT routers.
2
Analyze firewall traversal mechanisms for remote clients.
Identify SSTP as using TLS over TCP port 443 carrying PPP payloads to masquerade as standard HTTPS web traffic.
Standard HTTPS port 443 is almost universally permitted outward through firewalls and web proxies.
3
Evaluate multi-protocol routing over VPN tunnels.
Connect GRE over IPsec with dynamic routing (multicast) encapsulation capabilities.
IPsec ESP/AH cannot natively encapsulate multicast packets, whereas GRE creates a virtual point-to-point link supporting multicast protocols like OSPF.
4
Evaluate lightweight modern VPN implementations.
Associate WireGuard with its default UDP port 51820 and cryptokey routing model operating in kernel space.
WireGuard avoids complex IKE negotiation overhead by binding static IP addresses directly to public key cryptography configurations.

Anahtar Kavram

Encapsulation, port mapping, and operational characteristics of enterprise VPN protocols.
Soru 422Soru

A financial institution requires a technical solution for transmitting executive financial reports across an internal network. The solution must guarantee that the recipient can verify the document was not altered in transit and prove conclusively which executive authored the document. Which of the following combinations of security principles and mechanisms best addresses these requirements?

Cevabı ve açıklamayı göster

Cevap: Integrity and Non-repudiation provided by asymmetric digital signatures

Cevap

Integrity and Non-repudiation provided by asymmetric digital signatures
Asymmetric digital signatures satisfy both requirements. A cryptographic hash of the document ensures integrity by detecting any tampering in transit. Signing that hash with the sender's private key establishes non-repudiation, as only the holder of the corresponding key pair could have generated the signature.

Adım Adım Çözüm

1
Identify the key security goals from the scenario requirements
Requirement 1 (verifying data was not altered) maps to Integrity. Requirement 2 (indisputably proving author identity) maps to Non-repudiation.
Integrity protects against unauthorized modification, while Non-repudiation prevents an author from denying they created the data.
2
Analyze technical controls that support both principles simultaneously
Asymmetric digital signatures use a cryptographic hash for integrity and the signer's private key for non-repudiation.
A modified file changes the calculated hash value (failing integrity check), and only the private key owner could have produced the signature (enforcing non-repudiation).

Anahtar Kavram

CIA Triad & Core Security Concepts (Integrity and Non-repudiation)
Tahmini Süre:1m 30s
Soru 423Soru

A network administrator is configuring a public Wi-Fi network for a city airport terminal. Corporate policy mandates that passenger data transmitted over the wireless medium must be encrypted individually per session to prevent passive eavesdropping, but the system must not require user registration, passwords, or authentication credentials. Which wireless security standard or feature should the administrator implement?

Cevabı ve açıklamayı göster

Cevap: Opportunistic Wireless Encryption (OWE)

Cevap

Opportunistic Wireless Encryption (OWE)
Opportunistic Wireless Encryption (OWE) enables wireless access points and client devices to perform an unauthenticated Diffie-Hellman key exchange. This generates unique session keys for encrypting over-the-air traffic for each client on open networks without requiring passwords or authentication credentials.

Adım Adım Çözüm

1
Analyze the access and encryption requirements stated in the scenario
The network requires per-session over-the-air data encryption without requiring users to input authentication credentials or shared passphrases.
Public access networks need friction-free onboarding while still protecting user traffic from local wireless eavesdropping.
2
Evaluate candidate wireless security protocols against authentication and encryption specifications
Opportunistic Wireless Encryption (OWE) uses Diffie-Hellman key exchange to establish unique per-client encryption keys dynamically without requiring user authentication.
OWE fulfills the requirement for encrypted open access, whereas WPA3-Personal (SAE) and WPA3-Enterprise (802.1X/RADIUS) both require authentication credentials.

Anahtar Kavram

Opportunistic Wireless Encryption (OWE) for unauthenticated public Wi-Fi encryption
Soru 424Soru

A network security administrator is constructing a top-to-bottom Cisco IPv4 extended Access Control List (ACL) on a router interface to filter traffic moving from an internal administration subnet toward a datacenter network. Arrange the following ACL statements in the correct evaluation order from top (first statement) to bottom (last statement) so that specific security exceptions are honored without rule shadowing or unintended traffic blockage.

Öğeleri doğru sıraya koymak için sürükleyin

Cevabı ve açıklamayı göster

Cevap

The correct sequential order of ACL statements from top to bottom is: 1) `permit tcp host 10.20.1.5 host 172.16.10.50 eq 443`, 2) `deny ip 10.20.1.0 0.0.0.255 172.16.10.0 0.0.0.255`, 3) `permit ip 10.20.0.0 0.0.255.255 172.16.0.0 0.0.255.255`, and 4) `deny ip any any`.
Router Access Control Lists evaluate traffic sequentially from top to bottom based on a first-match policy. To enforce security policies correctly, specific rules (such as explicit host-to-host allowances) must be listed first, followed by specific subnet restrictions, then broad network permissions, and finally the catch-all implicit deny statement.

Adım Adım Çözüm

1
Place specific host-to-host permit rules at position 1.
`permit tcp host 10.20.1.5 host 172.16.10.50 eq 443` is positioned first.
ACLs process packets sequentially using first-match logic. Specific exceptions must precede broader subnet denies to prevent rule shadowing.
2
Place specific subnet deny statements at position 2.
`deny ip 10.20.1.0 0.0.0.255 172.16.10.0 0.0.0.255` is positioned second.
This restricts general access from the 10.20.1.0/2410.20.1.0/24 subnet while still allowing host 10.20.1.510.20.1.5 access due to its preceding match.
3
Place broad network permit statements at position 3.
`permit ip 10.20.0.0 0.0.255.255 172.16.0.0 0.0.255.255` is positioned third.
This allows other subnets within the 10.20.0.0/1610.20.0.0/16 range to access 172.16.0.0/16172.16.0.0/16 after specific subnet denies have been evaluated.
4
Position the implicit deny statement at position 4.
`deny ip any any` is positioned last.
Unmatched packets drop down to the final implicit deny rule.

Anahtar Kavram

ACL First-Match Processing and Rule Shadowing Prevention
Soru 425Soru

During an incident investigation on an enterprise local area network, a network administrator notices that a host workstation is sending traffic intended for the default gateway (192.168.1.1) to an unassigned MAC address (00:11:22:33:44:55) on the local switch port. Packet captures reveal unsolicited Address Resolution Protocol responses continuously mapping the gateway's IP address to the attacker's MAC address. Which of the following attack types is actively occurring on this network segment?

Cevabı ve açıklamayı göster

Cevap: ARP poisoning

Cevap

The attack occurring on the local network segment is ARP poisoning.
The correct answer describes ARP poisoning. In ARP poisoning (or ARP spoofing), an attacker broadcasts forged, unsolicited ARP reply frames across a local area network to associate their own MAC address with the IP address of a legitimate target, such as the default gateway. This causes client workstations to forward network traffic directly to the attacker's machine.

Adım Adım Çözüm

1
Analyze the observed network symptom
Unsolicited ARP responses are corrupting the host's ARP table by mapping the default gateway's IP address (192.168.1.1) to an unauthorized MAC address.
ARP (Address Resolution Protocol) maps Layer 3 IP addresses to Layer 2 MAC addresses on local broadcast domains.
2
Differentiate Layer 2 protocol manipulation from Layer 7 name resolution
The traffic manipulation is occurring at Layer 2 via ARP frame injection, not at Layer 7 through DNS name resolution tampering.
ARP operates strictly within local subnets to resolve MAC addresses for frame forwarding, while DNS maps hostnames to IP addresses.
3
Select the matching attack classification
ARP poisoning (or ARP spoofing) is identified as the exact mechanism used to facilitate this on-path attack.
Forging ARP responses to associate an attacker's MAC address with a target host's IP address directly matches the definition of ARP poisoning.

Anahtar Kavram

ARP Poisoning / ARP Spoofing
Soru 426Soru

During a network security audit, a security analyst identifies an ongoing Man-in-the-Middle (MitM) attack occurring within a local Ethernet switch segment. Packet captures reveal that workstation ARP tables are incorrectly binding the default gateway's IP address to an unauthorized endpoint's MAC address. Which of the following technical mechanisms or indicators are directly associated with this attack vector? (Select TWO.)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: Transmission of forged gratuitous ARP frames to corrupt IP-to-MAC binding tables on local endpoints; Interception and potential modification of unencrypted Layer 2 frames routed through the attacker's hardware address

Cevap

The technical mechanisms associated with this ARP poisoning attack are the transmission of forged gratuitous ARP frames to alter local IP-to-MAC cache tables and the interception or modification of unencrypted Layer 2 frames passing through the spoofed hardware address.
The scenario describes ARP cache poisoning, a local Layer 2 attack where an adversary broadcasts forged gratuitous ARP replies. This overwrites host ARP tables to associate the gateway IP with the attacker's MAC address, allowing the attacker to intercept and modify unencrypted traffic.

Adım Adım Çözüm

1
Analyze the incident symptoms presented in the scenario.
The incorrect binding of the default gateway IP address to an unauthorized host MAC address indicates an ARP cache poisoning attack on the local switch segment.
ARP cache poisoning specifically targets Layer 2 address resolution tables so local network traffic is misrouted to an attacker's network interface.
2
Identify the technical mechanisms used to execute local ARP poisoning.
The attacker broadcasts unsolicited gratuitous ARP packets with forged IP-to-MAC pairings, causing host systems to update their ARP tables and forward unencrypted frames through the attacker's hardware address.
The ARP protocol lacks built-in authentication, causing endpoints to implicitly trust received ARP updates.
3
Differentiate ARP cache poisoning from external attacks such as DNS record tampering and DDoS amplification.
DNS record manipulation and UDP reflector amplification target external name resolution infrastructure and bandwidth availability, whereas ARP poisoning operates exclusively within the local broadcast domain at Layer 2.
Evaluating protocol layers differentiates local data-link attacks from transport or application layer service disruptions.

Anahtar Kavram

ARP Poisoning and Man-in-the-Middle (MitM) Attacks
Soru 427Soru

An enterprise network administrator notices that wireless clients in a branch office are repeatedly disconnected from the secure corporate Wi-Fi network. Subsequent packet analysis reveals a stream of spoofed 802.11 management frames instructing host devices to sever their existing wireless associations, followed immediately by hosts connecting to an unauthorized access point operating on a higher-power channel while broadcasting the identical corporate Service Set Identifier (SSID). Which network attack vector is being executed?

Cevabı ve açıklamayı göster

Cevap: A deauthentication attack combined with an Evil Twin access point

Cevap

A deauthentication attack combined with an Evil Twin access point
The scenario describes a wireless deauthentication attack paired with an Evil Twin. An attacker transmits spoofed 802.11 management frames (deauthentication/disassociation) to break legitimate client connections, causing devices to automatically search for and associate with the strongest available signal broadcasting the expected SSID—which is provided by the attacker's rogue Evil Twin access point.

Adım Adım Çözüm

1
Analyze the observed wireless frame behavior
Identify 802.11 management frames carrying disassociation requests
Deauthentication frames explicitly force wireless stations to disconnect from an Access Point without requiring authentication from the sender.
2
Evaluate client re-association target
Clients connect to an unauthorized access point broadcasting the identical SSID
Setting up a rogue access point with identical network identifiers (SSID) to capture reconnecting clients defines an Evil Twin attack.

Anahtar Kavram

Wireless Attacks: Deauthentication and Evil Twin Vectors
Tahmini Süre:1m 15s
ÖncekiSayfa 22 / 22
Network Security Alıştırma Soruları — CompTIA Network+ — Sayfa 22 | Examkin