Network Security

427 soru

Soru 121Soru

A network administrator wants to centralize administrative access to enterprise routers and switches. The administrator requires a security protocol that encrypts the entire packet payload—including all authentication details and command data—and utilizes TCP port 49 for reliable transport. Which protocol best satisfies these requirements?

Cevabı ve açıklamayı göster

Cevap: TACACS+

Cevap

TACACS+ is the correct choice because it runs over TCP port 49 and encrypts the entire packet payload for network device management.
TACACS+ (Terminal Access Controller Access-Control System Plus) operates over TCP port 49 and encrypts the entire body of the packet, making it ideal for administrative device access.

Adım Adım Çözüm

1
Identify the transport port and encryption characteristics requested in the scenario.
The requirement specifies TCP port 49 and complete payload encryption.
Security requirement audits evaluate transport reliability (TCP vs UDP) and data privacy boundaries.
2
Evaluate protocol feature differences between AAA protocols.
TACACS+ uses TCP port 49 and encrypts the entire packet payload. RADIUS uses UDP ports 1812/1813 and encrypts only the password.
Differentiating TACACS+ from RADIUS relies on understanding payload encryption scope and transport layer port numbers.

Anahtar Kavram

TACACS+ vs RADIUS protocol features and encryption boundaries
Soru 122Soru

A network security administrator needs to monitor traffic destined for a cluster of internal database servers to identify malicious payload patterns. The solution must ensure that security monitoring introduces zero processing latency to live database transactions and cannot interrupt network traffic if the monitoring device fails or experiences a hardware fault. Which of the following deployment options best satisfies these requirements?

Cevabı ve açıklamayı göster

Cevap: Deploy a Network Intrusion Detection System (NIDS) out-of-band using a switch TAP or SPAN port.

Cevap

Deploying an out-of-band Network Intrusion Detection System (NIDS) fed by a switch port mirror (SPAN) or physical test access point (TAP) guarantees that live traffic is unaffected by monitoring overhead or device reboot events.
An out-of-band Network Intrusion Detection System (NIDS) operates passively by receiving mirrored copies of network traffic via a switch Port Analyzer (SPAN) or physical TAP. Because the NIDS is not placed directly in the network transit path, it adds no latency to live database requests and cannot interrupt production traffic if the NIDS device crashes or loses power.

Adım Adım Çözüm

1
Analyze the operational constraints presented in the scenario.
Identified key requirements: zero latency impact on live production traffic, passive monitoring, and resilience against single point of network failure.
Production database environments require strict latency controls and high availability.
2
Compare in-band (inline) vs. out-of-band (passive) monitoring architectures.
Inline systems (NIPS) inspect traffic directly in the data path, introducing latency and potential failure points. Out-of-band systems (NIDS) analyze copied packets.
Out-of-band architecture uses SPAN ports or TAPs to duplicate frames without interrupting original packet delivery.
3
Select the deployment topology that fulfills all constraints.
A passive NIDS receiving traffic via a TAP or SPAN port.
If an out-of-band NIDS fails, the primary network path continues forwarding database traffic without interruption.

Anahtar Kavram

In-band (Inline NIPS) vs. Out-of-band (Passive NIDS) Deployment Architecture
Tahmini Süre:1m 30s
Soru 123Soru

A network security administrator must construct an extended IPv4 Access Control List (ACL) on an ingress router interface serving the internal subnet 10.50.10.0/2410.50.10.0/24. The ACL must enforce five security requirements using first-match evaluation logic without rule shadowing:

1. Quarantine host 10.50.10.4510.50.10.45 by blocking all of its outbound traffic.
2. Allow database administrative hosts in the 10.50.10.0/2610.50.10.0/26 subnet to access a central database server at 192.168.100.50192.168.100.50 on TCP port 33063306.
3. Deny all other hosts in 10.50.10.0/2410.50.10.0/24 access to any server in the 192.168.100.0/24192.168.100.0/24 network.
4. Permit all remaining hosts in 10.50.10.0/2410.50.10.0/24 to access external web servers on TCP port 443443.
5. Explicitly deny and log all unapproved IPv4 traffic originating from 10.50.10.0/2410.50.10.0/24.

Arrange the given ACL statements in the correct top-to-bottom sequential order (from index 1010 to 5050) to fulfill these security requirements accurately.

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

Cevabı ve açıklamayı göster

Cevap

