Network Security

427 soru

Soru 281Soru

A network engineer is configuring stateless Access Control Lists (ACLs) on a Layer 3 switch to secure communication between an application tier subnet (172.16.10.0/24172.16.10.0/24) and a database tier subnet (10.20.30.0/2410.20.30.0/24). The application servers must establish connection requests to MySQL database instances listening on TCP port 33063306. Because the filtering device is a stateless ACL rather than a stateful firewall, bidirectional rules must be defined explicitly. Which TWO of the following ACL entries must be configured on the database interface to allow this traffic flow while maintaining state awareness manually?

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

Cevabı ve açıklamayı göster

Cevap: An inbound rule permitting TCP traffic from source subnet 172.16.10.0/24172.16.10.0/24 on ephemeral ports to destination subnet 10.20.30.0/2410.20.30.0/24 on destination port 33063306.; An outbound rule permitting TCP traffic from source subnet 10.20.30.0/2410.20.30.0/24 on source port 33063306 to destination subnet 172.16.10.0/24172.16.10.0/24 on ephemeral ports.

Cevap

The correct requirements are the inbound rule permitting TCP traffic from the application subnet to destination port 3306, and the outbound rule permitting TCP return traffic from source port 3306 to the application subnet.
Stateless ACLs process each packet in isolation against the access list rules. Because they do not maintain a dynamic connection state table, a complete bidirectional traffic flow requires both an inbound permit rule for the initial request (from application servers to destination port 3306) and an explicit outbound permit rule for the response traffic (from database source port 3306 back to client ephemeral ports).

Adım Adım Çözüm

1
Identify transport layer requirements for the database service.
MySQL uses TCP on destination port 3306 for reliable client-server communication.
Choosing the correct protocol (TCP vs. UDP) is necessary when writing extended ACL rules.
2
Analyze the operational difference between stateful firewalls and stateless ACLs.
Stateless ACLs analyze individual packets independently and do not maintain a state table to dynamic permit return traffic.
Return traffic generated by the database server will be blocked by the ACL implicit deny rule unless an explicit outbound rule is defined.
3
Construct the required inbound and outbound ACL rule pair.
Inbound entry permits TCP traffic from application hosts (172.16.10.0/24172.16.10.0/24) to database hosts (10.20.30.0/2410.20.30.0/24) on port 33063306. Outbound entry permits TCP return traffic from database hosts (source port 33063306) back to application hosts.
Both rules are mandatory to complete the full two-way TCP handshake and session payload exchange on a stateless device.

Anahtar Kavram

Stateless ACL Directionality and Protocol Requirements
Soru 282Soru

Following an internal security audit of enterprise network infrastructure, a network engineer must remediate vulnerabilities on several Layer 3 switches. The audit report specifically highlighted risks associated with management plane traffic eavesdropping and VLAN hopping exploits on trunk links. Which of the following TWO device hardening measures should the engineer implement to directly address these findings? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Configure SNMPv3 using the authPriv security mode to enforce cryptographic authentication and message payload encryption.; Reassign the 802.1Q native VLAN on trunk links from the default VLAN 1 to an explicit, unused VLAN ID.

Cevap

The correct hardening actions are enabling SNMPv3 with authPriv for encrypted telemetry and reassigning the native VLAN on 802.1Q trunk links to an unused VLAN ID.
Hardening network switches against eavesdropping and trunk link attacks requires securing both management protocols and Layer 2 interfaces. Configuring SNMPv3 with the authPriv setting ensures authentication and full payload encryption for management communications. Furthermore, reassigning the native VLAN from default VLAN 1 to an unused VLAN ID prevents attacker frames from jumping broadcast domains via 802.1Q double-tagging.

Adım Adım Çözüm

1
Analyze management plane security requirements
Identify that SNMPv3 authPriv provides both authentication and payload privacy (encryption), unlike unencrypted SNMPv1/v2c.
Management plane protocols must prevent unauthorized access and credential/data interception.
2
Analyze trunk link vulnerability mitigations
Identify that changing the default native VLAN (VLAN 1) to a dedicated, unused VLAN ID prevents VLAN hopping exploits.
Crafted double-tagged 802.1Q frames rely on the native VLAN matching between switches to cross VLAN boundaries.
3
Evaluate distractor controls
Reject SNMPv2c, leaving unused ports in default VLAN 1, and Telnet on port 22 as insecure or incorrect implementations.
Insecure defaults and incorrect protocol choices introduce security vulnerabilities.

Anahtar Kavram

Management plane protocol encryption and Layer 2 trunk baseline security
Tahmini Süre:2m 0s
Soru 283Soru

A network analyst inspecting a packet capture between a wireless access point and a centralized authentication server observes that while the user password field within the Access-Request frame is obscured, the username and assigned VLAN attributes are visible in cleartext. Which operational characteristic of the RADIUS protocol accounts for this observed behavior?

