Network Security

427 soru

Soru 81Soru

A network security engineer is designing a centralized AAA solution for administrative management access to core switches and firewalls. Organization security policies dictate that authentication and authorization functions must be decoupled to allow granular per-command authorization rules, the complete packet payload (including administrative commands) must be encrypted over the wire, and the protocol must use connection-oriented transport on standard port 49. Which protocol should the engineer select to meet all of these compliance requirements?

Cevabı ve açıklamayı göster

Cevap: TACACS+, because it decouples AAA services, encrypts the entire packet payload, and operates over TCP port 49.

Cevap

TACACS+ is the correct protocol choice because it decouples AAA functions, encrypts the full packet body, and uses TCP port 49.
TACACS+ (Terminal Access Controller Access-Control System Plus) strictly satisfies all three requirements specified in the scenario. It decouples authentication, authorization, and accounting into independent processes, enabling fine-grained, command-by-command authorization for device management. Furthermore, TACACS+ encrypts the entire body of every packet (excluding only the standard TACACS+ header), protecting sensitive administrative data and commands in transit. Finally, TACACS+ operates over connection-oriented TCP on standard port 49.

Adım Adım Çözüm

1
Analyze the functional decoupling requirement
TACACS+ decouples authentication, authorization, and accounting, allowing separate authorization checks per command. RADIUS combines authentication and authorization into one workflow.
Administrative device access control requires per-command authorization checks after successful user authentication.
2
Evaluate the encryption scope requirement
TACACS+ encrypts the entire body of the packet (all AAA parameters and payload data). RADIUS encrypts only the password field within the Access-Request frame.
Full payload encryption ensures sensitive administrative command strings sent over the wire are protected from eavesdropping.
3
Verify transport protocol and port requirements
TACACS+ relies on TCP port 49 for connection-oriented delivery. RADIUS primarily uses connectionless UDP ports 1812 (Authentication) and 1813 (Accounting).
Connection-oriented TCP guarantees reliable delivery and session tracking for AAA operations.

Anahtar Kavram

RADIUS vs TACACS+ AAA Architectural Differences
Soru 82Soru

A security analyst needs to monitor critical database servers for unauthorized local file integrity modifications and zero-day memory exploits that lack known attack signatures. Which security solution best addresses these requirements?

Cevabı ve açıklamayı göster

Cevap: Host-based Intrusion Detection System (HIDS) utilizing anomaly-based detection logic

Cevap

A Host-based Intrusion Detection System (HIDS) utilizing anomaly-based detection logic is the correct solution.
Deploying a Host-based Intrusion Detection System (HIDS) with anomaly-based detection directly monitors local operating system activities, including system call sequences and file integrity changes on the server. Anomaly-based logic compares real-time host activity against an established baseline of normal operations, allowing it to detect unknown zero-day attacks that do not match existing signatures.

Adım Adım Çözüm

1
Identify the scope of monitoring required by the scenario.
The requirement specifies host-level monitoring, including local file modifications and process execution, which requires endpoint visibility rather than network link visibility.
Network-based systems (NIDS/NIPS) analyze packet streams across network interfaces and cannot monitor internal host OS processes or local file integrity.
2
Determine the appropriate detection mechanism for zero-day threats.
Anomaly-based (behavioral) detection establishes a baseline of normal system activity and flags deviations, making it effective against unknown threats.
Signature-based detection requires pre-existing pattern definitions, which are unavailable for novel zero-day attacks.
3
Synthesize placement and mechanism to select the correct technology.
Combining host-level placement (HIDS) with behavioral detection (anomaly-based) satisfies both monitoring requirements.
HIDS operates on the host OS to observe file modifications and kernel calls while anomaly detection identifies novel exploits.

Anahtar Kavram

HIDS vs NIDS/NIPS placement and Anomaly-based vs Signature-based detection mechanisms
Soru 83Soru

A network security architect is reviewing the deployment of centralized authentication protocols across a global enterprise network infrastructure. The architecture requires separate handling for administrative access to network edge routers and user authentication for 802.1X wireless access. Which TWO of the following statements correctly evaluate the operational and security characteristics of RADIUS and TACACS+ in this deployment?

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

Cevabı ve açıklamayı göster

Cevap: TACACS+ decouples authentication, authorization, and accounting, allowing granular command-by-command authorization rules for administrative device management over TCP port 49.; RADIUS combines authentication and authorization into a single functional framework, utilizing UDP transport for network access control such as 802.1X enterprise Wi-Fi.

