All practice questions

2232 questions

Question 81Question

A financial institution is refactoring a monolithic legacy application into a serverless Function-as-a-Service (FaaS) architecture managed via a public cloud provider's API gateway. The cloud provider maintains the underlying physical infrastructure, host hypervisors, and serverless execution runtimes. During an architecture security review, the lead security engineer must establish control placement and operational duties aligned with the cloud shared responsibility model and Zero Trust principles. Which of the following architectural strategies correctly defines the division of security responsibilities between the organization and the cloud provider?

Show answer & explanation

Answer: The organization is responsible for securing function code, configuring API gateway authorization policies, and defining IAM least-privilege execution roles, while the provider manages runtime container isolation, host OS patching, and physical infrastructure.

Answer

The organization is responsible for securing function code, configuring API gateway authorization policies, and defining IAM least-privilege execution roles, while the provider manages runtime container isolation, host OS patching, and physical infrastructure.
Under the cloud shared responsibility model for serverless (FaaS) deployments, the cloud service provider manages the physical facilities, server hardware, hypervisors, operating system patching, and function execution runtimes. The customer retains ownership and responsibility for their application code security, API gateway policy definition, data protection, and least-privilege Identity and Access Management (IAM) role scoping.

Step-by-Step Solution

1
Analyze the cloud service model
Identified the architecture as Function-as-a-Service (FaaS) integrated with an API gateway.
The service model dictates where the provider's management ends and the customer's governance begins.
2
Delineate shared responsibility boundaries for FaaS
The provider abstracts the hardware, host OS, container runtime, and hypervisors. The customer owns data, application code, API configuration, and identity/access management (IAM).
In serverless deployments, customers do not manage underlying servers or operating systems, but remain fully accountable for code security and access policies.
3
Apply Zero Trust and AAA principles
Verified that authentication at the gateway does not replace downstream fine-grained authorization, and perimeter trust must be rejected in favor of explicit verification.
Zero Trust mandates explicit verification across all microservice transactions.

Key Concept

Cloud Shared Responsibility Model in Serverless (FaaS) Architectures
Question 82Question

During a comprehensive security audit of an enterprise microservices web platform, an analyst examines two service implementations. Service 1 is an avatar generator that receives a user-supplied web URL via an HTTP POST request, fetches the image resource directly from that URL using a server-side HTTP client, and stores it in internal object storage without restricting target IP addresses or domains. Service 2 is a catalog search service that accepts input strings from search queries and directly concatenates them into dynamic SQL strings executed against the backend database.

Which of the following vulnerability classifications are present in these microservices, and which recommended controls effectively mitigate them? (Select THREE.)

Select all that apply

Show answer & explanation

Answer: Server-Side Request Forgery (SSRF) is present in Service 1 because the application fetches remote resources based on user-supplied URLs without restricting outbound requests or validating target IP destinations.; SQL Injection (SQLi) is present in Service 2 because user input is directly concatenated into database query strings instead of using prepared statements or parameterized queries.; Implementing strict egress network filtering, URL domain allowlists, and blocking access to loopback and internal private IP ranges remediates the SSRF vulnerability in Service 1.

Answer

The application suffers from Server-Side Request Forgery (SSRF) in the avatar microservice and SQL Injection (SQLi) in the catalog search microservice. Effective mitigations include implementing egress network filtering, URL allowlisting, and restricting internal IP access for the avatar service, as well as replacing dynamic string concatenation with parameterized queries for the catalog search service.
The correct options accurately identify the two software vulnerabilities present in the scenario and specify an effective mitigation strategy for the SSRF flaw. Service 1 exhibits Server-Side Request Forgery (SSRF) because it fetches remote content based on client-provided URLs without constraining destination addresses or prohibiting requests to loopback/private IPs. Service 2 exhibits SQL Injection (SQLi) because input is dynamically concatenated into database queries. Remediating SSRF requires strict egress network filtering, URL allowlisting, and blocking access to internal management interfaces.

Step-by-Step Solution

1
Analyze Service 1 behavior (fetching external URL server-side).
Identified Server-Side Request Forgery (SSRF). The server trusts user input to make backend HTTP requests without validating if the destination IP is internal or forbidden.
When a server receives a URL from a client and retrieves the resource without restricting target address space, it creates an SSRF vulnerability.
2
Analyze Service 2 behavior (dynamic string concatenation into SQL statements).
Identified SQL Injection (SQLi). Untrusted input directly alters database command syntax.
Direct concatenation of user-supplied data into database queries allows attackers to break out of data context into query code context.
3
Evaluate appropriate technical mitigation controls for identified vulnerabilities.
Confirmed that egress network controls, URL allowlisting, and disabling access to private IP blocks mitigate SSRF, while parameterization mitigates SQLi.
Defensive controls must directly address the architectural root cause (preventing unauthorized server requests for SSRF, and isolating data from query execution logic for SQLi).