The correct top-to-bottom sequence of ACL rules is: 1) deny ip host 10.50.10.45 any, 2) permit tcp 10.50.10.0 0.0.0.63 host 192.168.100.50 eq 3306, 3) deny ip 10.50.10.0 0.0.0.255 192.168.100.0 0.0.0.255, 4) permit tcp 10.50.10.0 0.0.0.255 any eq 443, 5) deny ip 10.50.10.0 0.0.0.255 any log.
Access Control Lists process packets in strict top-to-bottom order until a matching entry is found. To achieve the required policy: 1) The compromised host block `deny ip host 10.50.10.45 any` must be top-ranked to override all permits. 2) The specific database permission `permit tcp 10.50.10.0 0.0.0.63 host 192.168.100.50 eq 3306` must precede the subnet deny rule to avoid being shadowed. 3) The general server network block `deny ip 10.50.10.0 0.0.0.255 192.168.100.0 0.0.0.255` must precede broad web permits. 4) The outbound web rule `permit tcp 10.50.10.0 0.0.0.255 any eq 443` allows remaining internet access. 5) The explicit logging rule `deny ip 10.50.10.0 0.0.0.255 any log` records unauthorized attempts before the default implicit deny.

Adım Adım Çözüm

1
Identify host-specific override rules.
Host 10.50.10.4510.50.10.45 is contained within subnet 10.50.10.0/2610.50.10.0/26. To prevent any traffic from this host from hitting broader permit rules, the explicit host deny statement `deny ip host 10.50.10.45 any` must be placed at the top (Line 10).
Sequential ACL evaluation stops at the first matching rule. Broader permit rules positioned above host blocks cause security bypasses.
2
Place specific subset permissions above broader network blocks.
The rule `permit tcp 10.50.10.0 0.0.0.63 host 192.168.100.50 eq 3306` permits TCP 33063306 from the /26/26 subnet to the database server. This must be evaluated before blocking the entire 192.168.100.0/24192.168.100.0/24 destination subnet.
If a general deny for 192.168.100.0/24192.168.100.0/24 is placed above this permit statement, database management traffic will be shadowed and blocked.
3
Place general network blocks before general outbound permissions.
Position `deny ip 10.50.10.0 0.0.0.255 192.168.100.0 0.0.0.255` third to prevent all other host communication between 10.50.10.0/2410.50.10.0/24 and 192.168.100.0/24192.168.100.0/24.
Ensures no unapproved destination IP within 192.168.100.0/24192.168.100.0/24 receives traffic from 10.50.10.0/2410.50.10.0/24, even on port 443443.
4
Position broad service permits after security restriction blocks.
Place `permit tcp 10.50.10.0 0.0.0.255 any eq 443` fourth to allow secure web traffic outbound.
Allows outbound web traffic to external destinations while preserving the internal subnet restriction configured in Step 3.
5
Place explicit logging deny statements at the end.
Place `deny ip 10.50.10.0 0.0.0.255 any log` fifth.
Captures and logs all unapproved packets from 10.50.10.0/2410.50.10.0/24 before hitting the implicit deny all entry at the end of the ACL.

Anahtar Kavram

First-Match Rule Processing and Shadowing Prevention in Extended IPv4 ACLs
Soru 124Soru

A network security administrator is updating wireless security configurations across multiple corporate site tiers to meet strict security baseline policies. Match each wireless security standard or mode on the left with its corresponding encryption protocol and authentication mechanism on the right.

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

Öğeler

WPA3-Personal
WPA2-Enterprise
WPA3-Enterprise (192-bit mode)
Legacy WPA (TKIP mode)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

WPA3-Personal matches with AES-CCMP paired with SAE key exchange. WPA2-Enterprise matches with AES-CCMP paired with 802.1X/RADIUS authentication. WPA3-Enterprise (192-bit mode) matches with GCMP-256 paired with HMAC-SHA384. Legacy WPA (TKIP mode) matches with RC4 wrapped with key mixing and Michael MIC.
Each wireless security standard maps to specific cryptographic algorithms and key establishment mechanisms: WPA3-Personal uses SAE key exchange to replace PSK; WPA2-Enterprise combines AES-CCMP with 802.1X RADIUS authentication; WPA3-Enterprise 192-bit mode enforces top-tier GCMP-256 and HMAC-SHA384 ciphers for mission-critical deployments; and legacy WPA (TKIP) relies on RC4 stream encryption with Michael MIC.

Adım Adım Çözüm

1
Analyze WPA3-Personal key exchange and cipher requirements
Identified SAE as the core authentication mechanism replacing PSK, paired with AES-CCMP.
SAE provides forward secrecy and resistance to dictionary attacks for personal networks.
2
Evaluate enterprise authentication standards for WPA2 vs WPA3 192-bit mode
Standard WPA2-Enterprise uses AES-CCMP with 802.1X, whereas WPA3 192-bit mode uses high-strength GCMP-256 and HMAC-SHA384.
WPA3 192-bit mode requires CNSA compliant 256-bit ciphers and 384-bit integrity algorithms.
3
Identify legacy protocol cipher suites
Associated legacy TKIP with the underlying RC4 stream cipher and Michael MIC algorithm.
TKIP was created to patch security flaws in WEP while running on legacy RC4 hardware.

