Threats, Vulnerabilities, and Mitigations

490 questions

Question 301Question

An enterprise security architect is evaluating system hardening controls to address findings from a comprehensive technical vulnerability audit. Match each enterprise hardening practice on the left to its corresponding primary risk mitigation objective on the right.

Click a left item, then click its matching right item

Items

Implementation of eBPF (Extended Berkeley Packet Filter) runtime hooks
Automated deployment of ephemeral short-lived access credentials
Configuration of DNS RPZ (Response Policy Zone) sinkholing
Enforcement of ASLR (Address Space Layout Randomization) paired with DEP/NX flags

Matches

Show answer & explanation

Answer

eBPF runtime hooks match kernel-level system call monitoring and container breakout detection. Automated ephemeral credentials match reducing the exposure window of stolen service tokens. DNS RPZ sinkholing matches blocking outbound C2 domain resolution. ASLR with DEP/NX flags matches neutralizing buffer overflow and code injection exploits.
Each listed hardening control addresses a distinct technical attack vector: eBPF monitors kernel system calls to stop privilege escalation and container escapes; ephemeral access tokens limit credential abuse duration; DNS RPZ intercepts malicious outbound domain queries; and ASLR paired with DEP prevents buffer overflow code execution.

Step-by-Step Solution

1
Analyze the technical operation of eBPF instrumentation.
Determined that eBPF runs sandboxed programs directly within the Linux kernel to trace system calls and enforce container security limits.
Kernel-level visibility directly addresses host and container runtime hardening.
2
Evaluate the risk reduction mechanism of short-lived ephemeral credentials.
Identified that enforcing short validity periods limits credential reuse opportunities during token leakage incidents.
Identity hardening focuses on minimizing threat actor persistence windows.
3
Determine the functional role of DNS Response Policy Zones (RPZ).
Recognized that RPZ filters and redirects DNS lookups for known malicious domains before outbound network connections complete.
Network egress hardening prevents malware C2 callback channels.
4
Examine memory protection controls ASLR and DEP/NX.
Confirmed that memory address randomization combined with non-executable stack/heap flags thwarts exploit payloads relying on static memory offsets.
OS memory hardening prevents binary corruption exploits.

Key Concept

Enterprise mitigation techniques across kernel runtime security, identity lifecycle management, network egress filtering, and OS memory protection.
Question 302Question

A security technician is tasked with implementing host-level hardening controls on enterprise web servers. Which of the following technical mitigation practices directly reduce the host's attack surface? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Disabling unneeded background services and unused network daemons; Enforcing application allowlisting to restrict unauthorized binary execution

Answer

Disabling unneeded background services and network daemons, as well as enforcing application allowlisting, directly reduce the host's attack surface.
Disabling unneeded services removes active software components and open ports that attackers could target, directly shrinking the attack surface. Enforcing application allowlisting ensures that unapproved or malicious software cannot execute on the host even if uploaded, providing effective endpoint defense.

Step-by-Step Solution

1
Identify the primary objective of host attack surface reduction.
Recognize that minimizing exposure involves removing unnecessary entry points and blocking unauthorized executable code on the server.
Hardening a host requires reducing active listening ports/services and enforcing strict software execution policies.
2
Evaluate host-level technical mitigation techniques.
Select disabling unnecessary services/daemons and implementing application allowlisting as valid host-level hardening controls.
These controls directly mitigate risk on the host system itself.
3
Distinguish host hardening controls from perimeter defenses and deception mechanisms.
Reject options that misapply perimeter firewalls for patching or treat honeypots as inline filtering devices.
Firewalls do not fix code flaws, and honeypots collect threat intelligence rather than blocking inline traffic.

Key Concept

Host Hardening and Attack Surface Reduction
Question 303Question

An organization wants to immediately detect unauthorized modifications made to critical system configuration files on a server. Which of the following technical controls is MOST effective for this purpose?

Show answer & explanation

Answer: Deploying File Integrity Monitoring (FIM) software to inspect baseline file hashes.

Answer

Deploying File Integrity Monitoring (FIM) software to inspect baseline file hashes.
File Integrity Monitoring (FIM) is specifically designed to monitor system and application files by comparing their current cryptographic hashes against established baseline hashes. If an unauthorized user or process modifies a protected file, FIM detects the hash mismatch and alerts security administrators immediately.

Step-by-Step Solution