Cevap

The correct statements are that TACACS+ decouples AAA functions for granular administrative command authorization over TCP port 49, and RADIUS combines authentication/authorization into a single framework using UDP transport for network access control.
TACACS+ is designed for administrative device management because it separates AAA components, allowing independent authorization of individual CLI commands, and uses TCP port 49 with full payload encryption. RADIUS is designed for network access control (such as 802.1X enterprise Wi-Fi), combining authentication and authorization responses while utilizing UDP ports 1812/1813.

Adım Adım Çözüm

1
Analyze AAA functional separation requirements
TACACS+ separates authentication, authorization, and accounting into distinct operations, enabling command-level authorization. RADIUS combines authentication and authorization in access-accept/reject responses.
Administrative device management requires granular command authorization, whereas network access control requires unified pass/fail authentication.
2
Evaluate transport layer protocols and port assignments
TACACS+ relies on TCP port 49 for reliable connection-oriented transport. RADIUS relies on UDP ports 1812 (authentication) and 1813 (accounting) for low-overhead packet delivery.
Transport protocol selection determines connection handling and port specifications in AAA deployment.
3
Verify encryption boundary characteristics
TACACS+ encrypts the entire body of the packet following the header, whereas RADIUS only encrypts the password attribute in the Access-Request packet.
Distinction in payload encryption is critical for evaluating security posture during administrative sessions versus user network access.

Anahtar Kavram

AAA Protocol Differentiation (RADIUS vs TACACS+)
Soru 84Soru

A network security administrator is assessing the centralized access control deployment for an enterprise infrastructure. The administrator needs to evaluate the architectural and transport differences between RADIUS and TACACS+ protocols. Which of the following statements correctly distinguish TACACS+ from RADIUS? (Select TWO).

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

Cevabı ve açıklamayı göster

Cevap: TACACS+ encrypts the complete body of the transmission payload, whereas RADIUS encrypts only the user password attribute.; TACACS+ decouples authentication, authorization, and accounting into distinct interactions, whereas RADIUS combines authentication and authorization into a single service exchange.

Cevap

The correct statements are that TACACS+ encrypts the complete packet payload while RADIUS encrypts only the password attribute, and TACACS+ decouples AAA functions whereas RADIUS combines authentication and authorization into a single exchange.
TACACS+ provides full-payload encryption past the header and modular separation of AAA functions, making it ideal for granular switch/router administration. RADIUS encrypts only the password attribute and combines authentication and authorization into unified transaction packets.

Adım Adım Çözüm

1
Analyze encryption boundaries for both protocols
TACACS+ encrypts the entire packet payload (except the header), whereas RADIUS encrypts only the user password field.
Security protocol specifications define different payload encryption scopes for TACACS+ versus RADIUS.
2
Evaluate AAA architectural separation
TACACS+ separates authentication, authorization, and accounting into granular, independent transactions, while RADIUS merges authentication and authorization into unified response messages.
TACACS+ was engineered specifically for granular device administration, requiring separate authorization queries per command.
3
Verify transport layer protocols and port numbers
TACACS+ uses TCP port 49, whereas RADIUS uses UDP ports 1812 (authentication) and 1813 (accounting).
This confirms that options suggesting RADIUS uses TCP 49 or TACACS+ uses UDP 1812/1813 are incorrect.

Anahtar Kavram

RADIUS vs TACACS+ Protocol Architecture and Security Boundaries
Soru 85Soru

A network security team is designing a monitoring strategy for a high-frequency trading subnetwork and a remote branch office. The trading network requires absolute zero added latency on active traffic paths while maintaining detection capability for novel, unknown protocol exploits. Meanwhile, the branch office needs comprehensive visibility into mirrored VLAN traffic captured by a switch SPAN port. Which of the following design choices correctly fulfill these architecture and detection requirements? (Select TWO)

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

Cevabı ve açıklamayı göster

Cevap: Deploying an out-of-band Network Intrusion Detection System (NIDS) connected to a switch SPAN port allows passive traffic analysis without introducing packet processing delays to active network streams.; Implementing anomaly-based detection mechanisms enables the security system to identify zero-day attacks by detecting deviations from an established baseline of normal network behavior.

Cevap