Anahtar Kavram

Wireless Security Standards and Encryption Protocols
Soru 125Soru

A network administrator needs to implement a basic IPv4 Access Control List (ACL) to filter traffic entering a router interface. Place the following steps in the correct sequential order from first to last to properly configure and activate the firewall ACL.

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

Cevabı ve açıklamayı göster

Cevap

The correct order for configuring and applying an ACL is: 1) Enter global configuration mode, 2) Define specific permit and deny statements within the ACL, 3) Navigate to the target router interface configuration mode, 4) Bind the ACL to the interface specifying inbound or outbound direction.
Configuring a network ACL requires entering global configuration mode first, defining the access list statements second, selecting the targeted interface third, and finally binding the ACL to the interface in the desired direction (inbound or outbound).

Adım Adım Çözüm

1
Access router global configuration mode
Privileged access allows global system parameter modification.
ACL creation commands are executed from global configuration context.
2
Construct ACL rules
Access list rules are created in sequential top-down order.
Rules must exist prior to applying the access list to active interfaces.
3
Select interface
Interface configuration prompt is active.
ACLs must be attached directly to a specific physical or logical interface.
4
Apply ACL using ip access-group
Traffic passing through the interface is actively evaluated against the ACL rules.
An unattached ACL remains inactive and will not filter network traffic.

Anahtar Kavram

ACL Configuration Workflow
Soru 126Soru

A enterprise network security architect is updating the organization's defensive baseline to ensure alignment with core security architecture principles. Match each operational technical control on the left with the primary security pillar or principle it directly satisfies on the right.

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

Öğeler

Configuring automated pre-boot verification of SHA-256 cryptographic checksums for network switch firmware images
Implementing IPsec Encapsulating Security Payload (ESP) in Transport Mode with AES-256 for all management traffic
Deploying dual redundant hot-swappable power supplies connected to independent uninterruptible power supply (UPS) circuits
Requiring administrator audit logs to be signed using asymmetric private keys prior to centralized log server archiving

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Firmware checksum verification maps to Integrity; IPsec ESP AES encryption maps to Confidentiality; Redundant power supplies and UPS feeds map to Availability; Digitally signed audit logs map to Non-repudiation.
Each security control is matched to its core security objective: SHA-256 firmware hash checks ensure data is uncorrupted (Integrity); IPsec ESP AES encryption hides network traffic from unauthorized listeners (Confidentiality); dual power supplies with separate UPS backups prevent unplanned downtime (Availability); and digital signatures on audit logs prevent administrators from denying their actions (Non-repudiation).

Adım Adım Çözüm

1
Analyze the primary objective of firmware checksum verification
Hashing confirms that data has not been altered in transit or at rest.
Cryptographic hashing protects against unauthorized modification, satisfying the Integrity pillar.
2
Analyze the primary objective of IPsec ESP encryption
Encryption obfuscates data payloads to prevent unauthorized viewing.
Protecting data in transit from unauthorized interception satisfies the Confidentiality pillar.
3
Analyze the primary objective of redundant hardware power architecture
Redundancy ensures systems remain operational despite power circuit failures.
Maintaining operational access for authorized users satisfies the Availability pillar.
4
Analyze the primary objective of digitally signing log records
Asymmetric signatures prove authenticity and prevent denial of performed actions.
Tying actions verifiably to an identity prevents denial of origin, satisfying Non-repudiation.

Anahtar Kavram

CIA Triad and Security Principles Mapping
Tahmini Süre:2m 0s
Soru 127Soru

An enterprise deploys active inline Network Intrusion Prevention System (NIPS) appliances on two parallel border gateway links configured for active-active asymmetric routing. Shortly after deployment, users experience intermittent session terminations and dropped connections on legitimate TCP applications. Packet inspection reveals that outbound TCP SYN packets traverse Link 1 (monitored by NIPS 1), while the corresponding SYN-ACK return packets traverse Link 2 (monitored by NIPS 2), causing NIPS 2 to drop the return packets as invalid out-of-state traffic. Which of the following architectural adjustments will eliminate these session drops while maintaining active inline threat prevention across both links?

Cevabı ve açıklamayı göster

Cevap: Establish a dedicated high-speed inter-appliance state-sharing connection between NIPS 1 and NIPS 2 to synchronize TCP flow tables in real time.

Cevap