Cevabı ve açıklamayı göster

Cevap: RADIUS encrypts only the password attribute within the packet body, leaving the remaining header and attribute-value pairs unencrypted over UDP.

Cevap

RADIUS encrypts only the password attribute within the packet body, leaving the remaining header and attribute-value pairs unencrypted over UDP.
The RADIUS protocol (RFC 2865) operates over UDP (typically ports 1812 for authentication/authorization and 1813 for accounting) and encrypts only the User-Password attribute using an MD5-based algorithm with the shared secret. Other attributes such as User-Name, NAS-IP-Address, and vendor-specific attributes (like VLAN assignments) remain unencrypted in the packet body.

Adım Adım Çözüm

1
Analyze the observed network packet capture characteristics
Password field is encrypted/obscured, but username and VLAN attributes are readable in cleartext.
This behavior directly matches the specific cryptographic boundary defined in the standard RADIUS protocol (RFC 2865).
2
Evaluate RADIUS protocol transport and security properties
RADIUS uses UDP (ports 1812/1813) and encrypts only the user password field using the shared secret.
Unlike TACACS+, which encrypts the entire payload over TCP port 49, RADIUS maintains unencrypted headers and RADIUS attributes to allow middleboxes to route packets.
3
Select the option describing RADIUS packet encryption boundaries
Identify the option stating that RADIUS encrypts only the password attribute while leaving the rest of the payload unencrypted over UDP.
This accurately explains why the analyst can read usernames and vendor attributes while seeing obscured passwords.

Anahtar Kavram

RADIUS vs TACACS+ Payload Encryption Boundaries
Soru 284Soru

A network administrator is configuring a new wireless deployment for a corporate headquarters. The company's security policy requires each employee to authenticate using their individual domain credentials managed by a central RADIUS server, while ensuring robust encryption for all wireless traffic. Which wireless security configuration best fulfills these operational requirements?

Cevabı ve açıklamayı göster

Cevap: WPA3-Enterprise with 802.1X authentication and CCMP/GCMP encryption

Cevap

WPA3-Enterprise with 802.1X authentication and CCMP/GCMP encryption
WPA3-Enterprise utilizes 802.1X port-based network access control to pass authentication traffic between wireless clients and a RADIUS server, ensuring each user logs in with distinct credentials. It couples this with robust AES encryption (CCMP/GCMP) for data confidentiality.

Adım Adım Çözüm

1
Identify the authentication requirement from the scenario
Individual user credentials authenticated via a central RADIUS server require an 802.1X solution (Enterprise mode).
Personal modes (PSK/SAE) use a single shared key across all endpoints, which fails to provide per-user accountability.
2
Identify the standard and encryption protocols that satisfy enterprise security guidelines
WPA3-Enterprise combined with 802.1X authentication and CCMP/GCMP symmetric encryption.
WPA3-Enterprise mandates 802.1X EAP-based authentication with 128-bit or 192-bit cryptographic strength.

Anahtar Kavram

Wireless Security Standards and Encryption Protocols
Soru 285Soru

During a routine security audit, a systems engineer notices that remote administration sessions to a core network switch transmit credentials in plaintext. Which administrative change should be implemented to secure interactive command-line access to the switch?

Cevabı ve açıklamayı göster

Cevap: Enable SSH and disable Telnet on the switch management interface.

Cevap

Enable SSH and disable Telnet on the switch management interface.
Replacing Telnet with SSH ensures all management sessions are cryptographically secured using TCP port 22. SSH encrypts administrative credentials and commands, preventing eavesdropping and packet capture attacks across the network.

Adım Adım Çözüm

1
Identify the security vulnerability in the current remote management configuration.
The current remote administration protocol transmits credentials and commands in cleartext.
Telnet operates on TCP port 23 without cryptographic protection, leaving sessions vulnerable to packet sniffing.
2
Select the industry standard encrypted protocol for interactive command-line management.
SSH (Secure Shell) provides confidentiality and integrity using strong payload encryption over TCP port 22.
Hardening switch management requires disabling legacy cleartext services in favor of secure, encrypted alternatives.

Anahtar Kavram

Device Hardening via Secure Management Protocols
Tahmini Süre:45s
Soru 286Soru

An organization is deploying a centralized AAA architecture, configuring RADIUS for 802.1X wireless access and TACACS+ for administration of network infrastructure devices. Which of the following operational characteristics accurately describe these protocols in this design? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: TACACS+ encrypts the entire body of the packet, whereas RADIUS encrypts only the password field.; TACACS+ separates authentication, authorization, and accounting functions into independent processes, whereas RADIUS combines authentication and authorization.

Cevap