Key Concept

Software vulnerability identification and remediation (SSRF and SQL Injection)
Question 83Question

An aerospace engineering enterprise recently completed a third-party technical audit of its internal infrastructure. Match each security weakness scenario on the left with the corresponding cryptographic or control vulnerability on the right.

Click a left item, then click its matching right item

Items

An internal portal encrypts session tokens using AES-CBC without a message authentication code, permitting unauthorized modification of encrypted payload flags.
An IoT gateway uses a single pre-installed asymmetric key pair compiled directly into firmware across 10,000 deployed field sensors.
A firmware update distribution server verifies binary signatures using SHA-1 digest comparisons.
A legacy VPN gateway supports 512-bit Diffie-Hellman groups during TLS key agreement negotiations.

Matches

Show answer & explanation

Answer

Each scenario correctly pairs with its underlying vulnerability: the unauthenticated AES-CBC portal matches the bit-flipping vulnerability; the firmware with identical keys matches key reuse from improper key management; SHA-1 signature verification matches the hash collision vulnerability; and 512-bit Diffie-Hellman negotiation matches weak key exchange implementation.
The correct pairings align each operational scenario with its underlying technical failure: CBC mode without MAC enables ciphertext bit manipulation; shared embedded keys breach isolation principles through key reuse; SHA-1 signature checks are susceptible to collision attacks; and 512-bit DH groups fail to withstand parameter cracking.

Step-by-Step Solution

1
Analyze the session token scenario using AES-CBC without MAC.
Identified bit-flipping vulnerability from unauthenticated cipher mode usage.
Without authentication tags (e.g., HMAC), CBC ciphertext bits can be modified by an adversary to predictably manipulate plaintext values upon decryption.
2
Evaluate the IoT firmware deployment containing a shared key pair.
Identified improper key management resulting in private key reuse.
Hardcoding and reusing a single private key across thousands of endpoints compromises all devices if a single unit is extracted and reverse-engineered.
3
Review the firmware update server using SHA-1 for signature validation.
Identified hash collision vulnerability inherent to deprecated digest algorithms.
SHA-1 is cryptographically broken due to practical collision attacks, allowing forged software binaries to pass verification.
4
Examine the VPN gateway accepting 512-bit Diffie-Hellman parameters.
Identified weak key exchange implementation with low parameter length.
512-bit DH key exchange parameters do not provide adequate work factor security and permit attackers to precompute discrete logs to recover session keys.

Key Concept

Identification and remediation of cryptographic protocol weaknesses and security control flaws
Estimated Time:2m 0s
Question 84Question

An organization hosts its web application using a Platform as a Service (PaaS) model from a public cloud service provider. Under the cloud shared responsibility model, which TWO of the following tasks remain the responsibility of the customer?

Select all that apply

Show answer & explanation

Answer: Configuring application-level identity access controls and authorization settings; Securing custom application source code and managing database data classification

Answer

The customer is responsible for configuring application-level access controls and securing custom application code along with data classification.
Under Platform as a Service (PaaS), the cloud service provider abstracts and manages the underlying hardware, hypervisor, and operating system. The customer remains strictly responsible for securing their custom application source code, data classification, user identities, and application-level access controls.

Step-by-Step Solution

1
Identify the cloud service model referenced in the scenario
The model is Platform as a Service (PaaS).
Different cloud models (IaaS, PaaS, SaaS) divide responsibilities differently between the provider and customer.
2
Determine the division of responsibilities for PaaS
The Cloud Service Provider (CSP) manages physical infrastructure, hardware, network virtualization, and the operating system/runtime environment. The customer manages application logic, code, user access permissions, and data security.
PaaS abstracts the underlying operating system and hardware layer away from the customer.
3
Evaluate the choices based on customer responsibilities
Application authorization configuration and application code/data classification are customer duties. OS patching and hypervisor perimeter defense are CSP duties.
Customer responsibility stops above the runtime/OS layer in PaaS deployments.

Key Concept

Cloud Shared Responsibility Model (PaaS)
Question 85Question