The correct architecture requires establishing a dedicated inter-appliance state-sharing bus between NIPS 1 and NIPS 2 to synchronize TCP session state tables across both active asymmetric paths.
Establishing a state-synchronization link between dual inline NIPS appliances allows TCP session creation records from NIPS 1 to be mirrored immediately to NIPS 2. Consequently, when return SYN-ACK traffic arrives at NIPS 2 via an asymmetric route, NIPS 2 recognizes the established session state and passes the legitimate traffic inline without dropping it.

Adım Adım Çözüm

1
Analyze the network failure symptoms and asymmetric routing context.
Inline NIPS units perform stateful inspection. When TCP SYN travels via Link 1 and SYN-ACK returns via Link 2, NIPS 2 sees an unacknowledged SYN-ACK without an established session entry, causing an out-of-state packet drop.
Inline NIPS appliances enforce strict TCP state machine tracking to defend against out-of-sequence evasion techniques.
2
Evaluate constraint requirements: preserve active inline prevention while supporting asymmetric paths.
Changing to passive out-of-band (SPAN/TAP) resolves state tracking issues but forfeits inline blocking capabilities.
Active inline prevention (NIPS) requires the appliance to sit directly in the forwarding path to drop malicious frames in real time.
3
Determine the optimal state-synchronization design for dual-homed inline NIPS.
Connecting NIPS 1 and NIPS 2 via a high-speed state-synchronization link updates both appliances' session tables dynamically, allowing NIPS 2 to recognize the flow initiated at NIPS 1.
State-sharing cluster links enable distributed stateful inspection across redundant asymmetric network topologies.

Anahtar Kavram

Stateful Inspection and Asymmetric Routing in Inline NIPS Deployment
Tahmini Süre:3m 0s
Soru 128Soru

Match each core security principle on the left with its corresponding primary objective on the right.

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

Öğeler

Confidentiality
Integrity
Availability
Non-repudiation

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Confidentiality matches with preserving authorized restrictions on access to protect sensitive information; Integrity matches with safeguarding data accuracy against unauthorized modification; Availability matches with ensuring timely and reliable access to network systems; Non-repudiation matches with providing proof of an action so the initiating party cannot deny it.
Each core security concept directly addresses a distinct security pillar: Confidentiality protects against unauthorized disclosure, Integrity protects against unauthorized modification, Availability ensures system uptime for authorized users, and Non-repudiation establishes proof of action.

Adım Adım Çözüm

1
Define Confidentiality.
Confidentiality focuses on privacy and preventing unauthorized access or disclosure of sensitive data.
Controls such as encryption and permissions restrict access to authorized personnel only.
2
Define Integrity.
Integrity focuses on accuracy, ensuring data is not modified, deleted, or corrupted without authorization.
Cryptographic hashing algorithms verify data authenticity and detect unauthorized changes.
3
Define Availability.
Availability focuses on uptime, ensuring systems and services remain operational and accessible when needed.
Redundancy, fault tolerance, and backups prevent service disruption.
4
Define Non-repudiation.
Non-repudiation ensures accountability by preventing an actor from denying an action they performed.
Digital signatures and cryptographic logging bind actions irreversibly to specific credentials.

Anahtar Kavram

CIA Triad & Core Security Concepts
Soru 129Soru

A network security auditor discovers that administrative session logs for network switches expose executed CLI command parameters in cleartext across the management network. Furthermore, the existing AAA deployment cannot restrict specific administrative commands per role because authentication and authorization are tightly coupled into a single transaction. Which AAA protocol implementation directly resolves both findings by encrypting the complete packet payload and decoupling authorization from authentication?

Cevabı ve açıklamayı göster

Cevap: TACACS+ utilizing TCP port 49

Cevap

TACACS+ utilizing TCP port 49
TACACS+ (Terminal Access Controller Access-Control System Plus) encrypts the entire payload of every packet (beyond the header) and fully decouples authentication, authorization, and accounting. This enables granular per-command authorization checks over a reliable TCP connection on port 49, ensuring command parameters remain confidential.

Adım Adım Çözüm

1
Analyze the security boundary requirement regarding payload encryption.
RADIUS encrypts only the password field, leaving headers and administrative command payloads visible. TACACS+ encrypts the entire packet body, securing command-level parameters.
Cleartext command parameters violate confidentiality requirements during administrative CLI sessions.
2
Evaluate the AAA functional architecture requirement for per-command control.
RADIUS combines authentication and authorization into unified Access-Request/Access-Accept exchanges. TACACS+ separates AAA functions into distinct modular processes.
Decoupling authorization from authentication is necessary to enforce granular per-command restrictions for logged-in administrators.
3
Identify the standard transport protocol and port assignment.
TACACS+ relies on TCP port 49 for reliable connection-oriented delivery, whereas RADIUS uses UDP ports 1812 (Authentication) and 1813 (Accounting).
Matching protocol features to their standard transport layer implementations confirms TACACS+ over TCP port 49 as the correct solution.