TACACS+ encrypts the entire payload of the packet while RADIUS encrypts only the password field, and TACACS+ separates AAA functions into independent processes while RADIUS combines authentication and authorization.
TACACS+ encrypts the entire packet body and separates authentication, authorization, and accounting into distinct processes operating over TCP port 49. In contrast, RADIUS encrypts only the password field within packets and combines authentication and authorization over UDP ports 1812/1813.

Adım Adım Çözüm

1
Analyze encryption boundaries between RADIUS and TACACS+.
Identify that TACACS+ encrypts the complete packet payload, whereas RADIUS encrypts only the user's password within the attribute payload.
TACACS+ offers greater confidentiality for command arguments and packet contents across the wire.
2
Evaluate AAA functional decoupling and transport protocol requirements.
Determine that TACACS+ decouples authentication, authorization, and accounting over TCP port 49, while RADIUS combines authentication and authorization over UDP ports 1812 and 1813.
Modular AAA separation allows TACACS+ to enforce command-by-command authorization during network management sessions.

Anahtar Kavram

RADIUS vs. TACACS+ Protocol Architecture and Features
Soru 287Soru

A network infrastructure team is deploying an edge micro data center enclosure on an active manufacturing floor to process real-time telemetry. Due to high physical traffic, ambient dust, and unauthorized personnel in the vicinity, the team must implement appropriate physical security access controls and environmental protection measures for the enclosure. Which TWO of the following controls should be deployed to address these specific access and environmental threats?

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

Cevabı ve açıklamayı göster

Cevap: Install smartcard badge readers with PIN keypads on the enclosure doors and configure positive air pressure system within the cabinet; Deploy environmental monitoring sensors that trigger alerts if enclosure ambient temperature or humidity breaches defined thresholds

Cevap

The two correct measures are installing smartcard badge readers with PIN keypads alongside a positive pressure HVAC/air filtration system, and deploying environmental monitoring sensors for temperature and humidity tracking.
Implementing smartcard badge readers with PIN keypads establishes multi-factor physical authentication to prevent unauthorized physical access on the factory floor, while positive air pressure prevents dust and particulates from entering the cabinet. In addition, environmental monitoring sensors provide essential real-time monitoring of cabinet temperature and humidity levels to protect delicate network hardware from environmental stress.

Adım Adım Çözüm

1
Analyze the physical access requirements of the scenario.
Identified the need to prevent unauthorized physical opening of the edge enclosure on a high-traffic manufacturing floor.
Combining smartcard badges with PIN keypads establishes multifactor physical authentication, ensuring only authorized technicians can open cabinet doors.
2
Analyze the environmental threat requirements.
Identified dust contamination and ambient heat/humidity risks present on an active manufacturing plant floor.
Positive pressure HVAC prevents dust ingress by forcing clean air outward whenever cabinet seals flex, and internal environmental sensors ensure real-time alerting for temperature and humidity anomalies.
3
Evaluate and eliminate incorrect logical security tools and misapplied hardware testing utilities.
Discarded OTDR usage for perimeter security, IP ACLs for physical security, and insecure SNMPv2c protocol downgrades.
Physical security controls must directly address physical touch, access doors, particulate protection, and thermal monitoring rather than logical network layer rules or fiber diagnostic tools.

Anahtar Kavram

Physical Access Control and Environmental Protection Measures
Soru 288Soru

A senior network security architect is designing physical and environmental defense controls for a tier-four enterprise data facility housing mission-critical financial databases. Match each physical or environmental control mechanism on the left with its primary security or environmental risk mitigation capability on the right.

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

Öğeler

Aspirating Smoke Detection System (VESDA)
Clean-Agent Gaseous Fire Suppression System
Interlocked Mantrap with Integrated Mass Sensors
Alarmed Protected Distribution System (PDS)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Aspirating Smoke Detection System (VESDA) matches with continuous air sampling for sub-micron particulate detection; Clean-Agent Gaseous Fire Suppression System matches with non-conductive, residue-free electrical fire extinguishment; Interlocked Mantrap with Integrated Mass Sensors matches with mass-threshold single-occupancy enforcement to prevent piggybacking; Alarmed Protected Distribution System (PDS) matches with optical or acoustic vibration monitoring along conduit runs.
Each physical security and environmental measure corresponds directly to a distinct threat vector: VESDA provides active sub-micron air sampling prior to visible smoke; clean agents suppress electrical fires without damaging hardware or leaving chemical residue; weight-sensing mantraps prevent physical tailgating via mass verification; and alarmed PDS monitors cabling conduits for vibration or tapping anomalies.

Adım Adım Çözüm