A security technician is analyzing a compromised workstation log after an administrative staff member manually ran an executable disguised as a printer driver update. Forensic analysis reveals that upon execution, the payload established persistence via Windows Task Scheduler to maintain access across reboots and initiated command-and-control traffic. The telemetry confirms the file did not perform automated network vulnerability scans or attempt self-replication to other network hosts. Which of the following malware characteristics and operational indicators are demonstrated in this scenario? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Trojan classification based on masquerading as authorized software to induce user execution; Host-based persistence created via OS task scheduling mechanisms

Answer

The scenario demonstrates Trojan classification based on masquerading as authorized software to induce user execution, as well as host-based persistence created via OS task scheduling mechanisms.
The scenario highlights two key operational indicators: first, the executable disguised itself as a legitimate driver update to induce a user to launch it, which defines Trojan malware. Second, endpoint forensic logs show scheduled task creation, which is a key indicator of compromise establishing host persistence.

Step-by-Step Solution

1
Analyze the initial execution vector described in the host telemetry.
The payload relied on disguising itself as a legitimate printer driver update requiring manual user execution, matching Trojan delivery.
Trojans hide inside seemingly legitimate software to trick users into executing malicious code.
2
Examine the endpoint persistence behavior.
The malware configured Windows Task Scheduler to maintain execution rights across reboots.
Scheduled task creation is a standard indicator of compromise used to establish persistent execution.
3
Evaluate negative telemetry indicators (lack of self-replication and scanning).
The file is confirmed not to be a worm because it lacks autonomous self-propagation capabilities.
Differentiating worms from Trojans requires identifying self-replication functionality.

Key Concept

Malware Types and Indicators of Compromise
Question 86Question

A hospital security team wants to join a trusted non-profit network to exchange sector-specific threat intelligence with peer healthcare organizations. Which of the following resources best fulfills this requirement?

Show answer & explanation

Answer: Information Sharing and Analysis Center (ISAC)

Answer

Information Sharing and Analysis Center (ISAC)
Information Sharing and Analysis Centers (ISACs) are trusted, non-profit resources tailored to specific industry verticals (such as healthcare, financial services, or aviation) that allow peer entities to share critical cybersecurity intelligence.

Step-by-Step Solution

1
Analyze the organization's requirements
The requirement asks for a trusted, sector-specific network dedicated to sharing cyber threat intelligence among peer healthcare entities.
Identifying key constraints helps determine the correct source classification.
2
Evaluate intelligence source definitions
Information Sharing and Analysis Centers (ISACs) are non-profit communities built specifically for industry sector collaboration and information exchange.
ISACs exist to collect, analyze, and disseminate cyber threat information within critical infrastructure and specialized sectors.

Key Concept

Information Sharing and Analysis Centers (ISACs)
Question 87Question

A logistics enterprise is migrating its legacy inventory management platform to a cloud-hosted Infrastructure as a Service (IaaS) environment. As part of establishing the operational security baseline, the security team is defining the boundary of duties between the customer organization and the cloud service provider (CSP). Based on the cloud shared responsibility model, which of the following security tasks is the exclusive responsibility of the customer organization?

Show answer & explanation

Answer: Patching the guest operating system and configuring host-based firewall rules on virtual machines

Answer

Patching the guest operating system and configuring host-based firewall rules on virtual machines is the exclusive responsibility of the customer organization.
Under Infrastructure as a Service (IaaS), the cloud service provider is responsible for the 'security OF the cloud' (hardware, hypervisors, physical network, facility controls), whereas the customer is responsible for 'security IN the cloud' (guest operating system maintenance, middleware, application installation, data classification, and host firewall configuration). Therefore, patching guest operating systems and setting up host firewalls is entirely the customer's duty.

Step-by-Step Solution

1
Identify the cloud service model referenced in the scenario.
The scenario specifies an Infrastructure as a Service (IaaS) deployment.
Different service models (IaaS, PaaS, SaaS) partition duties differently between the customer and provider.
2
Analyze the scope of responsibility assigned to the customer in IaaS.
In IaaS, the cloud provider manages hardware, facilities, network abstraction, and hypervisor software, while the customer manages OS, applications, runtime environments, and data controls.
The boundary of control starts at the guest operating system layer for the customer.
3
Evaluate each task against the IaaS responsibility boundary.
Guest OS patching and host firewall configuration fall above the hypervisor line, making them customer responsibilities.
The provider does not have access to manage or patch internal guest OS settings on tenant virtual machines.

Key Concept

Cloud Shared Responsibility Model in IaaS
Question 88Question