Anahtar Kavram

TACACS+ vs RADIUS Protocol Architecture & Security Boundaries
Soru 130Soru

A network administrator configures an Access Control List (ACL) with explicit permit statements for HTTP and HTTPS traffic on a router interface. However, users report that all other traffic attempting to pass through this interface is blocked, even though no deny statements were explicitly written. Which of the following features accounts for this behavior?

Cevabı ve açıklamayı göster

Cevap: The implicit deny statement automatically appended to the end of the ACL

Cevap

The implicit deny statement automatically appended to the end of the ACL accounts for blocking all unspecified traffic.
The correct option correctly identifies the default behavior of Access Control Lists. Every ACL concludes with an invisible implicit deny rule (e.g., 'deny ip any any'). If incoming or outgoing traffic does not match any explicit permit statement, it hits this final rule and is dropped.

Adım Adım Çözüm

1
Analyze the configured ACL entries and observe that only HTTP and HTTPS permit rules were created.
Identified that no explicit rules exist for other traffic types (such as ICMP, SSH, or DNS).
ACL entries are processed sequentially from top to bottom until a match is found.
2
Evaluate default router ACL behavior when no rule matches a packet.
Recognize that network ACLs feature a default implicit deny rule at the very bottom of the rule list.
Security best practices enforce default-deny posture to block all non-permitted traffic.

Anahtar Kavram

ACL Implicit Deny Rule
Tahmini Süre:45s
Soru 131Soru

A network administrator needs to verify that downloaded firmware updates have not been corrupted or tampered with in transit, while also ensuring that administrative login sessions to core switches are strictly limited to authorized staff. Which TWO security concepts or mechanisms directly address these requirements? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Validating the cryptographic SHA-256 hash of the firmware file prior to installation; Implementing multi-factor authentication (MFA) for administrative user access

Cevap

Validating the cryptographic SHA-256 hash of the firmware file prior to installation, and implementing multi-factor authentication (MFA) for administrative user access.
Verifying file cryptographic hashes guarantees Integrity by confirming that the downloaded firmware matches the published checksum without alteration. Implementing multi-factor authentication enforces Confidentiality and Authentication by verifying identity through multiple factors before permitting access to critical switch interfaces.

Adım Adım Çözüm

1
Analyze the requirement for verifying file authenticity and preventing tampering during transit.
Identified that cryptographic hashing (e.g., SHA-256) guarantees data integrity.
Hashing generates a unique fixed-length string based on file contents; any modification changes the hash value.
2
Analyze the requirement for ensuring administrative logins are strictly restricted to authorized staff.
Identified that multi-factor authentication (MFA) strengthens access control and confidentiality.
MFA requires multiple independent identity evidence factors before granting management access.

Anahtar Kavram

Integrity and Confidentiality Controls in Network Security
Soru 132Soru

A network administrator is implementing TACACS+ for centralized management of network devices. Which TWO of the following operational characteristics accurately describe TACACS+? (Select TWO)

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

Cevabı ve açıklamayı göster

Cevap: Encrypts the entire packet payload, securing all data following the TACACS+ header; Operates over TCP port 49 to provide reliable connection-oriented communication

Cevap

TACACS+ encrypts the entire packet payload beyond the protocol header and operates over connection-oriented TCP port 49.
TACACS+ encrypts the complete packet body (payload) and communicates across network management links using TCP port 49.

Adım Adım Çözüm

1
Identify transport layer protocol and port number for TACACS+.
TACACS+ uses connection-oriented TCP port 49.
TCP ensures reliable delivery and session control for administrative traffic.
2
Identify encryption boundaries of TACACS+.
TACACS+ encrypts the entire packet body following the header.
Full payload encryption ensures sensitive administrative commands and attributes remain confidential.

Anahtar Kavram

TACACS+ Protocol Architecture and Security Boundaries
Tahmini Süre:1m 0s
Soru 133Soru

A network security administrator configures full-disk encryption on all corporate laptops to ensure that sensitive files cannot be accessed if a laptop is lost or stolen. Which pillar of the CIA triad does this security control directly uphold?

Cevabı ve açıklamayı göster

Cevap: Confidentiality

Cevap

Confidentiality is the pillar directly upheld by full-disk encryption because it prevents unauthorized exposure of stored information.
Full-disk encryption maintains confidentiality by rendering stored data unreadable to anyone who does not possess the decryption credentials, protecting sensitive information from disclosure if a physical device is lost or compromised.