1
Analyze the operational mechanism of high-sensitivity early warning smoke detection.
Identify Aspirating Smoke Detection Systems (VESDA) as active sampling units that detect sub-micron combustion particles before visible smoke forms.
Early warning detection allows engineers to remove power from overheating components before open flames ignite.
2
Evaluate fire suppression systems suitable for sensitive energized networking hardware.
Match Clean-Agent Gaseous Fire Suppression Systems to non-conductive gas discharge that leaves no corrosive residue.
Water sprinklers cause catastrophic short circuits and hardware destruction, whereas clean gaseous agents suppress electrical fires without damaging active electronics.
3
Determine physical access control mechanisms engineered specifically against piggybacking/tailgating.
Link Interlocked Mantraps with Integrated Mass Sensors to weight-verified single-occupancy access.
Standard card readers confirm identity but cannot verify total human count; integrated weight plates prevent secondary unauthorized individuals from walking through behind an authorized person.
4
Identify physical infrastructure monitoring controls for high-security network cabling.
Associate Alarmed Protected Distribution Systems (PDS) with acoustic/optical conduit intrusion sensing.
Alarmed PDS provides automated real-time alerts whenever physical tampering or drilling into protected conduit lines is attempted.

Anahtar Kavram

Physical Security Controls and Environmental Protection Measures
Tahmini Süre:2m 0s
Soru 289Soru

During an internal penetration test, an analyst connects a laptop to a standard user access port on a Managed Layer 2 switch. Without deploying double-encapsulated 802.1Q tags or compromising any credentials, the analyst crafts specific control frames that force the switch port into an active trunking state. This allows the laptop to send and receive traffic across multiple restricted VLANs. Which attack vector was exploited to breach VLAN isolation, and what is the primary mitigation step required to prevent it?

Cevabı ve açıklamayı göster

Cevap: Dynamic Trunking Protocol (DTP) exploitation; mitigate by explicitly setting switch ports to static access mode and disabling negotiation.

Cevap

Dynamic Trunking Protocol (DTP) exploitation; mitigate by explicitly setting switch ports to static access mode and disabling negotiation.
The correct answer identifies Dynamic Trunking Protocol (DTP) exploitation. When switch access ports are left in default dynamic modes (such as dynamic auto or desirable), an attacker sending spoofed DTP frames can trick the switch into forming an 802.1Q trunk. This grants the attacker access to all VLANs traversing that trunk. Hardcoding access ports statically (`switchport mode access`) and explicitly disabling DTP (`switchport nonegotiate`) prevents this vulnerability.

Adım Adım Çözüm

1
Analyze the observed attack mechanics
The attacker connected to a standard access port and sent control frames that successfully negotiated an 802.1Q trunking operational state without using double-tagging.
Unmanaged or default switch port configurations often run Cisco Dynamic Trunking Protocol (DTP) in 'dynamic auto' or 'dynamic desirable' modes.
2
Identify the specific attack vector
The vector is DTP Exploitation (VLAN Hopping via DTP spoofing).
By spoofing DTP negotiation frames from an end-user device, the port switches from an access port to a trunk port, giving the attacker access to traffic from all VLANs allowed on the trunk.
3
Determine the proper remediation strategy
Configure user-facing interfaces with `switchport mode access` and `switchport nonegotiate` (or manually disable DTP).
Hardcoding ports as static access interfaces disables automatic trunk negotiation, ensuring that end-user ports cannot be coerced into establishing trunk links.

Anahtar Kavram

VLAN Hopping via Dynamic Trunking Protocol (DTP) Exploitation and Switch Port Hardening
Soru 290Soru

A network administrator is setting up a secure remote access VPN that uses Layer 2 Tunneling Protocol over IPsec (L2TP/IPsec). Place the steps required to establish a fully functional L2TP/IPsec VPN connection in the correct chronological order from first to last.

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

Cevabı ve açıklamayı göster

Cevap

The correct order for establishing an L2TP/IPsec remote access VPN session is: 1) Negotiating IPsec Phase 1 (ISAKMP SA) over UDP port 500, 2) Negotiating IPsec Phase 2 Quick Mode SAs to encrypt UDP port 1701 via ESP, 3) Establishing the L2TP control connection and session inside the IPsec tunnel, 4) Performing PPP LCP negotiation and user authentication (MS-CHAPv2/EAP), and 5) Completing PPP IPCP to assign an internal IP address and network configuration to the client.
L2TP/IPsec is a dual-protocol VPN solution where IPsec provides confidentiality/authentication and L2TP provides data link tunneling. The sequence must strictly begin with IPsec Phase 1 (UDP 500) to build the ISAKMP SA, followed by IPsec Phase 2 to secure UDP 1701 via ESP. Once IPsec encryption is active, the L2TP tunnel is established, followed by PPP user authentication (MS-CHAPv2/EAP), and finally PPP IPCP address assignment to complete remote network integration.

Adım Adım Çözüm