An organization's finance department receives an email requesting an immediate change to a trusted vendor's direct deposit bank account details before a scheduled wire transfer. The email features legitimate company logos, uses appropriate financial terminology, and references recent specific purchase order numbers, but originates from a slightly altered external domain. Which of the following social engineering attacks is depicted in this scenario?

Show answer & explanation

Answer: Spear phishing

Answer

Spear phishing is the correct answer because the attack specifically targets finance department personnel with tailored, context-specific information like genuine purchase order details to perform financial theft.
Spear phishing describes a social engineering attack that targets specific organizations or individuals using custom-tailored details—such as accurate contract references and specific financial context—to increase credibility and the likelihood of success.

Step-by-Step Solution

1
Analyze the attack medium and target specificity
The message was delivered via email specifically to the finance department rather than a broad broadcast or SMS.
Identifying the medium (email) and target specificity (finance department) narrows the vector down to email-based social engineering.
2
Examine the level of customization in the attack message
The email incorporates realistic logos, proper terminology, and valid internal purchase order numbers.
High contextual customization tailored to a specific organization or vendor relationship is the defining attribute of spear phishing.
3
Differentiate from general phishing and other social engineering variants
General phishing is sent en masse without customized context, while watering hole, smishing, and pharming rely on different mechanisms or media.
Matching customized email targeting against specific attack definitions confirms spear phishing.

Key Concept

Spear phishing involves crafted, highly targeted messages leveraging stolen or researched context to deceive specific targets.
Question 89Question

During an incident response investigation on a compromised domain controller, a security team suspects the persistent presence of a rootkit alongside other malicious artifacts. Which of the following technical indicators of compromise (IoCs) specifically confirm the presence of a rootkit on the host? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Hooked system call table pointers diverting kernel API requests to mask running malicious process IDs; Direct Kernel Object Manipulation (DKOM) modifying active data structures to conceal open network sockets

Answer

The correct indicators confirming the presence of a rootkit are hooked system call table pointers diverting kernel API requests and Direct Kernel Object Manipulation (DKOM) modifying active data structures to conceal open network sockets.
Rootkits operate at deep operating system levels (often within kernel space) to maintain persistent, invisible control over a host. Intercepting API calls via system call table hooking and modifying kernel memory through Direct Kernel Object Manipulation (DKOM) allow the rootkit to bypass administrative detection tools and mask running processes and active sockets.

Step-by-Step Solution

1
Analyze the core operational mechanism of rootkit malware
Identify that rootkits aim to conceal malicious activity by operating at the kernel or system driver level
Rootkits modify lower-level operating system structures to stealthily hide processes, files, network connections, and privileges from administrative discovery tools.
2
Evaluate the technical telemetry presented in each indicator
System call hooking and Direct Kernel Object Manipulation (DKOM) directly match kernel-level evasion techniques utilized by rootkits
By intercepting system calls and modifying kernel memory structures directly, rootkits prevent native tools from displaying malicious artifacts.
3
Differentiate rootkit telemetry from worm propagation and perimeter defenses
Automated network SMB sweeps represent worm behavior, while firewall configurations are security controls rather than compromise indicators
Rootkits are defined by stealth and kernel manipulation rather than network self-replication mechanisms or defensive policy settings.

Key Concept

Kernel-Level Evasion and Rootkit Indicators of Compromise
Question 90Question

A security architect is updating the network architecture for a pharmaceutical company's laboratory. The network contains legacy instrument controllers operating on legacy software alongside modern cloud-connected analytics platforms. The legacy controllers must transmit processed test metrics to an internal staging database, but must be prohibited from initiating connections to the internet or directly communicating with general corporate workstations. Which of the following controls should the security architect implement to enforce isolation while accommodating operational needs? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Place legacy controllers on a dedicated VLAN with firewall stateful packet inspection rules restricting East-West traffic exclusively to required ports on the staging database.; Implement an administrative jump box host configured with multi-factor authentication and role-based access for remote maintenance of the legacy controllers.

Answer

The correct controls are placing the legacy controllers on a dedicated VLAN with strict East-West firewall rules and deploying an administrative jump box with multi-factor authentication for maintenance access.
Placing legacy lab equipment on a segregated VLAN with restrictive firewall rules enforces microsegmentation and limits East-West network flow exclusively to necessary staging destinations. Pairing this with a jump box ensures administrative management occurs through an audited, multi-factor authenticated transit host rather than direct workstation-to-controller sessions.

Step-by-Step Solution