Adım Adım Çözüm

1
Identify the primary function of the security control described in the scenario.
Full-disk encryption scrambles stored data so that it cannot be read without authenticating with a valid decryption key.
This protection prevents unauthorized parties from inspecting sensitive files on stolen or lost hardware.
2
Map this function to the corresponding pillar of the CIA triad.
Protecting data from unauthorized disclosure is the definition of Confidentiality.
Confidentiality focuses on privacy and restricting data access solely to authorized entities.

Anahtar Kavram

CIA Triad - Confidentiality
Soru 134Soru

A network administrator is setting up a wireless network for a business environment. The company policy mandates that each employee must authenticate with their own unique credentials using a central RADIUS server, rather than sharing a single password across the organization. Which of the following wireless security modes best fulfills this requirement?

Cevabı ve açıklamayı göster

Cevap: WPA3-Enterprise

Cevap

WPA3-Enterprise is the correct choice because it integrates with 802.1X/RADIUS infrastructure to enforce unique per-user authentication credentials.
WPA3-Enterprise uses IEEE 802.1X authentication, allowing centralized user account management and verification against an authentication server such as RADIUS.

Adım Adım Çözüm

1
Identify authentication requirements
The requirement specifies centralized RADIUS authentication and individual user credentials instead of a single shared secret.
Enterprise wireless security standards separate Personal (Pre-Shared Key / SAE) from Enterprise (802.1X / RADIUS) operational modes.
2
Evaluate candidate wireless security protocols
WPA3-Enterprise provides 802.1X network access control backed by RADIUS, satisfying all policy requirements.
Personal modes (WPA2-Personal and WPA3-Personal) utilize passphrases intended for home or small networks where individual account accounting is not required.

Anahtar Kavram

WPA3 Personal vs Enterprise Authentication Modes
Tahmini Süre:45s
Soru 135Soru

A network engineer is configuring a centralized backend authentication server to support 802.1X port-based network access control across wireless access points in an enterprise network. The architecture requires a standard protocol to handle authentication and authorization requests forwarded by the wireless access points acting as authenticators. Which protocol and transport layer configuration correctly fulfills this network access control deployment?

Cevabı ve açıklamayı göster

Cevap: RADIUS operating over UDP ports 1812 and 1813

Cevap

RADIUS operating over UDP ports 1812 and 1813 is the standard configuration for centralizing 802.1X wireless access point authentication.
The option specifying RADIUS over UDP ports 1812 and 1813 is correct because RADIUS is the standard AAA protocol used in conjunction with 802.1X for centralized wireless user authentication, and it operates over UDP ports 1812 (Authentication) and 1813 (Accounting).

Adım Adım Çözüm

1
Identify the required AAA protocol for 802.1X network access control.
RADIUS is selected because 802.1X authenticators (such as switches and wireless APs) natively integrate with RADIUS servers for end-user network access authentication.
TACACS+ is used for administrative device CLI management, while RADIUS combines authentication and authorization for end-user/device network admission.
2
Verify the standard transport protocol and UDP port numbers for RADIUS.
Standard RADIUS uses UDP port 1812 for authentication/authorization and UDP port 1813 for accounting.
UDP is chosen for connection efficiency in AAA network access environments.

Anahtar Kavram

RADIUS Protocol Characteristics and 802.1X Integration
Soru 136Soru

A network administrator is designing a wireless security architecture for an enterprise office. The organizational policy mandates centralized user authentication using 802.1X/RADIUS, individual credential accounting, and strict enterprise-grade encryption key management. A junior technician proposes implementing WPA3-Personal with Simultaneous Authentication of Equals (SAE) using a complex 30-character passphrase, arguing it avoids RADIUS server deployment while providing equal security. Which of the following best evaluates the junior technician's proposal?

Cevabı ve açıklamayı göster

Cevap: The proposal is invalid because WPA3-Personal uses a single shared password, failing to provide centralized 802.1X RADIUS authentication and individual user accounting.

Cevap

The proposal is invalid because WPA3-Personal uses a single shared password, failing to provide centralized 802.1X RADIUS authentication and individual user accounting.
WPA3-Personal uses Simultaneous Authentication of Equals (SAE) to establish secure connections using a pre-shared passphrase. Although SAE protects against offline brute-force attacks, it relies on a shared secret across endpoints and does not support individual user credentials, 802.1X/EAP frameworks, or RADIUS server integration. Enterprise environments requiring central identity management and accounting must deploy WPA3-Enterprise.

Adım Adım Çözüm