1
Identify the foundational security layer establishment.
IPsec Phase 1 (UDP port 500) initiates first.
L2TP lacks native encryption, so the IPsec secure channel must be built prior to L2TP negotiation.
2
Identify the data protection layer for the tunneling protocol.
IPsec Phase 2 negotiates ESP parameters specifically protecting UDP port 1701.
L2TP operates over UDP port 1701, which requires an active IPsec transform set to encrypt L2TP control and payload traffic.
3
Establish the L2TP tunnel.
L2TP control connection and session form within the secure IPsec transport.
Now that UDP port 1701 traffic is encrypted by IPsec, L2TP can safely negotiate its tunnel endpoints.
4
Authenticate the remote user.
PPP user authentication (MS-CHAPv2/EAP) executes across the L2TP session.
L2TP frames carry PPP payloads, allowing the gateway to verify user identity over the encrypted channel.
5
Provision network layer parameters.
PPP IPCP assigns an internal private IP address and DNS details to the client.
IP configuration must happen last so the authenticated client can begin routing IP traffic through the established tunnel.

Anahtar Kavram

L2TP/IPsec Encapsulation and Session Establishment Sequence
Soru 291Soru

A network technician is configuring a new standalone wireless access point using WPA3-Personal for a small branch office that lacks a centralized AAA/RADIUS infrastructure. Which of the following technical features are native capabilities of WPA3-Personal that directly enhance security compared to WPA2-Personal? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Simultaneous Authentication of Equals (SAE) protocol to provide forward secrecy and resistance against offline dictionary attacks.; Mandatory Protected Management Frames (PMF) to prevent rogue deauthentication and disassociation spoofing attacks.

Cevap

The native features of WPA3-Personal that enhance security over WPA2-Personal are Simultaneous Authentication of Equals (SAE) for forward secrecy and offline dictionary attack resistance, and mandatory Protected Management Frames (PMF) to protect against management frame spoofing.
WPA3-Personal significantly improves Wi-Fi security by replacing WPA2's PSK exchange with Simultaneous Authentication of Equals (SAE), a Diffie-Hellman-based key exchange protocol that prevents offline dictionary attacks even when weak passphrases are used. Additionally, WPA3 makes Protected Management Frames (PMF / 802.11w) mandatory, safeguarding management traffic such as deauthentication and disassociation frames from being spoofed by malicious actors.

Adım Adım Çözüm

1
Analyze the scenario constraints and requirements
The branch office lacks RADIUS infrastructure, meaning WPA3-Enterprise features are not applicable, focusing the analysis on WPA3-Personal enhancements.
WPA3-Personal is designed for environments without 802.1X/RADIUS servers.
2
Evaluate key WPA3-Personal security enhancements
SAE replaces PSK to defend against brute-force dictionary attacks, and PMF (IEEE 802.11w) becomes mandatory to block unauthenticated management frame attacks.
These two specifications constitute the defining technical security upgrades from WPA2-Personal to WPA3-Personal.

Anahtar Kavram

WPA3-Personal Security Enhancements (SAE and PMF)
Soru 292Soru

A network administrator is auditing the organization's wireless security baseline. Match each wireless security standard on the left with its corresponding primary encryption protocol or cryptographic suite on the right.

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

Öğeler

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

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

WEP matches RC4 with a 24-bit IV; WPA matches TKIP with RC4; WPA2 matches CCMP with AES; WPA3 matches GCMP-128 with AES and SAE.
Each wireless security generation relies on a distinct cryptographic suite: legacy WEP uses RC4 with a 24-bit IV, WPA uses TKIP wrapper around RC4, WPA2 standardizes AES-CCMP, and WPA3 mandates AES-GCMP along with SAE authentication.

Adım Adım Çözüm

1
Analyze WEP requirements
WEP relies on RC4 with a short 24-bit IV.
This is the original 802.11 security mechanism.
2
Analyze WPA requirements
WPA introduces TKIP to encapsulate RC4 and add Michael MIC.
It served as an interim fix for WEP devices.
3
Analyze WPA2 requirements
WPA2 mandates CCMP utilizing AES.
Provides robust confidentiality and integrity under 802.11i.
4
Analyze WPA3 requirements
WPA3 utilizes GCMP-128/256 with SAE.
Represents the modern Wi-Fi security standard replacing PSK and upgrading ciphers.

Anahtar Kavram

Wireless Security Standards and Encryption Protocols
Tahmini Süre:1m 30s
Soru 293Soru

A tier-2 Security Operations Center (SOC) analyst is analyzing threat intelligence logs and network packet captures from a recent enterprise security incident. Match each observed technical attack metric or anomalous protocol behavior to its corresponding network attack classification.

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

Öğeler

Rapid injection of frames containing randomized source physical addresses to saturate switch memory tables and force traffic onto all active ports.
Transmission of continuous TCP connection requests with spoofed return addresses to saturate embryonic socket queues without sending final ACK packets.
Emission of high-power electromagnetic noise across specific wireless spectrum channels to lower the signal-to-noise ratio and drop client connections.
Operation of an unauthorized wireless base station configured with a duplicated Service Set Identifier (SSID) to intercept client traffic.

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