1
Identify the primary requirement
The requirement is to detect unauthorized changes made directly to system files on a server.
Host security controls must be evaluated based on whether they inspect data at rest and local storage modifications.
2
Evaluate the capabilities of File Integrity Monitoring (FIM)
FIM compares current file hashes against a established cryptographic baseline.
When a file's content or metadata changes, its hash value updates, triggering an alert for unauthorized modification.

Key Concept

File Integrity Monitoring (FIM) for Host Hardening
Estimated Time:45s
Question 304Question

An enterprise software vendor distributes signed firmware updates to industrial IoT controllers. A recent security audit reveals that while the vendor uses a 2048-bit RSA key for asymmetric signing, the update process relies on the SHA-1 hashing algorithm to compute message digests. Which of the following best describes the primary security risk created by using SHA-1 for digital signature generation?

Show answer & explanation

Answer: An adversary could forge a malicious firmware image that yields an identical digest, bypassing signature verification controls.

Answer

An adversary could forge a malicious firmware image that yields an identical digest, bypassing signature verification controls.
The correct answer highlights the risk of cryptographic hash collisions. SHA-1 is computationally susceptible to collision attacks, meaning an attacker can craft a altered file that produces the exact same hash output as a legitimate file. When signed by the vendor's private key, the system accepts the malicious software as authentic.

Step-by-Step Solution

1
Analyze the cryptographic weak point identified in the scenario.
The scenario highlights the reliance on SHA-1 for message digest generation prior to RSA signing.
While RSA-2048 provides strong key strength, digital signatures rely on the cryptographic resistance of the hashing algorithm.
2
Evaluate the primary vulnerability associated with deprecated hash algorithms like SHA-1.
SHA-1 lacks sufficient collision resistance.
Cryptographic collisions allow two different datasets (such as a valid firmware update and a trojanized binary) to output the same hash value.
3
Determine the impact of a hash collision on digital signature verification.
The recipient's verification process computes the hash of the malicious file, finds it matches the signature, and trusts the forged payload.
This compromises code integrity and authenticity, allowing unauthenticated code execution.

Key Concept

Cryptographic Hash Collision Vulnerabilities
Question 305Question

A network security administrator is analyzing wireless performance logs after users report sudden network disconnection across an entire office floor. The administrator suspects a physical Radio Frequency (RF) jamming attack rather than an 802.11 deauthentication attack. Which of the following indicators specifically suggest an RF jamming attack is occurring? (Select TWO)

Select all that apply

Show answer & explanation

Answer: A sudden, significant increase in the physical layer noise floor across wireless frequency bands; Simultaneous loss of wireless signal and throughput across all local channels regardless of access point BSSID

Answer

The indicators of an RF jamming attack are a sudden, significant increase in the physical layer noise floor across wireless frequency bands, and simultaneous loss of wireless signal and throughput across all local channels regardless of access point BSSID.
RF jamming attacks flood the physical radio frequency bands with continuous electromagnetic noise. This manifests as a sharp increase in the physical layer noise floor and causes widespread signal degradation across all wireless channels within range of the jamming device, irrespective of specific network SSIDs or access point identifiers.

Step-by-Step Solution

1
Differentiate between Layer 1 physical attacks and Layer 2 protocol attacks.
RF jamming is a Layer 1 (Physical layer) attack that disrupts radio signals directly, whereas deauthentication attacks operate at Layer 2 (Data Link layer) using 802.11 management frames.
Identifying the OSI layer of the symptom helps narrow down the correct attack indicators.
2
Evaluate physical RF noise metrics and channel-wide disruption.
Jammers flood radio frequencies with noise, which increases the noise floor measurement on spectrum analyzers and blocks all transmissions across affected channels.
RF jammers degrade the Signal-to-Noise Ratio (SNR) physically without relying on valid Wi-Fi frames.

Key Concept

RF Jamming vs. 802.11 Frame-Based Attacks
Question 306Question

A software developer is designing a web application search feature that queries a back-end database using user-supplied input. Which of the following software development practices is the most effective method to prevent SQL injection vulnerabilities in this application?

Show answer & explanation

Answer: Utilizing parameterized queries and prepared statements

Answer

Utilizing parameterized queries and prepared statements is the most effective method to prevent SQL injection vulnerabilities.
Utilizing parameterized queries and prepared statements ensures that the database engine treats user input strictly as data parameters rather than executable SQL commands, effectively neutralizing injection attempts.