1
Identify the organizational requirements
Requirements specify centralized 802.1X/RADIUS authentication, individual user accounting, and enterprise key management.
Enterprise security frameworks require individual accountability and integration with central identity providers like Active Directory via RADIUS.
2
Analyze the proposed solution (WPA3-Personal with SAE)
WPA3-Personal uses Simultaneous Authentication of Equals (SAE) with a pre-shared key/passphrase.
While SAE prevents offline dictionary attacks and provides forward secrecy, all users share the same passphrase, and no 802.1X EAP exchange takes place.
3
Compare WPA3-Personal capabilities against requirements
WPA3-Personal fails to meet the requirement for individual authentication and 802.1X/RADIUS integration.
WPA3-Enterprise is required whenever individual credentials and RADIUS integration are mandated.

Anahtar Kavram

WPA3-Personal vs. WPA3-Enterprise Authentication Modes
Soru 137Soru

An organization is enhancing its security monitoring architecture to detect zero-day exploits and analyze encrypted network application traffic. The network engineering team decides to deploy Host-based Intrusion Detection Systems (HIDS) across critical endpoints. Which of the following capabilities represent distinct operational advantages of a HIDS compared to a passive Network Intrusion Detection System (NIDS)? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: HIDS can inspect decrypted application payload data directly within local endpoint memory after TLS protocol termination.; HIDS can monitor host operating system calls, registry modifications, and critical file system integrity changes.

Cevap

The correct options are that a HIDS can inspect decrypted application payload data directly within local endpoint memory after TLS protocol termination, and a HIDS can monitor host operating system calls, registry modifications, and critical file system integrity changes.
Host-based Intrusion Detection Systems (HIDS) run as agents on individual host operating systems. This positioning grants direct visibility into unencrypted host memory, local system calls, process creation, registry key modifications, and file integrity. Consequently, HIDS can evaluate application data after local SSL/TLS decryption and track malicious actions inside the OS.

Adım Adım Çözüm

1
Analyze the operational scope of Host-based Intrusion Detection Systems (HIDS).
HIDS software resides on individual hosts, providing visibility into local system calls, memory state, local storage, and process execution.
Host-level agent placement allows access to internal OS subsystems and post-decryption data buffers.
2
Compare host-level monitoring capabilities against network-level passive monitoring (NIDS).
NIDS monitors network traffic passing through network segments or SPAN/TAP ports and cannot inspect encrypted payloads without external SSL/TLS offloading, nor can it monitor local host registry changes.
NIDS is restricted to network packet headers and payloads captured in transit.
3
Select the statements describing unique HIDS operational advantages.
Inspecting decrypted payload memory and auditing host OS system calls/registry modifications are host-specific features.
These capabilities require direct kernel and local filesystem visibility present only on the endpoint.

Anahtar Kavram

Host-Based vs. Network-Based Intrusion Detection Systems (HIDS vs NIDS)
Soru 138Soru

A technician is deploying a wireless access point and needs to select security protocols that protect against offline dictionary password-guessing attacks while providing modern, high-strength data encryption. Which of the following wireless security standards or mechanisms fulfill these requirements? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: WPA3-Personal utilizing Simultaneous Authentication of Equals (SAE); Galois/Counter Mode Protocol (GCMP-256) encryption

Cevap

WPA3-Personal with SAE and GCMP-256 encryption are the correct security selections.
WPA3-Personal replaces the traditional WPA2 Pre-Shared Key (PSK) exchange with Simultaneous Authentication of Equals (SAE), which prevents offline dictionary attacks by creating ephemeral keys for each session. Additionally, GCMP-256 (Galois/Counter Mode Protocol with 256-bit key length) provides cutting-edge authenticated encryption for modern wireless networks.

Adım Adım Çözüm

1
Identify the authentication protocol that prevents offline dictionary attacks.
WPA3-Personal uses SAE (Dragonfly key exchange) which eliminates passive offline dictionary attacks.
Legacy pre-shared key methods like WPA/WPA2-Personal rely on 4-way handshakes vulnerable to offline capture and brute-force cracking.
2
Identify the modern cryptographic encryption algorithm that provides authenticated data protection.
GCMP-256 is a modern 256-bit encryption cipher suite specified for WPA3.
TKIP and RC4 are deprecate/insecure legacy ciphers, whereas AES-CCMP and GCMP offer modern authenticated encryption.

Anahtar Kavram

WPA3 Wireless Security Standards and Modern Ciphers
Tahmini Süre:1m 0s
Soru 139Soru

During a forensic analysis at a financial services organization, network engineers discover that an attacker executed a man-in-the-middle attack on an internal subnet between an application server and a SQL database. The attacker intercepted automated database queries and modified financial balances inside the packet payloads in transit without interrupting the TCP session or altering packet lengths. System uptime, server access, and network performance remained completely normal throughout the event. Which security principle of the CIA triad was directly violated, and which security control best mitigates this vulnerability?