The correct pairings match MAC Address Flooding with saturating switch memory via randomized source addresses; TCP SYN Flood with filling embryonic connection queues using unacknowledged SYN packets; RF Jamming with emitting high-power noise to lower wireless SNR; and Evil Twin Access Point with deploying an unauthorized base station using a duplicated SSID.
Each attack vector targets specific network layers and operational characteristics: MAC address flooding targets Layer 2 switch CAM tables by exhausting memory entries; TCP SYN flooding targets Layer 4 TCP connection state queues by leaving handshakes incomplete; RF jamming targets Layer 1 physical wireless channels by suppressing signal-to-noise ratios; and Evil Twin attacks target Layer 2 802.11 association procedures by impersonating valid network SSIDs.

Adım Adım Çözüm

1
Analyze the Layer 2 switch memory table anomaly.
Identify that flooding randomized source MAC addresses exhausts the Content Addressable Memory (CAM) table, defining MAC Address Flooding.
Switches store learned MAC addresses in CAM tables; when full, the switch falls back to fail-open mode, broadcasting unicast frames to all ports.
2
Analyze the Layer 4 transport layer connection queue saturation.
Identify that continuous unacknowledged SYN packets fill embryonic connection queues, defining a TCP SYN Flood.
The TCP three-way handshake requires a final ACK to complete connection state; withholding ACKs leaves sockets stuck in the SYN_RECEIVED state until resources are exhausted.
3
Analyze the physical wireless spectrum interference anomaly.
Identify that emitting high-power radio noise to lower signal-to-noise ratio corresponds to Radio Frequency (RF) Jamming.
Wireless communication relies on an acceptable signal-to-noise ratio (SNR); high-power interference overwhelms legitimate radio signals, causing denial of service.
4
Analyze the rogue wireless access point impersonation vector.
Identify that deploying a rogue base station with a duplicate corporate SSID corresponds to an Evil Twin attack.
Wireless client devices automatically probe and connect to known SSIDs offering strong signal levels, enabling man-in-the-middle interception.

Anahtar Kavram

Identifying Network Attack Types and Operational Vectors across OSI Layers
Soru 294Soru

A network technician is preparing a newly unboxed switch for deployment on a corporate network. Place the following administrative device hardening steps in the correct chronological order from first to last.

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

Cevabı ve açıklamayı göster

Cevap

The correct sequence begins with establishing an out-of-band serial console connection, followed by updating default administrative passwords, configuring SSH while disabling Telnet, and concluding with applying management Access Control Lists and shutting down unused ports.
Device hardening follows a logical sequence: first connecting directly via an out-of-band console cable, changing default passwords to secure administrative access, enabling encrypted SSH management while turning off unencrypted Telnet, and finally restricting network access with management ACLs and shutting down unused physical ports.

Adım Adım Çözüm

1
Establish out-of-band console access
Direct command-line interface access is established locally.
Initial setup must be performed out-of-band before remote access services or IP network interfaces exist.
2
Change default administrative credentials
Factory default usernames and passwords are removed and secured.
Default account credentials leave the switch vulnerable to unauthorized login if remote management is enabled.
3
Configure SSH and disable Telnet
Remote administrative communications are encrypted and unencrypted Telnet access is disabled.
Secure remote access requires crypto key generation and active user credentials before remote login can occur.
4
Apply management ACLs and disable unused ports
Unused physical ports are disabled and remote management is restricted to authorized subnets.
Restricting IP management access and turning off unused ports completes the baseline hardening phase.

Anahtar Kavram

Chronological Baseline Hardening Sequence for Network Switches
Tahmini Süre:1m 0s
Soru 295Soru

A network security engineer is tasked with hardening the management plane of a newly installed enterprise edge router to ensure administrative traffic and network telemetry are fully protected against unauthorized access and packet inspection. Which set of configuration actions represents the best practice for hardening the device?

Cevabı ve açıklamayı göster

Cevap: Implement SNMPv3 with authPriv for encrypted telemetry, disable Telnet and HTTP daemons in favor of SSH and HTTPS, and reassign the native VLAN on 802.1Q trunks from VLAN 1 to an unused VLAN ID.

Cevap

Implement SNMPv3 with authPriv for encrypted telemetry, disable Telnet and HTTP daemons in favor of SSH and HTTPS, and reassign the native VLAN on 802.1Q trunks from VLAN 1 to an unused VLAN ID.
The correct configuration establishes a complete hardening baseline by encrypting management traffic (SSH and HTTPS), securing telemetry with strong authentication and payload encryption (SNMPv3 authPriv), and isolating trunking vulnerabilities by reassigning the untagged native VLAN away from default VLAN 1.

Adım Adım Çözüm