The correct architectural choices are deploying an out-of-band NIDS via SPAN ports for zero-latency passive visibility and implementing anomaly-based detection mechanisms to identify unknown zero-day threats.
Out-of-band NIDS connected via SPAN or network TAP receives duplicate frames, providing passive security monitoring without inserting processing overhead into active network paths. Furthermore, anomaly-based (or behavior-based) detection compares current traffic against historical baseline metrics, enabling the identification of unknown zero-day attacks that lack established signatures.

Adım Adım Çözüm

1
Analyze deployment topology requirements for low-latency network segments
In-band (inline) NIPS devices inspect packets synchronously and introduce queueing latency, whereas out-of-band NIDS passively analyzes frame copies mirrored via SPAN/TAP without impacting inline latency.
Out-of-band placement preserves original packet timing on high-frequency trading lines.
2
Evaluate detection engine logic for identifying unknown attacks
Signature-based detection matches traffic against known malicious patterns and fails against zero-day threats. Anomaly-based detection compares real-time traffic to a baseline profile to flag unexpected behavior.
Novel zero-day exploits lack pre-defined signature patterns and require statistical anomaly detection.

Anahtar Kavram

Passive out-of-band IDS placement versus inline IPS prevention, and anomaly-based baseline detection versus signature matching.
Soru 86Soru

A network security administrator is deploying a dual centralized AAA architecture to support both network infrastructure management and 802.1X wireless user authentication. Which TWO of the following statements accurately distinguish the operational and transport properties of TACACS+ and RADIUS in this implementation?

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

Cevabı ve açıklamayı göster

Cevap: TACACS+ encrypts the entire packet body following the header and operates over TCP port 49 for administrative sessions.; RADIUS encrypts only the password attribute in the payload and operates over UDP transport protocols.

Cevap

The correct statements are that TACACS+ encrypts the entire packet body following the header while operating over TCP port 49, and RADIUS encrypts only the password attribute in the payload while operating over UDP transport protocols.
TACACS+ encrypts the complete packet payload (excluding the TACACS+ header) and uses TCP port 49 for reliable connection-oriented administrative tracking. RADIUS combines authentication and authorization, encrypting only the password field within the Access-Request packet and using UDP for connectionless transport.

Adım Adım Çözüm

1
Analyze TACACS+ transport and cryptographic boundaries
TACACS+ uses TCP port 49 and encrypts the entire packet body (payload), separating authentication, authorization, and accounting.
Administrative device management requires granular command authorization and reliable TCP connections.
2
Analyze RADIUS transport and cryptographic boundaries
RADIUS uses UDP (ports 1812/1813) and encrypts only the password attribute, combining authentication and authorization.
RADIUS is designed for high-throughput network access control where packet overhead is minimized.
3
Evaluate options against verified protocol characteristics
Identify the two accurate statements describing TACACS+ full payload encryption over TCP and RADIUS password-only encryption over UDP.
Matches the verified operational standards for both AAA protocols.

Anahtar Kavram

AAA Framework Protocol Differentiation (RADIUS vs. TACACS+)
Tahmini Süre:1m 30s
Soru 87Soru

A network administrator needs to configure log retention to track user session durations and bytes transferred across remote access VPN connections for compliance auditing. Which pillar of the AAA framework directly delivers this tracking function?

Cevabı ve açıklamayı göster

Cevap: Accounting

Cevap

Accounting is the AAA framework pillar responsible for tracking user activity, connection statistics, session duration, and resource utilization.
Accounting measures and logs what a user does while connected, including session start and end times, commands executed, and bandwidth consumed.

Adım Adım Çözüm

1
Analyze the requirement stated in the scenario
The requirement focuses on tracking connection time, transferred data, and logging session activity for compliance auditing.
Identifying the core goal isolates which specific security function is needed.
2
Evaluate the AAA framework components
Authentication verifies identity, Authorization determines allowed rights, and Accounting logs and measures resource usage.
Applying the AAA definitions pinpoints the component handling metrics and audit logging.

Anahtar Kavram

AAA Framework Pillars (Authentication, Authorization, Accounting)
Soru 88Soru

A network security administrator is replacing legacy switch administration protocols across an enterprise. The administrator attempts to configure RADIUS to enforce per-command authorization for individual privileged shell commands executed by engineers during SSH sessions on core switches, attempting to replicate an existing TACACS+ feature set. However, command-line execution validation fails to inspect individual commands once the administrative session is established. Which of the following technical characteristics of RADIUS explains why it cannot provide real-time, granular per-command authorization during an active interactive session?