1
Analyze the operational requirements and security risks associated with legacy equipment on unsupported systems.
Identified that legacy devices must reach the internal staging database but present high exposure risks if exposed to broader internal or external networks.
Legacy systems lack modern host hardening and patch support, requiring strict network-level isolation.
2
Select network containment and access control mechanisms appropriate for secure architecture design.
Determined that VLAN isolation with firewalled East-West access controls restricts communication pathways, and a jump box secures administrative ingress.
VLAN isolation prevents unauthorized lateral movement while the jump server acts as an audited ingress point for administration.
3
Evaluate and eliminate incorrect architectural control choices.
Rejected edge-only perimeter firewall reliance and inline honeypot deployments.
Edge firewalls do not stop internal lateral movement, and honeypots are deception mechanisms rather than inline traffic filters.

Key Concept

Secure Network Architecture and East-West Traffic Isolation
Question 91Question

A pharmaceutical research firm integrates an on-premises high-performance compute cluster with a cloud-managed Platform as a Service (PaaS) database pipeline to process sensitive genomic records across a hybrid cloud model. To protect data in transit and control unauthorized access, the security team implements an inline Cloud Access Security Broker (CASB) alongside microsegmentation. When evaluating security responsibility boundaries under this PaaS architecture, which security management task remains exclusively the responsibility of the cloud customer?

Show answer & explanation

Answer: Managing customer-managed encryption keys (CMEK) and defining database user privilege policies

Answer

Managing customer-managed encryption keys (CMEK) and defining database user privilege policies is exclusively the customer's responsibility in a PaaS model.
Under the cloud shared responsibility model for Platform as a Service (PaaS), the cloud service provider abstract and manages the underlying hardware, hypervisors, and database engine software. However, data ownership, access control configurations, user entitlement definitions, and data-at-rest encryption key lifecycle management (such as CMEK) always remain under the explicit administrative control of the cloud customer.

Step-by-Step Solution

1
Identify the cloud service model referenced in the scenario.
The scenario explicitly specifies a Platform as a Service (PaaS) database pipeline deployment.
Shared responsibility boundaries vary significantly between IaaS, PaaS, and SaaS models.
2
Analyze the scope of Cloud Service Provider (CSP) responsibilities in PaaS.
The CSP manages physical facility security, hypervisor infrastructure, host OS patching, database runtime software, and physical hardware maintenance.
PaaS abstracts the underlying infrastructure and operating system from the customer.
3
Analyze the customer's responsibilities in PaaS.
The customer retains full ownership and responsibility for data classification, application data access policies, database user account privileges, and customer-managed encryption keys (CMEK).
Regardless of cloud model, data ownership and access governance remain entirely under customer control.

Key Concept

Cloud Shared Responsibility Model in Platform as a Service (PaaS)
Question 92Question

A security administrator is drafting baseline policies to align the enterprise network with Zero Trust Architecture (ZTA) principles. Which of the following fundamental tenets should be included in these guidelines? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Explicitly verify the identity, context, and security posture of every access request regardless of user location.; Enforce least privilege access by restricting user permissions to only the specific resources required for their role.

Answer

The correct answers are the principles of explicit verification of all requests and enforcing least privilege access.
Zero Trust Architecture operates on the core philosophy of 'Never Trust, Always Verify'. This entails explicitly authenticating and authorizing every request regardless of origin, and applying least privilege access controls to limit potential damage from compromised accounts or assets.

Step-by-Step Solution

1
Identify core Zero Trust Architecture (ZTA) principles.
ZTA relies on foundational tenets including 'Never Trust, Always Verify', explicit verification, least privilege, and assumed breach.
Establishing accurate baseline policies requires distinguishing Zero Trust tenets from legacy perimeter defenses.
2
Evaluate the option regarding explicit verification.
Verifying identity, device posture, and context for all access requests regardless of location directly reflects the 'Explicitly Verify' tenet.
Zero Trust eliminates implicit trust based on network location.
3
Evaluate the option regarding least privilege access.
Restricting permissions to only necessary resources directly aligns with the 'Least Privilege' tenet.
Limiting access reduces the blast radius of potential security compromises.

Key Concept

Core Tenets of Zero Trust Architecture
Question 93Question

A Security Operations Center (SOC) analyst investigates alerts from a managed network switch. The syslog outputs reveal that a single switch port learned over 100,000 unique source MAC addresses in less than one minute. Subsequent packet analysis shows that unicast traffic intended for specific hosts on VLAN 10 is now being broadcast to all physical ports on the switch, allowing an unauthorized system to capture unencrypted data frames. Which of the following attack types is indicated by these log entries, and what primary operational state change causes the switch to exhibit this behavior?