Step-by-Step Solution

1
Identify the core vulnerability mechanism
SQL injection occurs when malicious user input alters the intended database query logic.
Understanding how untrusted data interacts with database execution helps determine the appropriate security control.
2
Evaluate secure coding techniques for database access
Prepared statements handle user input separately from the SQL statement parameters, ensuring the database engine treats input strictly as data variables rather than executable code.
This structural separation ensures input cannot manipulate the database command structure regardless of content.

Key Concept

SQL Injection Prevention via Parameterized Queries
Question 307Question

During a post-incident analysis of a compromised legacy industrial control jump server, security auditors discover that attackers leveraged an unquoted service path vulnerability combined with permissive folder write permissions to execute arbitrary code with SYSTEM privileges. The jump server cannot be immediately decommissioned or upgraded due to operational uptime dependencies. Which of the following mitigation strategies provides the MOST effective immediate technical control to prevent execution of unauthorized binaries in these writable paths while preserving host stability?

Show answer & explanation

Answer: Implement application allowlisting policies enforcing path and hash-based rules via AppLocker or WDAC.

Answer

Implementing application allowlisting policies enforcing path and hash-based rules via AppLocker or Windows Defender Application Control (WDAC).
Application allowlisting controls, such as Microsoft AppLocker or Windows Defender Application Control (WDAC), prevent untrusted binaries from executing regardless of file location or service privilege levels. By defining strict hash or path rules, any unauthorized binary dropped into an unquoted service directory will be blocked from launching, directly mitigating the privilege escalation threat on legacy systems without requiring disruptive software updates.

Step-by-Step Solution

1
Analyze the vulnerability vectors
Identified local file-system level privilege escalation (unquoted service path + permissive write access).
Understanding the attack mechanism is necessary to choose a control at the appropriate architectural layer.
2
Evaluate host-level versus network-level controls
Network firewalls and perimeter IPS cannot inspect or restrict local process creation or binary execution on the operating system.
Eliminates network-focused options that fail to remediate local host execution vulnerabilities.
3
Select preventative hardening technique for legacy environments
Application allowlisting (AppLocker/WDAC) restricts execution strictly to approved cryptographic hashes or trusted paths.
Allows legitimate legacy services to execute while blocking unauthorized binaries placed in writable unquoted service paths without requiring immediate service re-architecture.

Key Concept

Application Allowlisting and Host Hardening Mitigations
Question 308Question

Network monitoring alerts show that a malicious binary on an infected host is actively scanning neighboring subnets over TCP port 445 and automatically exploiting a remote code execution vulnerability on adjacent systems. The malware spreads from machine to machine across the network without requiring any user action, social engineering, or credential theft, after which it encrypts local files and issues a ransom prompt. Which of the following malware classifications best describes this threat?

Show answer & explanation

Answer: Worm

Answer

The threat is best classified as a Worm because it self-propagates across subnets via network vulnerabilities without requiring user intervention.
The correct answer identifies the malware as a worm because the primary indicator of compromise is autonomous, network-wide self-propagation via unpatched vulnerability exploitation without requiring user interaction.

Step-by-Step Solution

1
Analyze the primary propagation mechanism described in the telemetry.
The payload autonomously scans subnets and exploits network ports to infect remote machines without human assistance.
Propagation characteristics distinguish self-replicating malware from user-assisted malicious code.
2
Compare the observed network behavior against standard malware definitions.
Autonomous network spreading across vulnerabilities matches the core definition of a worm (even when combined with ransomware payloads).
Trojans, rootkits, and logic bombs rely on execution triggers, user interaction, or stealth concealment rather than automated network replication.

Key Concept

Worm propagation vs Trojan and fileless delivery mechanisms
Question 309Question

Match each enterprise host or infrastructure security scenario to the underlying vulnerability or architectural weakness it represents.

Click a left item, then click its matching right item

Items

An embedded storage controller accessible via Telnet and HTTP across the general user workstation VLAN.
A legacy enterprise server running an operating system that has reached End-of-Life (EOL) without extended security updates.
A hypervisor management interface directly reachable from all non-administrative employee subnets.
A network switch deployed into production retaining factory-configured administrative login accounts.

Matches

Show answer & explanation

Answer