1
Analyze administrative transport protocol security
Identify plaintext daemons (Telnet, HTTP) and replace them with encrypted protocols (SSH, HTTPS).
Plaintext management protocols transmit credentials and session data unencrypted across the network.
2
Select the appropriate SNMP version and security mode
Configure SNMPv3 with the authPriv security level.
authPriv provides both HMAC-based authentication and symmetric encryption for SNMP telemetry payloads.
3
Review Layer 2 trunk baseline hardening requirements
Change the default 802.1Q native VLAN away from VLAN 1 to a dedicated, unused VLAN ID.
Using default VLAN 1 for untagged trunk traffic exposes the switch infrastructure to double-tagging (VLAN hopping) vectors.

Anahtar Kavram

Network Device Baseline Hardening
Soru 296Soru

A network security administrator is deploying a core Layer 3 router into an enterprise environment. To establish secure administrative remote access, the administrator must configure the management plane from the local console port before exposing the device to the network. In what chronological order should the administrator perform the following hardening steps to correctly enable encrypted remote management?

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

Cevabı ve açıklamayı göster

Cevap

The correct sequence for hardening remote management plane access is: 1) Configure a unique system hostname and IP domain name on the router, 2) Generate persistent RSA asymmetric encryption key pairs, 3) Configure local administrative user credentials and enforce SSH transport on the VTY lines while disabling cleartext protocols, 4) Apply an inbound access control list (ACL) to the VTY lines to restrict management access exclusively to authorized administration subnets.
Establishing secure administrative remote access on network hardware follows a strict dependency chain: the device identity (hostname and domain name) must exist first so that RSA host keys can be generated. Once keys exist, the SSH daemon can be enabled on VTY lines and Telnet disabled. Finally, access control lists are applied to the VTY lines to restrict inbound management traffic strictly to authorized management subnets.

Adım Adım Çözüm

1
Define the system identity by assigning a hostname and domain name.
The device forms its Fully Qualified Domain Name (FQDN), which is required by key generation utilities.
Cryptographic key generation algorithms fail or use default temporary parameters if the device lacks a domain identity.
2
Execute the crypto key generation command to build asymmetric RSA host keys.
The router creates and stores public/private key pairs used for SSH transport encryption.
SSH protocol daemons cannot initialize or negotiate secure sessions without pre-generated host keys.
3
Configure local AAA/user authentication and set VTY line transport input to SSH only.
Unencrypted Telnet management access is disabled, and remote connections require encrypted SSH authentication.
Restricting transport lines to SSH ensures credentials and session data are protected against eavesdropping.
4
Create and bind an inbound IPv4/IPv6 ACL to the VTY lines.
Remote management attempts from unauthorized IP addresses or subnets are dropped at the interface level.
Restricting source IP addresses adds defense-in-depth, mitigating brute-force and unauthorized access attempts against the management plane.

Anahtar Kavram

Management Plane Hardening & SSH Infrastructure Deployment Sequence
Tahmini Süre:2m 0s
Soru 297Soru

A network security administrator is aligning enterprise operational controls with fundamental security principles. Match each security mechanism or operational scenario to the core CIA Triad or security concept it primarily enforces.

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

Öğeler

Encrypting web application session tokens in transit using TLS 1.3
Generating and validating SHA-256 checksums for software installation packages
Deploying redundant fault-tolerant SAN storage arrays across dual power feeds
Requiring asymmetric digital signatures on electronic contract documents

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Encrypting web application session tokens maps to Confidentiality; SHA-256 checksum validation maps to Integrity; Redundant SAN storage and dual power feeds map to Availability; Asymmetric digital signatures map to Non-repudiation.
Each mechanism aligns directly with its fundamental security goal: TLS encryption safeguards confidentiality against interception; SHA-256 hashing preserves integrity by verifying data unalterability; redundant hardware ensures availability via continuous service; digital signatures establish non-repudiation by mathematically binding signers to data.

Adım Adım Çözüm

1
Analyze encrypting web application session tokens
Identified goal as preventing eavesdropping and unauthorized inspection
Protecting data from unauthorized disclosure is the definition of Confidentiality.
2
Analyze SHA-256 checksum validation
Identified goal as verifying data hasn't been altered or corrupted
Ensuring data accuracy and preventing unauthorized tampering is the core purpose of Integrity.
3
Analyze redundant SAN storage and dual power feeds
Identified goal as maintaining operational uptime and preventing single points of failure
Guaranteeing reliable access to data and systems for authorized users defines Availability.
4
Analyze asymmetric digital signatures on contract documents
Identified goal as proving document origin and authenticity without denial
Providing cryptographic proof of source identity so an entity cannot deny an action satisfies Non-repudiation.

Anahtar Kavram

CIA Triad & Core Security Concepts
Soru 298Soru