Show answer & explanation

Answer: MAC flooding, where Content Addressable Memory (CAM) table exhaustion forces the switch into a fail-open state that broadcasts unicast frames across all ports.

Answer

MAC flooding (CAM table overflow) is occurring, which exhausts switch memory and forces it to enter a fail-open state where unicast frames are flooded across all physical switch ports.
The correct answer identifies MAC flooding (CAM table overflow). Managed switches maintain a Content Addressable Memory (CAM) table to map MAC addresses to physical ports. When an attacker floods a port with thousands of randomized source MAC addresses, the CAM table fills to capacity. To maintain connectivity, switches enter a 'fail-open' mode, broadcasting all incoming unicast traffic out of every port in that VLAN. This permits packet sniffers connected to any port on the switch to intercept traffic not intended for them.

Step-by-Step Solution

1
Analyze the log indicators
Identified rapid learning of over 100,000 source MAC addresses on a single port within one minute.
Switches have finite Content Addressable Memory (CAM) tables to store MAC-to-port mappings; an extreme influx of unique MAC addresses indicates deliberate memory saturation.
2
Assess the observed switch network behavior
Observed unicast traffic being broadcast to all physical switch ports.
When a switch's CAM table is fully saturated, it cannot record new addresses or lookup destination ports for incoming frames, forcing it to fall back to broadcasting (unicast flooding) like a network hub.
3
Map indicators to attack taxonomy
Determined that MAC flooding (CAM table overflow) accurately accounts for both the syslog anomaly and the fail-open packet broadcasting behavior.
Other attacks like ARP poisoning, MAC spoofing, or VLAN hopping alter routing or header tags but do not cause CAM table exhaustion leading to switch-wide fail-open unicast flooding.

Key Concept

Switch CAM Table Overflow / MAC Flooding Attack Indicators
Question 94Question

A corporate security operations center is investigating four distinct security incidents involving social engineering vectors across physical, web, domain, and email boundaries. Match each incident description on the left with its corresponding social engineering attack classification on the right.

Click a left item, then click its matching right item

Items

A threat actor gains physical access to a high-security server room by maintaining close distance behind an authorized technician entering through a restricted access control door.
A threat actor infects a third-party industry news repository heavily frequented by target defense contractors with zero-day exploit code.
A threat actor registers a domain that substitutes a Cyrillic character for a Latin character in an enterprise client portal URL to capture authentication tokens.
A threat actor impersonates the Chief Executive Officer via an urgent, out-of-band email instructing the financial controller to execute an immediate emergency wire transfer.

Matches

Show answer & explanation

Answer

The incident involving physical access through a restricted entry corresponds to Tailgating; the third-party news portal infection corresponds to a Watering Hole Attack; the domain registration using lookalike characters corresponds to Typosquatting (Homoglyph Attack); and the urgent executive wire transfer directive corresponds to Business Email Compromise (Executive Impersonation).
Each scenario maps directly to its specific social engineering attack vector: physical trailing without authorization is tailgating; compromising a trusted industry forum to infect visitors is a watering hole attack; registering visual lookalike domains with international characters is typosquatting via homoglyphs; and impersonating C-level executives to mandate wire transfers is Business Email Compromise.

Step-by-Step Solution

1
Analyze physical boundary security breach description
Identify that unauthenticated physical entry achieved by closely following authorized personnel is Tailgating.
Tailgating exploits social norms and physical proximity to bypass electronic entry controls.
2
Analyze web portal compromise incident description
Identify that compromising a specialized third-party site trusted and frequented by a target sector is a Watering Hole Attack.
Watering hole attacks leverage the target audience's routine browsing habits to execute drive-by downloads.
3
Analyze domain URL manipulation incident description
Identify that substituting visually indistinguishable foreign characters into a web address is a Homoglyph-based Typosquatting attack.
Typosquatting and homoglyphs exploit visual trickery in web addresses to deceive users during credential entry.
4
Analyze fraudulent financial email incident description
Identify that executive authority impersonation aimed at transferring corporate funds is Business Email Compromise (BEC).
BEC campaigns leverage organizational hierarchy and fake urgency to bypass standard approval checks.

Key Concept

Categorization of social engineering attack vectors across physical, web, domain, and email environments.
Estimated Time:2m 0s
Question 95Question

An organization plans to host a critical public web application with a third-party cloud service provider. To protect against potential loss of revenue due to service outages, the organization negotiates a Service Level Agreement (SLA) that obligates the vendor to pay financial remedies if uptime falls below 99.9%. Which of the following risk response strategies is the organization implementing with this contractual provision?