The scenarios match their respective security weaknesses as follows: Telnet and HTTP management maps to Cleartext Management & Insecure Protocols; End-of-Life OS maps to Unsupported / Legacy System; hypervisor interface accessible to user subnets maps to Improper Network Segmentation; and factory login accounts map to Default Configuration & Credentials.
Each scenario directly maps to its primary host and infrastructure vulnerability category: Telnet and HTTP communicate without transport encryption (Cleartext Management & Insecure Protocols); EOL systems lack vendor patch support (Unsupported / Legacy System); hypervisors accessible across general user subnets lack network isolation (Improper Network Segmentation); and factory administrative logins leave systems exposed to unauthorized access (Default Configuration & Credentials).

Step-by-Step Solution

1
Analyze each scenario's technical properties and security flaw.
Identify cleartext transport protocols (Telnet/HTTP), unpatched software lifecycle status (EOL), flat network exposure of host management, and unmanaged factory credentials.
Categorizing the specific technical failure allows mapping each host and infrastructure risk to standard security vulnerability categories.
2
Map the technical failures to their core host and infrastructure vulnerability classifications.
Connect cleartext management traffic to insecure protocols, EOL status to unsupported systems, unrestricted hypervisor routing to improper segmentation, and factory logins to default configurations.
Correlate host lifecycle, network access boundaries, and credential baselines against established enterprise security weakness classifications.

Key Concept

Host, Network, and Architecture Vulnerabilities
Question 310Question

A security administrator must perform regular vulnerability assessments on production enterprise servers hosting critical database applications. The organization requires detailed visibility into missing OS security patches and host configuration compliance, but must avoid destabilizing active production services or triggering target account lockouts. Which vulnerability testing approach should the administrator implement to meet these requirements?

Show answer & explanation

Answer: Run a credentialed vulnerability assessment using a dedicated read-only service account.

Answer

Run a credentialed vulnerability assessment using a dedicated read-only service account.
Credentialed vulnerability assessments utilize valid account credentials to access local system resources directly. This allows the assessment scanner to read system patch levels, registry configurations, and installed software indices safely without triggering network intrusion alarms or brute-force account lockout thresholds.

Step-by-Step Solution

1
Analyze the operational requirements provided in the scenario.
Identified key requirements: high-accuracy detection of OS/software missing patches, verification of internal system configurations, zero risk of account lockouts, and minimal service impact.
Vulnerability assessment techniques vary in aggressiveness, resource usage, and internal system visibility.
2
Compare credentialed scanning against uncredentialed and dynamic testing techniques.
Credentialed scanning logs directly into the target operating system via a low-privileged read-only account, querying installed packages and configuration files without injecting active exploit payloads.
Logging in locally provides comprehensive internal patch visibility while avoiding service disruption or brute-force account lockouts.

Key Concept

Credentialed vs. Uncredentialed Vulnerability Assessment Methods
Question 311Question

Match each observed wireless attack indicator on the left with its corresponding attack classification on the right.

Click a left item, then click its matching right item

Items

Captive portal clone broadcasting an identical corporate SSID with a stronger RSSI on an unapproved channel alongside injected frame drops
Unsolicited OBEX push messages containing text or contact cards received on mobile endpoints over short-range 2.4 GHz wireless links
A high-frequency burst of 802.11 management frames (subtype 0x000C) forcing wireless clients off the access point
Capture logs demonstrating repeated M4 and M6 message failures during automated PIN registration attempts against an AP

Matches

Show answer & explanation

Answer

1. Captive portal clone broadcasting identical SSID -> Evil Twin Attack; 2. Unsolicited OBEX push messages -> Bluejacking; 3. Burst of 802.11 management subtype 0x000C frames -> Wireless Disassociation Attack; 4. M4/M6 failure messages during PIN registration -> WPS Brute-Force Attack.
Each indicator uniquely aligns with its attack mechanism: Evil Twins impersonate known SSIDs with stronger RSSI; Bluejacking uses OBEX to deliver unsolicited media; Disassociation attacks utilize 802.11 management frames (subtype 0x000C); and WPS brute-forcing triggers M4/M6 handshake errors during PIN validation.

Step-by-Step Solution