Cevabı ve açıklamayı göster

Cevap: RADIUS combines authentication and authorization into unified transaction exchanges during session establishment, lacking a decoupled architecture to evaluate individual administrative commands post-login.

Cevap

RADIUS combines authentication and authorization into unified transaction exchanges during session establishment, lacking a decoupled architecture to evaluate individual administrative commands post-login.
The correct answer highlights the architectural difference between the two AAA protocols: RADIUS combines authentication and authorization into unified packet exchanges during session establishment. Because authentication and authorization are tightly bound at initial logon, RADIUS cannot perform real-time, command-by-command authorization checks during an active management session. TACACS+ explicitly decouples authentication, authorization, and accounting, allowing network devices to query the TACACS+ server for authorization on every single command executed by a user.

Adım Adım Çözüm

1
Identify the functional requirement requested by the administrator.
The requirement is granular, per-command authorization for interactive management shell commands during an active SSH session.
Security policy requires validating each command typed by an operator before the router or switch executes it.
2
Analyze TACACS+ architecture regarding AAA decoupling.
TACACS+ separates Authentication, Authorization, and Accounting into distinct operations over TCP port 49, sending an authorization request packet to the server for every individual command.
This decoupled structure allows real-time decision-making during an active shell session.
3
Analyze RADIUS architecture regarding AAA decoupling.
RADIUS couples Authentication and Authorization into a single exchange (Access-Request / Access-Accept).
Once the Access-Accept packet is returned, initial access is granted along with set session parameters (e.g., privilege level), but RADIUS provides no standard mechanism to intercept and authorize subsequent individual commands.

Anahtar Kavram

AAA Decoupling and RADIUS vs TACACS+ Protocol Architecture
Tahmini Süre:3m 0s
Soru 89Soru

A network security administrator needs to deploy a security solution that sits directly in the traffic path to inspect incoming packets and actively block identified threats in real time before they reach internal hosts. Which of the following devices should the administrator implement?

Cevabı ve açıklamayı göster

Cevap: Network Intrusion Prevention System (NIPS) placed inline

Cevap

Network Intrusion Prevention System (NIPS) placed inline
An inline Network Intrusion Prevention System (NIPS) processes traffic directly in the flow path, enabling automated real-time threat detection and packet drop actions before malicious traffic reaches target nodes.

Adım Adım Çözüm

1
Identify the primary functional requirement
The requirement demands active real-time inspection and automated packet dropping/blocking of malicious network traffic.
Preventative controls must operate in-band (inline) to intercept traffic prior to reaching target systems.
2
Compare passive (detection) versus active (prevention) network monitoring mechanisms
Passive systems (NIDS/SPAN) inspect copied frames out-of-band and generate alerts without inline blocking capability, while active systems (NIPS) sit in-line to enforce packet drop actions.
Inline deployment allows the security appliance to pass or stop live traffic dynamically.

Anahtar Kavram

Intrusion Prevention Systems (IPS) operate inline to actively block detected threats in real time, whereas Intrusion Detection Systems (IDS) operate passively out-of-band to monitor and alert.
Soru 90Soru

A network engineer is inspecting packet captures during an audit of network management traffic. The captures show authentication and administration sessions between network switches and a central server communicating over TCP port 49, where the complete packet payload following the header is cryptographically encrypted. Which protocol is being observed, and which feature accurately reflects its architecture relative to RADIUS?

Cevabı ve açıklamayı göster

Cevap: TACACS+, which decouples authentication and authorization into distinct services while encrypting the entire message body.

Cevap

TACACS+, which decouples authentication and authorization into distinct services while encrypting the entire message body.
The observed protocol is TACACS+ because it communicates over TCP port 49, encrypts the entire packet payload (excluding the header), and architecture-wise separates authentication and authorization, enabling detailed per-command administrative access controls.

Adım Adım Çözüm

1
Identify the transport protocol and port number given in the packet capture scenario.
The traffic utilizes TCP port 49, which uniquely identifies TACACS+ (Terminal Access Controller Access-Control System Plus). RADIUS operates over UDP ports 1812 and 1813.
Port numbers and transport protocols differentiate AAA management protocols.
2
Analyze the encryption boundaries described in the capture.
The scenario notes that the entire packet payload is encrypted. TACACS+ encrypts the entire body of the packet, whereas RADIUS only encrypts the password attribute within the packet payload.
Understanding security boundaries helps distinguish AAA protocol characteristics.
3
Evaluate the architectural separation of AAA components.
TACACS+ modularly separates Authentication, Authorization, and Accounting into distinct functions, allowing granular command-level authorization. RADIUS combines authentication and authorization into a unified flow.
Determining the correct feature description confirms protocol behavior.