Show answer & explanation

Answer: Risk Transfer

Answer

Risk Transfer
Risk transfer is a strategy where the financial impact or responsibility of a potential loss is shifted to a third party, such as through insurance policies, warranties, or service level agreements (SLAs) containing financial penalty clauses.

Step-by-Step Solution

1
Analyze the scenario details.
The organization uses a contractually binding agreement (SLA) to enforce financial compensation from a third party in the event of an outage.
Shifting financial liability or operational responsibility to a external entity characterizes risk transfer.

Key Concept

Risk Transfer Strategy
Estimated Time:45s
Question 96Question

An enterprise security team is evaluating alert telemetry generated by a network intrusion detection system (NIDS) and netflow collectors monitoring a DMZ web server (IP address 192.168.50.14192.168.50.14). Flow telemetry demonstrates persistent outbound TCP connections initiated every 300300 seconds to an external IP address (198.51.100.45198.51.100.45) over port 443443. However, NIDS packet payload analysis reveals that the outbound traffic consists of raw, unencrypted HTTP POST requests containing base64-encoded strings rather than valid TLS handshake negotiations. Which of the following conclusions best explains this alert scenario?

Show answer & explanation

Answer: An compromised internal host is using protocol tunneling and scheduled beaconing over an allowed port to maintain command-and-control communication while evading port-based filtering.

Answer

An compromised internal host is using protocol tunneling and scheduled beaconing over an allowed port to maintain command-and-control communication while evading port-based filtering.
The combination of regular outbound connections at fixed time intervals (beaconing) and traffic payload mismatch (unencrypted HTTP over port 443) strongly indicates an infected system establishing a covert command-and-control (C2) channel through protocol tunneling to bypass perimeter port restrictions.

Step-by-Step Solution

1
Analyze the connection pattern in flow telemetry.
Identified periodic outbound connections occurring at precise 300-second intervals to an external address.
Regular, automated outbound intervals (beaconing) are indicative of automated malware checking in with a command-and-control (C2) server.
2
Examine packet inspection payload data for protocol mismatches.
Found unencrypted HTTP POST payloads on TCP port 443 instead of standard TLS/SSL encrypted traffic.
Attackers often use standard open outbound ports (like port 443) to tunnel non-standard or unencrypted traffic to bypass simple port-based firewall filtering.
3
Synthesize findings to determine root cause.
Confirmed covert C2 beaconing via protocol tunneling.
Combining automated interval timing with payload/port mismatch confirms malware egress beaconing and protocol evasion.

Key Concept

Network Security Monitoring, Protocol Tunneling, and Egress Beaconing Identification
Question 97Question

A Security Operations Center (SOC) analyst is reviewing identity logs following an automated alert. The logs record two successful authentication events for the same employee account within a short timeframe:

- 14:02:11 UTC | Account: j.smith | Location: New York, USA | Method: Password + TOTP | Status: SUCCESS
- 14:05:30 UTC | Account: j.smith | Location: Tokyo, Japan | Method: Password + Push Prompt | Status: SUCCESS

Based on these logs, which of the following identifies the most likely operational security issue and the correct immediate response?

Show answer & explanation

Answer: An impossible travel anomaly indicating compromised user credentials; immediately revoke all active session tokens and reset the account credentials.

Answer

An impossible travel anomaly indicating compromised user credentials; immediately revoke all active session tokens and reset the account credentials.
The correct option identifies an impossible travel anomaly, which occurs when an account successfully authenticates from two geographic locations that are too far apart to travel between in the elapsed time. In Security Operations, when impossible travel is detected, the compromised account must be contained immediately by invalidating active sessions and resetting credentials.

Step-by-Step Solution

1
Analyze the authentication log timestamps and geographic locations.
Identified two successful authentications for user account j.smith occurring 3 minutes and 19 seconds apart between New York and Tokyo.
Physical movement between these geographically distant locations in under four minutes is physically impossible.
2
Determine the operational security risk based on the log pattern.
Recognized an impossible travel detection alert, which typically signifies compromised primary credentials or session hijacking.
An attacker likely obtained valid credentials and successfully logged in from a remote region while the legitimate user logged in locally.
3
Select the appropriate immediate incident response action.
Revoke active session tokens and initiate a mandatory credential reset for the impacted account.
Terminating existing sessions prevents further unauthorized actions while resetting credentials halts future unauthorized access.

Key Concept

Identity Log Anomaly Detection and Account Containment
Question 98Question