1
Analyze the indicator describing an unauthorized access point copying a legitimate network's SSID with higher signal strength.
Identify that spoofing a legitimate SSID to intercept victim traffic defines an Evil Twin attack.
Evil Twins trick client devices into auto-associating due to higher signal strength.
2
Examine the short-range wireless payload involving OBEX push protocol messages.
Match OBEX messaging with Bluejacking.
Bluejacking involves sending unsolicited business cards or text messages via Bluetooth without gaining unauthorized data access.
3
Inspect the 802.11 frame subtype 0x000C metric.
Associate subtype 0x000C (Deauthentication) with a Wireless Disassociation attack.
Spoofed 802.11 deauthentication management frames force targeted endpoints off the wireless network.
4
Identify the protocol failures during M4/M6 handshake messages.
Link WPS PIN handshake message failures to WPS Brute-Force attacks.
WPS exchanges use specific message sequences (M1 through M8); failures at M4/M6 occur when testing invalid 4-digit PIN halves.

Key Concept

Identifying wireless attack signatures and protocols from technical packet indicators and log anomalies.
Question 312Question

During an infrastructure security review at an industrial design firm, security analysts discover that several senior hardware engineers were infected with malware after visiting a popular, highly niche third-party CAD community forum. Investigation reveals that threat actors compromised the forum server weeks earlier and modified its code to selectively deliver an exploit payload only to visitors originating from the design firm's corporate IP address range. Which social engineering vector did the threat actor primarily execute to target these specific employees?

Show answer & explanation

Answer: Watering hole attack

Answer

Watering hole attack
The correct answer is a watering hole attack. In a watering hole scenario, attackers identify sites frequently visited by members of a targeted group or enterprise, compromise one or more of those websites, and set up exploits to infect visitors connecting from the target organization's network.

Step-by-Step Solution

1
Analyze the attack mechanism described in the incident scenario.
The adversary targeted a trusted, third-party website frequently visited by employees of a targeted organization rather than interacting directly with victims.
Identifying the medium and interaction method isolates the social engineering attack category.
2
Evaluate the targeting and filtering behavior.
The web server code was modified to execute malicious payloads specifically against visitors coming from the victim firm's IP address range.
Strategic targeting of specific enterprise IP ranges via a compromised shared resource is the hallmark of a watering hole tactic.
3
Map the observed technique to standard social engineering definitions.
Compromising a site where targets naturally aggregate to deliver tailored exploits defines a watering hole attack.
Differentiates this passive web compromise vector from active communication vectors like spear phishing or pretexting.

Key Concept

Watering Hole Attack Identification and Indicators
Estimated Time:2m 0s
Question 313Question

During an application security assessment of an enterprise document ingestion pipeline, an analyst reviews crash logs and source code snippets from a C/C++ processing engine that parses uploaded XML metadata and binary graphics. The analysis reveals two distinct flaws:

1. Submitting a specially crafted payload containing `<!ENTITY xxe SYSTEM "file:///etc/passwd">` causes the engine to return confidential system files in the API response.
2. Submitting an image file with an inflated metadata length field causes the application to write incoming payload bytes past the allocated dynamic memory buffer, leading to process memory corruption and instability.

Which of the following software vulnerabilities are present in this ingestion pipeline? (Select TWO).

Select all that apply

Show answer & explanation

Answer: XML External Entity (XXE) injection caused by parsing untrusted XML input with enabled external entity resolution; Heap-based buffer overflow resulting from unchecked memory writes beyond allocated buffer boundaries during metadata parsing

Answer

The application suffers from an XML External Entity (XXE) vulnerability due to improper XML parser entity resolution, and a heap-based buffer overflow due to missing boundary checks during dynamic memory writing.
The first issue stems from an improperly configured XML parser that processes external entity declarations (`<!ENTITY ... SYSTEM ...>`), leading directly to XML External Entity (XXE) injection and unauthorized local file disclosure. The second issue occurs because the application fails to validate the size of incoming binary data against allocated dynamic memory, causing a heap-based buffer overflow when parsing image metadata.

Step-by-Step Solution

1
Analyze the first payload vulnerability scenario involving XML parsing.
The payload uses `<!ENTITY xxe SYSTEM ...>` to request local files from the operating system, which is the classic indicator of an XML External Entity (XXE) injection flaw.
XML parsers that do not disable external entity references (DTD processing) allow attackers to exfiltrate files or perform Server-Side Request Forgery.
2
Analyze the second code execution/crash scenario involving memory parsing.
Writing data past the end of a dynamically allocated memory structure based on an untrusted header length field indicates a heap-based buffer overflow.
Without strict bounds checking on dynamic memory operations in C/C++, arbitrary payload bytes overflow memory boundaries, leading to corruption or code execution.
3
Synthesize the findings to select the correct set of vulnerabilities.
XML External Entity (XXE) injection and heap-based buffer overflow are the two confirmed vulnerabilities present in the scenario.
Both findings directly align with input validation and memory safety flaws in software applications.