Anahtar Kavram

AAA Framework protocol differences between TACACS+ and RADIUS regarding transport protocols, encryption boundaries, and architectural modularity.
Tahmini Süre:1m 30s
Soru 91Soru

Match each AAA authentication protocol or access control framework to its defining operational and structural characteristic.

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

Öğeler

TACACS+
RADIUS
Kerberos
802.1X with EAP-TLS

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

The correct matches are: TACACS+ aligns with full payload encryption over TCP port 49 and decoupled AAA services; RADIUS aligns with password-only encryption over UDP ports 1812/1813 and combined authentication/authorization; Kerberos aligns with KDC ticket-granting tickets for mutual authentication; and 802.1X with EAP-TLS aligns with port-based access control requiring dual X.509 certificates.
Each authentication mechanism possesses distinct transport protocols, encryption boundaries, and operational characteristics. TACACS+ uses TCP port 49 with full packet payload encryption and modular AAA separation. RADIUS uses UDP ports 1812 and 1813, encrypting only password attributes while coupling authentication and authorization. Kerberos relies on a Key Distribution Center issuing ticket-granting tickets for domain SSO. 802.1X with EAP-TLS enforces port access control through mutual certificate authentication.

Adım Adım Çözüm

1
Analyze transport layer protocols and payload encryption boundaries.
Identify TACACS+ as the protocol using TCP port 49 with full payload encryption, while RADIUS uses UDP ports 1812/1813 with password-only encryption.
Differentiating transport security boundaries isolates network administrative management (TACACS+) from network access control (RADIUS).
2
Examine AAA architectural separation vs combination.
Confirm TACACS+ strictly decouples authentication, authorization, and accounting, whereas RADIUS combines authentication and authorization.
Modular decoupling allows TACACS+ to authorize individual administrator commands independently.
3
Evaluate ticket-based and certificate-based authentication frameworks.
Map Kerberos to the KDC and ticket-granting mechanism, and map 802.1X with EAP-TLS to dual-sided certificate mutual authentication.
Kerberos is designed for domain single sign-on, whereas EAP-TLS provides robust physical/wireless port access security.

Anahtar Kavram

AAA Framework Protocol Architecture and Authentication Methods
Soru 92Soru

A network security engineer is analyzing a packet capture taken between a Network Access Server (NAS) and a centralized authentication server during a remote access connection attempt. The capture reveals that the authentication request is transmitted using UDP over port 1812. Further payload examination demonstrates that only the user password attribute within the packet is obfuscated using a shared secret and MD5 hashing, while the surrounding header information and username remain visible in plaintext. Based on these observed operational characteristics, which authentication protocol is in use, and what structural feature accounts for this payload exposure?

Cevabı ve açıklamayı göster

Cevap: RADIUS, because it encrypts only the password attribute within the Access-Request packet body while operating over UDP.

Cevap

RADIUS is being observed because it uses UDP port 1812 and encrypts only the password attribute within the Access-Request packet payload, leaving other packet fields unencrypted.
The scenario describes RADIUS authentication. RADIUS operates over UDP port 1812 (and port 1813 for accounting) and combines authentication and authorization into a single transaction. A defining cryptographic limitation of RADIUS is that it encrypts only the password attribute inside the Access-Request packet body using a shared secret and MD5 digest, leaving packet headers and usernames exposed in cleartext.

Adım Adım Çözüm

1
Identify the transport protocol and port number from the packet capture
The capture shows UDP over port 1812, which is the standard port reserved for RADIUS authentication and authorization traffic.
RADIUS uses UDP port 1812 (or legacy ports 1645/1646), whereas TACACS+ uses TCP port 49.
2
Analyze the payload encryption boundary specified in the scenario
Only the password attribute is obfuscated, leaving headers and username in plaintext.
RADIUS encrypts only the password field within the Access-Request body using a shared secret MD5 mechanism. In contrast, TACACS+ encrypts the entire packet payload.
3
Correlate protocol features to select the correct protocol identification
The combination of UDP port 1812 and password-only encryption strictly identifies RADIUS.
Matching both transport layer (UDP 1812) and cryptographic boundary (password-only obfuscation) confirms RADIUS behavior.