A financial institution is expanding its open-banking API integration platform. The Chief Risk Officer directs the security architecture team to publish an enterprise-wide governance document establishing mandatory, technology-neutral technical rules—such as requiring TLS 1.3 for all external communication endpoints and mandating a 15-minute maximum session idle timeout—that all development teams must satisfy. The document must enforce strict compliance across all business units without specifying platform-dependent implementation steps or command-line syntax. Which type of governance document should the security architecture team publish to fulfill this directive?

Show answer & explanation

Answer: Security Standard

Answer

Security Standard
The option specifying a Security Standard is correct because standards set mandatory, enterprise-wide technical requirements and operational thresholds that are technology-neutral, ensuring consistent security posture across all development teams.

Step-by-Step Solution

1
Analyze the core requirements of the executive directive.
The directive requires mandatory compliance, technology-neutral technical requirements, and applicability across all business units.
Governance documents are categorized based on their level of compulsion (mandatory vs discretionary) and technical scope (high-level policy, operational standard, platform baseline, or procedural steps).
2
Compare the document characteristics against governance hierarchy definitions.
A Security Standard provides mandatory, platform-independent technical rules and thresholds (such as mandating TLS 1.3 and session timeouts) to ensure uniform compliance.
Unlike baselines (which target specific platforms) or guidelines (which are optional), standards mandate specific technical criteria without prescribing step-by-step procedures.

Key Concept

Security Governance Hierarchy: Policies vs Standards vs Baselines vs Guidelines vs Procedures
Question 99Question

An organization's security team is enhancing its software supply chain risk management practices for newly acquired third-party applications. To proactively verify that external vendor applications do not introduce known vulnerabilities from embedded open-source libraries, which of the following artifacts should the organization require vendors to provide?

Show answer & explanation

Answer: A Software Bill of Materials (SBOM)

Answer

The organization should require vendors to provide a Software Bill of Materials (SBOM).
Requiring a Software Bill of Materials (SBOM) allows organizations to maintain continuous visibility into the component libraries and open-source software embedded within vendor-supplied applications. This inventory is critical for analyzing supply chain risks and reacting promptly when vulnerabilities are discovered in common upstream libraries.

Step-by-Step Solution

1
Identify the primary security concern in the scenario
The core requirement is identifying hidden vulnerabilities in third-party software and open-source libraries integrated into vendor products.
Supply chain security risks often stem from nested open-source dependencies contained within compiled or distributed software packages.
2
Evaluate the appropriate supply chain governance artifact
A Software Bill of Materials (SBOM) provides a complete nested inventory of code components, libraries, and modules.
Having an SBOM enables security teams to correlate identified component versions against known vulnerability databases (such as CVEs).

Key Concept

Software Bill of Materials (SBOM) in Supply Chain Security
Estimated Time:1m 15s
Question 100Question

An organization's security team integrates an automated SOAR playbook with their container orchestration platform to terminate and redeploy application pods whenever runtime security threats are detected. Following a threat feed update, a high volume of false-positive alerts triggers continuous pod terminations, resulting in an application service outage. Which of the following workflow modifications best prevents this cascading operational disruption while preserving automated remediation capabilities?

Show answer & explanation

Answer: Implement rate-limiting thresholds and conditional human-in-the-loop approval triggers within the playbook logic before executing bulk pod terminations.

Answer

Implementing rate-limiting thresholds and conditional human-in-the-loop approval triggers within the playbook logic prevents runaway automated pod terminations while maintaining automated response capabilities.
The correct response introduces rate limiting and conditional human-in-the-loop approval steps into the SOAR workflow. This ensures that high-volume or rapid-succession actions are paused for analyst verification, preventing automated playbooks from causing large-scale availability outages while retaining rapid response capabilities for isolated incidents.

Step-by-Step Solution

1
Analyze the operational incident root cause.
The availability outage was caused by an unconstrained SOAR playbook repeatedly executing containment actions based on high-frequency alert triggers.
Automated security orchestration workflows without execution bounds or safety guardrails risk causing self-inflicted denial-of-service conditions.
2
Evaluate containment guardrail controls for SOAR playbooks.
Rate limiting restricts the number of actions executed per time window, and human-in-the-loop (HITL) approval pauses mass actions for verification.
Balancing security automation with operational resilience requires guardrails that catch false-positive loops before impacting critical infrastructure.

Key Concept

SOAR Playbook Logic and Operational Guardrails
Estimated Time:1m 15s
PreviousPage 5 / 112Next
All practice questions — CompTIA Security+ | Examkin