Key Concept

Application and Software Vulnerabilities (XXE and Buffer Overflows)
Question 314Question

A security administrator is reviewing findings from a static application security testing (SAST) tool scan on an enterprise web portal. The scan identified several software flaws caused by improper handling of user input. Which of the following software security practices directly mitigate input validation and injection vulnerabilities such as Cross-Site Scripting (XSS) and SQL Injection (SQLi)? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Implementing contextual output encoding before rendering user input in web pages; Utilizing parameterized queries for all back-end database operations

Answer

The effective mitigations for input validation and injection flaws are implementing contextual output encoding and utilizing parameterized queries.
Contextual output encoding converts potentially harmful characters (such as HTML tag delimiters) into safe display representations before rendering in the browser, directly mitigating Cross-Site Scripting (XSS). Parameterized queries force the database interpreter to handle user input strictly as data values separate from the SQL query syntax, directly preventing SQL Injection (SQLi).

Step-by-Step Solution

1
Analyze the vulnerability types identified in the scenario
The target vulnerabilities are Cross-Site Scripting (XSS) and SQL Injection (SQLi), both of which arise from improper handling of user-supplied input.
Identifying the root cause ensures appropriate application-level security controls are selected.
2
Evaluate application-layer mitigation mechanisms
Contextual output encoding prevents browser execution of malicious scripts (mitigating XSS), while parameterized queries (prepared statements) ensure database engines treat input strictly as data parameters rather than executable SQL commands (mitigating SQLi).
These controls target input sanitization and command separation directly within application code.
3
Exclude ineffective network and authentication controls
Layer 3 firewalls and multi-factor authentication address network traffic routing and identity verification respectively, neither of which alters how application code processes input payloads.
Distinguish between infrastructure/access management controls and software development defenses.

Key Concept

Application Input Sanitization and Parameterization Mitigations
Estimated Time:1m 0s
Question 315Question

An employee working in a public conference hall receives several unsolicited contact cards and pop-up text messages on their smartphone via Bluetooth. A subsequent investigation by an IT technician confirms that no files, credentials, or personal data were stolen or accessed from the device. Which of the following wireless attack indicators is described in this scenario?

Show answer & explanation

Answer: Bluejacking

Answer

Bluejacking
Bluejacking is the practice of sending unsolicited messages or contact cards (vCards) to Bluetooth-enabled devices within close proximity. Because no sensitive information or files were exfiltrated from the victim's device, the activity is classified specifically as Bluejacking.

Step-by-Step Solution

1
Identify the attack medium and symptoms
Unsolicited messages and contact cards were pushed directly to a mobile device over a Bluetooth connection.
Analyzing the medium narrows the candidate attacks to Bluetooth short-range wireless exploits.
2
Evaluate data impact to differentiate specific attack indicators
The investigation verified that zero data was accessed, stolen, or modified.
Bluejacking is limited to sending unsolicited messages (spam), whereas Bluesnarfing involves active data theft.

Key Concept

Bluetooth Wireless Attacks (Bluejacking vs. Bluesnarfing)
Question 316Question

A cybersecurity team at an automated pharmaceutical manufacturing plant is investigating a covert intrusion into their industrial control systems. The adversary maintained persistent access for eight months without detection, utilized proprietary zero-day exploits against specialized programmable logic controller (PLC) firmware, and subtly modified drug formulation parameters rather than attempting extortion or causing immediate system outages. Which TWO of the following threat actor attributes and attack vector characteristics are demonstrated in this scenario?

Select all that apply

Show answer & explanation

Answer: The adversary demonstrates high technical sophistication and funding levels characteristic of a nation-state threat actor.; The attack path involved targeted zero-day vulnerability exploitation across specialized operational technology vectors.

Answer

The threat actor demonstrates high technical sophistication and financial backing typical of a nation-state actor, and the attack path leveraged zero-day vulnerabilities in specialized operational technology.
The scenario highlights an adversary with significant resourcing, technical capability, and patient strategic goals—key markers of nation-state actors. Furthermore, leveraging zero-day vulnerabilities against specialized industrial machinery represents a dedicated operational technology vector designed for targeted impact.

Step-by-Step Solution