Anahtar Kavram

RADIUS vs TACACS+ Architectural and Encryption Differences
Soru 93Soru

Match each intrusion detection or prevention concept with its corresponding operational characteristic.

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

Öğeler

Signature-Based Detection
Anomaly-Based Detection
Inline NIPS Deployment
Passive NIDS Deployment

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Signature-Based Detection pairs with known threat pattern database comparison; Anomaly-Based Detection pairs with baseline deviation alerting; Inline NIPS Deployment pairs with active packet blocking in the traffic path; Passive NIDS Deployment pairs with out-of-band traffic monitoring via SPAN port.
Each intrusion detection and prevention component matches its specific operational method: signature-based detection uses known threat patterns, anomaly-based detection identifies deviations from normal baselines, inline NIPS acts in-band to block malicious packets, and passive NIDS operates out-of-band via SPAN/TAP ports to monitor without adding latency.

Adım Adım Çözüm

1
Differentiate between signature-based and anomaly-based detection mechanisms.
Signature-based detection matches traffic to predefined threat definitions, whereas anomaly-based detection flags deviations from established normal baselines.
Signature detection uses specific known fingerprints, while anomaly detection focuses on behavioral variations.
2
Differentiate between inline prevention (IPS) and passive monitoring (IDS) topology placements.
Inline NIPS is placed directly in-band to drop malicious packets, while passive NIDS connects out-of-band (e.g., via SPAN port) to inspect copied packets.
Prevention systems must sit in the active data path to block traffic, while detection systems mirror traffic to avoid introducing network latency.

Anahtar Kavram

IDS/IPS Detection Mechanisms and Deployment Topologies
Soru 94Soru

During a network security audit, an administrator discovers two major vulnerabilities on an enterprise network: internal administrative session credentials are being intercepted in cleartext by unauthorized packet sniffing, and stored database audit logs have been silently modified after an intrusion. To remediate these vulnerabilities and satisfy security compliance, the network engineering team must implement technical controls that explicitly protect the affected pillars of the CIA Triad. Which combination of security controls correctly restores confidentiality for administrative sessions while ensuring data integrity for the stored audit logs?

Cevabı ve açıklamayı göster

Cevap: Enforcing SSH or TLS protocol encryption for all administrative sessions, and generating SHA-256 cryptographic hashes combined with digital signatures for audit log files.

Cevap

Enforcing SSH or TLS protocol encryption for administrative sessions to protect confidentiality, paired with SHA-256 cryptographic hashing and digital signatures to ensure audit log integrity.
Confidentiality ensures that sensitive data, such as administrative credentials, remains inaccessible to unauthorized eavesdroppers. Protocols like SSH and TLS utilize symmetric and asymmetric encryption to protect transport payloads. Integrity ensures that data remains unaltered and authentic. Cryptographic hashing algorithms like SHA-256 generate unique fixed-length digests, while digital signatures provide non-repudiation and verification of file origin, perfectly addressing both vulnerabilities identified in the scenario.

Adım Adım Çözüm

1
Analyze the confidentiality vulnerability
Cleartext credential interception indicates a breach of confidentiality during network transmission.
Confidentiality guarantees that data in transit is hidden from unauthorized observers. Strong transport encryption like SSH or TLS prevents eavesdropping.
2
Analyze the integrity vulnerability
Unauthorized modification of database audit logs indicates a failure of data integrity.
Integrity guarantees that data has not been altered or tampered with. Cryptographic hashing (SHA-256) and digital signatures validate file authenticity and detect modifications.
3
Evaluate control pairs against CIA Triad definitions
SSH/TLS combined with SHA-256 hashing directly addresses confidentiality and integrity respectively.
Other controls such as RAID 1 or backup schedules target Availability, while RADIUS and SNMPv2c fail to provide complete payload confidentiality.

Anahtar Kavram

CIA Triad (Confidentiality vs. Integrity vs. Availability Controls)
Tahmini Süre:2m 0s
Soru 95Soru

Match each Intrusion Detection/Prevention System (IDS/IPS) technology or deployment mode on the left with its corresponding operational characteristic on the right.

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

Öğeler