Cevabı ve açıklamayı göster

Cevap: Integrity; this should be mitigated by enforcing IPsec using Encapsulating Security Payload (ESP) or HMAC message authentication to prevent undetected data tampering.

Cevap

Integrity was compromised because the transaction payload was modified during transmission. Deploying IPsec with Encapsulating Security Payload (ESP) or HMAC message authentication protects data integrity.
The scenario describes an unauthorized alteration of data during transmission between two endpoints without causing downtime or session loss. Integrity ensures that information remains unchanged and untampered with while stored or in transit. Implementing IPsec ESP or HMAC integrity checks ensures that any modified packet is detected via hash mismatch and immediately dropped.

Adım Adım Çözüm

1
Analyze the attack impact described in the scenario
Data within packet payloads was manipulated in transit, while network availability and access remained unaffected.
Determining which aspect of the data or service was impacted isolates the specific pillar of the CIA triad.
2
Map the impact to the core CIA triad security principles
Unauthorized modification of data directly violates Integrity.
Integrity guarantees that data remains in an unaltered state from source to destination.
3
Select the appropriate network security control to protect integrity in transit
IPsec ESP (or cryptographic hashing/HMAC) validates packet checksums and prevents payload tampering.
Cryptographic authentication headers detect unauthorized modifications and discard corrupted packets before processing.

Anahtar Kavram

CIA Triad - Integrity & Cryptographic Message Protection
Tahmini Süre:1m 30s
Soru 140Soru

An administrator is configuring a stateless extended IPv4 Access Control List (ACL) on a WAN edge router interface (GigabitEthernet0/1) to secure traffic between an internal database cluster (192.168.10.0/24192.168.10.0/24) and a remote external cloud database server (203.0.113.50203.0.113.50). Internal hosts initiate outbound TCP connections to the external server on destination port 54325432.

To allow outbound traffic, the outbound ACL on GigabitEthernet0/1 contains the following rule:
`access-list 101 permit tcp 192.168.10.0 0.0.0.255 host 203.0.113.50 eq 5432`

Which entry must be added to the inbound ACL on GigabitEthernet0/1 to permit return traffic from the database server back to internal hosts while preventing unrequested inbound TCP connections from external sources?

Cevabı ve açıklamayı göster

Cevap: access-list 102 permit tcp host 203.0.113.50 eq 5432 192.168.10.0 0.0.0.255 established

Cevap

The inbound ACL entry must specify 'access-list 102 permit tcp host 203.0.113.50 eq 5432 192.168.10.0 0.0.0.255 established'.
Stateless Access Control Lists evaluate packets individually without keeping track of connection state tables. When an internal client initiates a TCP session to port 5432 on an external server, the server's return packets will have a source IP of 203.0.113.50, a source TCP port of 5432, and a destination IP in the 192.168.10.0/24 network. Additionally, valid return traffic in a TCP handshake contains the ACK or RST flag. Using the entry containing 'host 203.0.113.50 eq 5432 192.168.10.0 0.0.0.255 established' correctly checks that source port 5432 is specified and that non-SYN return packets are permitted while blocking incoming new connection attempts.

Adım Adım Çözüm

1
Analyze source and destination parameters for return traffic
Return traffic originates from the external database host (203.0.113.50203.0.113.50) on source TCP port 54325432 and travels to internal hosts (192.168.10.0/24192.168.10.0/24) on dynamic high-numbered ephemeral destination ports.
When internal clients initiate a TCP connection, the database server responds from its service port (54325432) back to the client's dynamically allocated source port.
2
Evaluate statefulness and TCP flag filtering requirements
Stateless firewalls and standard router extended ACLs do not keep connection state tables. To permit return packets while blocking unsolicited inbound connection attempts (SYN packets), the ACL must inspect TCP flag bits.
The 'established' keyword forces the ACL to check for the presence of ACK (Acknowledgment) or RST (Reset) control bits, which are only present in ongoing, established TCP sessions.
3
Construct the exact syntax for the inbound ACL entry
`access-list 102 permit tcp host 203.0.113.50 eq 5432 192.168.10.0 0.0.0.255 established`
This entry matches TCP packets sourced from host 203.0.113.50203.0.113.50 port 54325432 destined for 192.168.10.0/24192.168.10.0/24 with the ACK or RST flags set.

Anahtar Kavram

Stateless extended ACL return traffic filtering using TCP flag matching (`established` keyword)
Tahmini Süre:3m 0s
ÖncekiSayfa 7 / 22Sonraki