1
Analyze threat actor attributes from the scenario observables
Eight months of persistent stealth, zero-day exploit development, and non-financial sabotage indicate advanced persistent threat (APT) capabilities standard in nation-state entities.
Threat actors are categorized by their sophistication, resources, and intent. High persistence and zero-day usage signify high resourcing.
2
Evaluate the attack vector and payload delivery characteristics
Targeting specific PLC firmware via zero-day vulnerabilities represents a highly focused operational technology attack vector.
Attack vectors differ by target surface; specialized embedded controllers require targeted research and exploitation paths.

Key Concept

Threat Actor Attributes and Attack Vectors
Estimated Time:2m 0s
Question 317Question

A security analyst reviews host logs and process telemetry from an endpoint suspected of infection. The analyst notices unauthorized background screen captures being saved to a hidden directory and outbound HTTP POST requests transmitting encrypted archives to an unrated external IP address on port 443. Which of the following malware classifications and primary capabilities are indicated by these observed technical artifacts? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Spyware functioning to monitor user activity and gather sensitive data without authorization; Command and control exfiltration mechanisms delivering captured data to remote attacker infrastructure

Answer

The observed indicators demonstrate spyware capabilities monitoring endpoint activity (capturing screen state) alongside command and control data exfiltration mechanisms transferring collected archives outbound over HTTP POST.
The combination of covert background screen captures and outbound encrypted POST traffic aligns directly with spyware monitoring behavior combined with command and control data exfiltration capabilities.

Step-by-Step Solution

1
Analyze host activity and process behaviors
Identified unauthorized screen captures saved locally, indicative of spyware monitoring.
Spyware stealthily captures screen state, keystrokes, or personal credentials without user consent.
2
Analyze network telemetry and exfiltration channels
Identified encrypted outbound HTTP POST requests to an external IP address.
Exfiltrating staged local files over encrypted web protocols to unknown IP addresses indicates active command and control communications.

Key Concept

Spyware telemetry and command and control exfiltration indicators of compromise
Question 318Question

A security analyst inspects a vulnerability scan report for an internal legacy application host. The report displays the following output:

Host: 10.12.8.44
Service: SMBv1 (Port 445/TCP)
Finding: Legacy file-sharing protocol active; vulnerable to remote code execution (MS17-010) and anonymous NULL session enumeration.
Risk Level: Critical

Which of the following actions represents the MOST effective host mitigation strategy to address this specific vulnerability?

Show answer & explanation

Answer: Disable the legacy SMBv1 feature on the host operating system and require SMB signing for connection sessions.

Answer

Disabling the legacy SMBv1 feature on the host operating system and requiring SMB signing for connection sessions.
The most effective remediation is disabling the insecure, deprecated SMBv1 protocol directly on the host operating system and enforcing SMB signing. This removes the attack surface associated with legacy file-sharing vulnerabilities (such as MS17-010/EternalBlue) and prevents unauthorized NULL session enumeration.

Step-by-Step Solution

1
Analyze the vulnerability report finding
Identified SMBv1 on TCP port 445 as a host protocol vulnerability susceptible to remote execution and NULL session enumeration.
Understanding the precise root cause host vulnerability dictates the appropriate remediation measure.
2
Evaluate mitigation controls for host vulnerabilities
Directly disabling outdated SMBv1 services and requiring secure SMB signing eliminates the flaw at the endpoint host.
Host hardening requiring removal of legacy protocols provides defense-in-depth and prevents lateral movement within internal network segments.

Key Concept

Host and Infrastructure Hardening - Disabling Legacy Protocols
Estimated Time:1m 30s
Question 319Question

A security analyst is investigating network monitoring alerts in a enterprise corporate office. Wireless packet captures and syslog entries show that client laptops are receiving spoofed 802.11 Deauthentication frames originating from a legitimate Access Point's BSSID. Immediately following disassociation, affected clients connect to a rogue access point broadcasting the corporate ESSID and prompting users for authentication via an insecure EAP-GTC protocol with an untrusted RADIUS server certificate. Which of the following statements correctly identify the attack mechanism and the most effective combination of technical controls to mitigate this threat? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: The observed activity indicates an Evil Twin attack leveraging management frame spoofing to perform credential harvesting via authentication downgrade.; Enforcing IEEE 802.11w Protected Management Frames (PMF) on access points and configuring client 802.1X supplicants to strictly validate server certificates will mitigate the attack.

Answer