Signature-Based Detection
Anomaly-Based Detection
Inline NIPS Deployment
Out-of-Band NIDS Deployment

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Signature-Based Detection matches with comparing traffic against known exploit patterns. Anomaly-Based Detection matches with establishing a baseline of standard behavior to identify statistical deviations. Inline NIPS Deployment matches with sitting in-band within live traffic to actively drop malicious packets. Out-of-Band NIDS Deployment matches with receiving mirrored traffic via SPAN/TAP to inspect activity passively without introducing latency.
Each IDS/IPS technology and deployment mode is accurately matched with its operational profile: Signature-based detection relies on known attack signatures. Anomaly-based detection flags deviations from a baseline of normal activity. Inline NIPS resides directly in the traffic stream (in-band) to actively block threats. Out-of-band NIDS passively monitors copied traffic from a SPAN or TAP without introducing latency.

Adım Adım Çözüm

1
Differentiate threat detection engine methods.
Signature-based detection checks traffic payloads against predefined static patterns. Anomaly-based detection measures active network metrics against a baseline of normal behavior.
Detection engines use either predefined rules/signatures or statistical behavioral modeling to identify security events.
2
Differentiate physical network placements and action capabilities.
Inline (in-band) deployment places the device directly in the packet path to perform active prevention (dropping malicious packets). Out-of-band deployment uses mirrored traffic (SPAN/TAP) for passive detection without impacting production packet forwarding latency.
Network placement dictates whether an intrusion system operates as a passive observer (NIDS) or an active inline enforcement device (NIPS).

Anahtar Kavram

Intrusion Detection and Prevention System (IDS/IPS) Detection Logic and Network Topology Placement
Soru 96Soru

Match each authentication protocol or access control framework to its defining operational and architectural characteristics.

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

Öğeler

RADIUS
TACACS+
IEEE 802.1X
Kerberos

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

RADIUS pairs with connectionless transport encrypting passwords only; TACACS+ pairs with TCP port 49 encrypting the full payload; IEEE 802.1X pairs with port-based EAP encapsulation; Kerberos pairs with KDC ticket-granting architecture.
Each protocol is accurately matched based on its network transport, cryptographic boundary, service modularity, and operational role within enterprise authentication.

Adım Adım Çözüm

1
Analyze transport protocols and encryption scope for centralized AAA services
RADIUS uses UDP and encrypts only passwords, whereas TACACS+ uses TCP port 49 and encrypts the entire payload.
Differentiating transport reliability and encryption boundary is fundamental to AAA protocol identification.
2
Evaluate AAA component modularity
RADIUS merges authentication and authorization into combined packets, while TACACS+ decouples authentication, authorization, and accounting entirely.
TACACS+ allows granular command-level authorization independent of initial authentication.
3
Identify network access control and ticket-based authentication standards
IEEE 802.1X governs physical/wireless port access using EAPOL, while Kerberos handles single sign-on via KDC tickets.
802.1X provides layer-2 port security, whereas Kerberos is a domain authentication protocol.

Anahtar Kavram

AAA Protocol Architecture and Authentication Mechanisms
Soru 97Soru

A network security architect is designing an enterprise monitoring and threat mitigation strategy. Match each intrusion detection/prevention deployment model on the left with its corresponding technical implementation characteristic on the right.

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

Öğeler

Inline NIPS with Signature-Based Engine
Passive Out-of-Band NIDS via Hardware TAP
Host-Based IPS (HIPS) with Behavior Analysis
Anomaly-Based NIDS with Baseline Monitoring

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Inline NIPS with Signature-Based Engine matches active packet dropping of known CVE payloads in transit. Passive Out-of-Band NIDS via Hardware TAP matches receiving physical packet copies without latency or single-point-of-failure risks. Host-Based IPS (HIPS) with Behavior Analysis matches local OS API call and memory evaluation to stop zero-day execution. Anomaly-Based NIDS with Baseline Monitoring matches comparing live metrics against statistical profiles to detect unusual protocol shifts.
Each architecture correctly pairs placement with detection engine capabilities: Inline NIPS actively drops known signature matches in-band; Hardware TAPs feed passive out-of-band monitoring without latency or failure risks; HIPS monitors local endpoint process memory and system calls; Anomaly-based NIDS flags traffic metric deviations against established statistical baselines.

Adım Adım Çözüm