A network administrator is retrofitting an unmonitored Intermediate Distribution Frame (IDF) closet located directly beneath an active plumbing line in a satellite office. Facilities management raised concerns regarding potential unauthorized physical opening of the network enclosures during off-hours cleaning, as well as the risk of water condensation or plumbing leaks causing hardware damage.

Which TWO of the following physical and environmental controls should the network administrator deploy to directly mitigate these specific threats?

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

Cevabı ve açıklamayı göster

Cevap: Chassis intrusion sensors integrated with automated alerting systems; Spot or rope liquid detection sensors placed beneath the pipe route and rack base

Cevap

The administrator should deploy chassis intrusion sensors to detect unauthorized cabinet access and liquid detection sensors to monitor for water leaks or condensation.
Deploying chassis intrusion sensors directly addresses unauthorized physical opening of network rack enclosures by generating security alerts when cabinet doors are opened. Deploying liquid detection sensors beneath overhead plumbing routes and near rack bases provides early warning of water leaks or moisture accumulation before physical equipment damage occurs.

Adım Adım Çözüm

1
Analyze the physical security threat in the scenario
Identified threat: Unauthorized opening or physical tampering of network equipment enclosures during off-hours.
Chassis intrusion switches/sensors monitor cabinet doors and send instant notifications if opened without permission.
2
Analyze the environmental threat in the scenario
Identified threat: Water condensation or liquid intrusion from overhead plumbing.
Liquid detection rope or spot sensors installed near overhead pipes or cabinet drip pans alert administrators immediately upon contact with conductive fluid.
3
Evaluate and eliminate non-matching security controls
Faraday cages, clean-agent suppression systems, and aisle containment address electromagnetic interference, fire suppression, and airflow management respectively, not physical intrusion or pipe leakage.
Controls must directly align with the specific threat vectors described in the scenario.

Anahtar Kavram

Physical Security Controls and Environmental Measures
Soru 299Soru

A network security administrator is configuring a newly deployed wireless network for corporate headquarters. The organization's compliance policy specifies that every user must authenticate individually using their RADIUS credentials and that all management frames must be protected against spoofing attacks. Which of the following wireless security configurations fulfills these requirements?

Cevabı ve açıklamayı göster

Cevap: WPA3-Enterprise using 802.1X authentication

Cevap

WPA3-Enterprise using 802.1X authentication is the correct choice because it integrates with RADIUS for individual identity verification while enforcing Protected Management Frames.
WPA3-Enterprise implements 802.1X/EAP authentication to validate users individually against a RADIUS infrastructure. Additionally, WPA3 mandates Protected Management Frames (PMF) to guard against eavesdropping and frame forge attacks.

Adım Adım Çözüm

1
Analyze authentication requirements
Individual user authentication via RADIUS requires an Enterprise mode (802.1X) rather than Personal/Pre-Shared Key (PSK/SAE) modes.
Enterprise modes decouple access control to centralized authentication servers (RADIUS/AAA).
2
Evaluate protection of management frames
WPA3 security standards mandate Protected Management Frames (PMF/802.11w) by default.
PMF prevents malicious actors from spoofing management frames such as deauthentication or disassociation frames.
3
Select the matching configuration
WPA3-Enterprise meets both RADIUS authentication and mandatory PMF criteria.
It satisfies corporate policy for credential auditing and management frame security.

Anahtar Kavram

Wireless Security Standards and Enterprise Authentication (802.1X vs SAE and PMF requirements)
Soru 300Soru

An enterprise systems administrator discovers that an attacker gained access to a database server and modified audit log files to erase evidence of unauthorized database queries. The administrator needs to select a security control that specifically ensures log files cannot be altered or tampered with without detection. Which of the following core security controls best maintains this specific pillar of the CIA triad?

Cevabı ve açıklamayı göster

Cevap: Implementing cryptographic hashing and digital signatures for generated log files

Cevap

Implementing cryptographic hashing and digital signatures for generated log files directly preserves data integrity, ensuring any modification or deletion of log entries is immediately detectable.
Generating cryptographic hashes and applying digital signatures ensures data integrity. Any unauthorized modification to audit logs changes the calculated hash value, making alterations immediately detectable.

Adım Adım Çözüm

1
Analyze the threat scenario described in the stem.
The compromise involved unauthorized modification of log files, which directly violates the Integrity pillar of the CIA triad.
Integrity guarantees that data remains accurate, complete, and untampered with throughout its lifecycle.
2
Evaluate potential technical controls against the target security principle.
Cryptographic hashing algorithms generate a unique digest of data; if a log file is altered, the recalculated hash value will fail validation.
Hashing and digital signatures are the primary technical controls used to ensure data integrity and non-repudiation.

Anahtar Kavram

CIA Triad Integrity Controls
ÖncekiSayfa 15 / 22Sonraki
Network Security Alıştırma Soruları — CompTIA Network+ — Sayfa 15 | Examkin