The incident represents an Evil Twin attack combined with wireless deauthentication spoofing. The required mitigations are enforcing 802.11w Protected Management Frames (PMF) to encrypt management frames and configuring strict RADIUS server certificate validation on client supplicants.
The scenario describes a classic Evil Twin deployment facilitated by a wireless deauthentication attack. Attackers send spoofed 802.11 disassociation/deauthentication management frames using the real access point's BSSID to disconnect target clients. Once disconnected, client devices automatically reconnect to the strongest signal for their configured ESSID, attaching to the attacker's rogue access point. The rogue AP attempts to harvest credentials via EAP-GTC downgrade and a self-signed RADIUS certificate. To counter this, organizations must deploy IEEE 802.11w Protected Management Frames (PMF) to cryptographically authenticate management frames (preventing spoofed deauth packets) and enforce strict server certificate validation in the client 802.1X supplicant configuration so devices refuse connection to unverified RADIUS servers.

Step-by-Step Solution

1
Analyze the observed attack indicators in the packet capture.
Unauthenticated 802.11 Deauthentication frames coupled with a rogue AP broadcasting the legitimate ESSID and offering EAP-GTC with an untrusted certificate point to an Evil Twin credential harvesting attack.
Deauthentication frames disconnect clients from the legitimate AP, while the rogue AP (Evil Twin) tricks client supplicants into connecting and offering credentials over a downgraded protocol.
2
Evaluate technical controls at Layer 2 (802.11 wireless) and Layer 7 / Authentication.
IEEE 802.11w (PMF) encrypts and authenticates 802.11 management frames (preventing spoofed deauth packets), and enforcing certificate pinning/validation prevents clients from trusting the rogue RADIUS server.
Combining PMF and mandatory RADIUS certificate validation mitigates both the disassociation vector and the rogue AP association vector.

Key Concept

Wireless Attack Indicators (Evil Twin, Deauthentication) and Mitigations (802.11w PMF, RADIUS Certificate Validation)
Estimated Time:2m 0s
Question 320Question

A security analyst is reviewing an audit report detailing cryptographic vulnerabilities identified across an enterprise network. Match each observed security incident or technical finding on the left with its underlying cryptographic weakness on the right.

Click a left item, then click its matching right item

Items

An attacker retroactively decrypts historical TLS traffic captured from a web server after stealing its long-term private key.
A database review reveals that identical credit card numbers produce identical ciphertext entries across multiple records.
An attacker recovers plaintext communications from a legacy wireless system by collecting packets transmitted with repeated nonces.
A security audit uncovers an application using a fixed 56-bit symmetric cipher key compiled directly into client software binaries.

Matches

Show answer & explanation

Answer

1. Retroactive decryption of captured traffic maps to Absence of Perfect Forward Secrecy (PFS). 2. Identical ciphertext for identical database inputs maps to Electronic Codebook (ECB) mode. 3. Plaintext recovery from repeated nonces maps to Keystream reuse from static IVs. 4. Compiled 56-bit symmetric key maps to Inadequate key length.
Each security finding correctly pairs with its fundamental cryptographic flaw: compromise of past TLS sessions due to lack of PFS; deterministic identical ciphertexts due to ECB block mode; keystream exposure due to static IV reuse; and weak key entropy due to an obsolete 56-bit key length.

Step-by-Step Solution

1
Analyze the first scenario involving compromise of a private key leading to retroactive session decryption.
Identify that static RSA key exchange allows past traffic to be decrypted if the private key is exposed.
Perfect Forward Secrecy ensures ephemeral session keys are destroyed and cannot be derived from long-term private keys.
2
Analyze the second scenario involving pattern preservation in encrypted database entries.
Identify that deterministic block-by-block encryption without initialization vectors exhibits ECB mode behavior.
ECB mode maps identical plaintext blocks directly to identical ciphertext blocks.
3
Analyze the third scenario involving plaintext recovery via repeated nonces.
Recognize that static IV usage in stream ciphers leads to keystream reuse.
When the same keystream encrypts multiple plaintexts, XORing two ciphertexts cancels out the keystream.
4
Analyze the fourth scenario involving a hardcoded 56-bit symmetric key.
Determine that a 56-bit key size is cryptographically weak due to low key space size.
Modern computing hardware can brute-force a 56-bit key space in hours or minutes.

Key Concept

Cryptographic and Security Control Weaknesses
PreviousPage 16 / 25Next