1
Analyze deployment topology (in-band inline vs out-of-band passive vs host-based)
Inline NIPS and HIPS operate directly within the execution/packet flow to actively prevent attacks, whereas passive TAP out-of-band NIDS processes out-of-line data streams without impacting network speed.
Placement dictates whether the system can actively block threats in transit or merely log/alert passively.
2
Evaluate detection engine mechanisms (signature-based vs anomaly-based vs behavior-based)
Signature engines require known CVE patterns; behavior engines inspect host system call sequences; anomaly engines detect deviations from normal baseline metrics.
Detection logic dictates whether predefined threat indicators, system behaviors, or statistical variances trigger detection.
3
Match each deployment model to its unique operational description
All left items align uniquely with their technical counterparts based on placement, action capability, and detection mechanism.
Each deployment model addresses distinct operational trade-offs regarding latency, visibility, and prevention capabilities.

Anahtar Kavram

Intrusion Detection and Prevention Systems (IDS/IPS) Topologies and Detection Engines
Soru 98Soru

A network administrator needs to centralize administrative access for network switches using an authentication protocol that encrypts the entire packet payload. Which protocol best satisfies this requirement?

Cevabı ve açıklamayı göster

Cevap: TACACS+

Cevap

TACACS+ is the correct protocol because it encrypts the full body (payload) of each packet during administration sessions.
TACACS+ encrypts the entire packet body following the header, providing full confidentiality for administrative sessions and commands.

Adım Adım Çözüm

1
Analyze the requirement for full packet payload encryption during device administration.
Identify that RADIUS only encrypts the password attribute, whereas TACACS+ encrypts the entire packet body.
Security requirements specifying complete command and credential payload privacy necessitate TACACS+ over RADIUS.
2
Select the protocol matching full payload encryption.
Choose TACACS+.
TACACS+ uses TCP port 49 and provides full payload encryption.

Anahtar Kavram

RADIUS vs TACACS+ Payload Encryption Boundaries
Soru 99Soru

A network administrator needs to deploy a network security device at the perimeter that sits directly in the traffic flow to inspect incoming packets and actively drop detected malicious traffic in real time. Which device should be placed inline to meet this objective?

Cevabı ve açıklamayı göster

Cevap: Network Intrusion Prevention System (NIPS)

Cevap

Network Intrusion Prevention System (NIPS)
A Network Intrusion Prevention System (NIPS) is deployed in-band (inline) along the network communication path. This positioning allows it to inspect all traversing packets in real time and automatically take preventive action, such as dropping malicious packets or resetting TCP connections, before malicious traffic reaches its destination.

Adım Adım Çözüm

1
Identify the key operational requirement in the scenario.
The device must operate inline to actively block and drop malicious traffic in real time.
Inline deployment ensures all traffic passes through the security system before reaching internal hosts.
2
Compare passive (detection) versus active (prevention) system capabilities.
Intrusion Detection Systems (IDS) operate passively out-of-band, whereas Intrusion Prevention Systems (IPS) operate actively in-band.
An inline NIPS has the technical capability to interrupt the traffic flow and drop malicious packets immediately.

Anahtar Kavram

Inline NIPS vs. Passive NIDS Deployment
Soru 100Soru

Which of the following operational characteristics correctly distinguish TACACS+ from RADIUS when evaluating centralized network access controls? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: TACACS+ encrypts the entire packet payload, whereas RADIUS encrypts only the password field.; TACACS+ uses TCP as its transport protocol, whereas RADIUS typically relies on UDP.

Cevap

TACACS+ encrypts the entire packet payload and uses TCP as its transport protocol, whereas RADIUS encrypts only the password field and relies on UDP.
TACACS+ provides full-packet body encryption for all communications and relies on connection-oriented TCP (port 49). In contrast, RADIUS only encrypts the password field within its payload and relies on connectionless UDP (ports 1812/1813).

Adım Adım Çözüm

1
Analyze encryption scope differences between RADIUS and TACACS+
Identify that TACACS+ encrypts the entire payload body of every packet, whereas RADIUS leaves packet headers and attributes unencrypted, encrypting only the user password field.
Encryption boundary is a core architectural distinction between TACACS+ and RADIUS.
2
Analyze transport protocol and port assignments
Identify that TACACS+ operates over TCP port 49, offering reliable connection delivery, while RADIUS operates over UDP ports 1812 (authentication) and 1813 (accounting).
Layer 4 transport choice dictates connection handling and default port numbers for each AAA protocol.

Anahtar Kavram

Core architectural differences between RADIUS and TACACS+ AAA protocols
ÖncekiSayfa 5 / 22Sonraki
Network Security Alıştırma Soruları — CompTIA Network+ — Sayfa 5 | Examkin