Threats, Vulnerabilities, and Mitigations

490 questions

Question 61Question

A security analyst is inspecting a critical legacy host after an automated vulnerability assessment flagged multiple high-severity findings. The scanner provided the following port audit report and service banner details:

PORT STATE SERVICE VERSION / NOTES
21/tcp OPEN ftp vsftpd 2.3.4 (CVE-2011-2523 confirmed exploitable)
23/tcp OPEN telnet Linux telnetd (Plaintext authentication enabled)
80/tcp OPEN http Apache httpd 2.2.15 ((CentOS) OS end-of-life)
443/tcp CLOSED https No TLS listener configured

Which of the following identifies the primary host and architecture root cause vulnerability exposing this server to immediate remote privilege escalation and credential compromise?

Show answer & explanation

Answer: Execution of end-of-life host software containing known backdoor vulnerabilities combined with active unencrypted cleartext management protocols.

Answer

Execution of end-of-life host software containing known backdoor vulnerabilities combined with active unencrypted cleartext management protocols.
The correct option accurately pinpointed the root cause of the host vulnerability: running an end-of-life service version (vsftpd 2.3.4) containing a known remote backdoor exploit alongside unencrypted legacy protocols (Telnet) that expose authentication credentials in cleartext.

Step-by-Step Solution

1
Analyze the vulnerability scan log for specific service flags and CVEs.
Identified vsftpd 2.3.4 (CVE-2011-2523, a known malicious backdoor execution flaw), Telnet (unencrypted protocol), and Apache 2.2.15 (outdated/EOL web service).
Vulnerability assessment logs highlight active vulnerable services and insecure protocol implementations.
2
Evaluate the risk posed by host configuration flaws versus network control dependencies.
The host exposes remote code execution risks via unpatched host software and eavesdropping risks via cleartext transport.
Host security relies primarily on patching applications and removing legacy unencrypted daemons.
3
Determine the root cause underlying the vulnerability state.
The core issue is running unsupported/vulnerable host binaries and legacy cleartext management services.
Addressing host vulnerabilities requires remediating the unpatched/insecure host services directly.

Key Concept

Host and Infrastructure Vulnerabilities (Legacy Software & Cleartext Protocols)
Question 62Question

A security team is selecting security testing methods and assessment techniques for different operational scenarios. Match each security assessment method on the left with its corresponding operational description on the right.

Click a left item, then click its matching right item

Items

Active Vulnerability Scanning
Passive Vulnerability Scanning
Grey-Box Penetration Testing
Dynamic Application Security Testing (DAST)

Matches

Show answer & explanation

Answer

Active Vulnerability Scanning matches with sending crafted packets directly to target hosts; Passive Vulnerability Scanning matches with analyzing network traffic signatures in real time; Grey-Box Penetration Testing matches with simulating an attack using partial internal knowledge; Dynamic Application Security Testing (DAST) matches with evaluating running web applications externally without access to source code.
Each assessment method correctly aligns with its execution context: Active scanning sends direct probes to discover vulnerabilities; Passive scanning non-intrusively monitors traffic; Grey-box testing utilizes partial system information; and DAST evaluates live applications dynamically without access to underlying source code.

Step-by-Step Solution

1
Identify active network testing mechanisms.
Active vulnerability scanning relies on sending probes directly to targets to query system state.
Direct host probing allows detection of specific service versions and missing patches.
2
Identify non-intrusive traffic monitoring techniques.
Passive scanning observes network traffic without injecting probes.
Monitoring packets preserves bandwidth and avoids disruption to sensitive hosts.
3
Differentiate penetration testing knowledge scopes.
Grey-box testing provides limited internal information like credentials or diagrams.
Partial visibility simulates an insider or compromised user threat scenario.
4
Classify application security testing frameworks.
DAST tests operating applications from the outside during execution.
Runtime analysis evaluates application responses without requiring source code.

Key Concept

Vulnerability Assessment and Security Testing Methods
Question 63Question

During a comprehensive security audit for a healthcare enterprise, a security analyst identifies several distinct threat profiles and attack vectors. Match each threat actor type or vector on the left with its defining operational attribute or scenario on the right.

Click a left item, then click its matching right item

Items

Shadow IT Deployment
Hacktivist Collective
Advanced Persistent Threat (APT)
Disgruntled Employee (Intentional Insider)

Matches

Show answer & explanation

Answer

Shadow IT Deployment matches introducing unvetted SaaS tools without IT authorization. Hacktivist Collective matches coordinating website defacements and DDoS attacks driven by political causes. Advanced Persistent Threat (APT) matches executing long-term cyber espionage using zero-day exploits and state resources. Disgruntled Employee matches exfiltrating research using legitimate administrative privileges prior to resignation.
Shadow IT is characterized by unauthorized technology adoption (unvetted SaaS). Hacktivists are driven by social or political motives through disruptive acts (defacement/DDoS). APTs possess nation-state backing and high technical sophistication for persistent espionage. Disgruntled employees abuse authorized access for malicious exfiltration prior to departure.

Step-by-Step Solution

1
Analyze the core motivation, resource capability, and authorization level of each threat actor and vector.
Shadow IT is defined by unvetted internal tool adoption; Hacktivism by political disruption; APT by state-backed sophisticated espionage; Insider by privilege abuse due to grievance.
Accurately categorizing threat actors requires distinguishing between intent, capability, funding, and operational methods.
2
Pair each threat actor or vector with its corresponding operational description.
Shadow IT maps to unvetted SaaS usage; Hacktivists map to political DDoS/defacement; APT maps to state-funded zero-day espionage; Disgruntled Employee maps to privilege abuse prior to resignation.
Each scenario aligns with a unique combination of threat attributes specified in security standards.

Key Concept

Threat Actor Types, Attributes, and Attack Vectors
Question 64Question

An enterprise security operations team investigates anomalous traffic patterns within a corporate dual-stack subnetwork. Network monitoring alerts indicate that multiple workstations have dynamically updated their default gateway settings to route external traffic through an unapproved link-local address. Packet captures reveal continuous, unsolicited ICMPv6 Type 134 messages being broadcast across the segment with a high router preference flag enabled. Which of the following attack types is indicated by these findings?

Show answer & explanation

Answer: Rogue IPv6 Router Advertisement (RA) attack

Answer

Rogue IPv6 Router Advertisement (RA) attack
The scenario describes unsolicited ICMPv6 Type 134 messages (Router Advertisements) with high preference flags, which alter host routing tables on dual-stack subnetworks to direct traffic to an attacker's rogue gateway. This is the classic signature of a Rogue IPv6 Router Advertisement attack.

Step-by-Step Solution

1
Analyze protocol indicators in the packet capture.
Identified ICMPv6 Type 134 messages, which correspond specifically to IPv6 Router Advertisement (RA) packets used in Neighbor Discovery Protocol (NDP).
Router Advertisements inform local network hosts of default gateway IP addresses and subnetwork prefixes.
2
Evaluate the behavior and impact described in the scenario.
Unsolicited high-preference ICMPv6 Type 134 broadcasts forced dual-stack endpoints to reconfigure their default IPv6 routing table towards an unauthorized link-local address.
This behavior indicates an attacker deploying a rogue IPv6 router to perform an on-path traffic interception attack.
3
Differentiate from alternative network attacks.
Confirmed that IPv4 ARP poisoning, DNS amplification, and 802.1Q VLAN hopping operate on distinct mechanisms and protocols.
Only a Rogue IPv6 Router Advertisement attack produces ICMPv6 Type 134 flooding and spontaneous gateway reconfiguration on IPv6 endpoints.

Key Concept

IPv6 Neighbor Discovery Protocol (NDP) Vulnerabilities and Rogue Router Advertisements
Question 65Question

A security team is reviewing a web microservice that accepts user-supplied remote image URLs to generate user avatar previews. During testing, an analyst discovers that submitting a URL directed to `http://169.254.169.254/latest/meta-data/` allows the server to fetch and return sensitive cloud instance credentials to the client.

Which of the following mitigation controls should the development team implement to remediate this application vulnerability? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Restrict the application server from initiating outbound network connections to internal IP address ranges and cloud metadata endpoints; Implement strict input validation using an allowlist of approved URL schemes and external domain destinations

Answer

The correct remediation controls are restricting the application server from initiating outbound network connections to internal IP addresses and cloud metadata endpoints, and implementing strict input validation using an allowlist of approved URL schemes and external domains.
The scenario describes a Server-Side Request Forgery (SSRF) vulnerability where an attacker manipulates the server into fetching cloud metadata (`169.254.169.254`). Remediating SSRF requires preventing the server from connecting to internal endpoints by restricting outbound network connections to private IP spaces and validating user-supplied URLs against an explicit allowlist of domain names and protocols.

Step-by-Step Solution

1
Identify the underlying application vulnerability from the observed scenario.
The application suffers from Server-Side Request Forgery (SSRF), where an attacker forces the server to make unauthorized requests to internal endpoints like cloud metadata services.
Understanding the attack vector (server fetching backend resources on behalf of untrusted input) dictates the proper defense.
2
Evaluate network-level and egress filtering controls for SSRF mitigation.
Restricting outbound traffic to internal IP ranges (127.0.0.1, 169.254.169.254, RFC 1918) blocks the server from reaching sensitive internal services even if a URL is submitted.
Egress filtering limits the blast radius of SSRF by denying network access to private management APIs.
3
Evaluate application-level input validation controls.
Enforcing an allowlist of accepted schemes (HTTPS) and approved external domains prevents user inputs from referencing local or metadata addresses.
Allowlisting validates input targets before the application attempts to initiate HTTP GET requests.

Key Concept

Server-Side Request Forgery (SSRF) Remediation
Question 66Question

A threat intelligence analyst at a commercial bank needs to obtain timely, industry-specific operational intelligence regarding emerging tactics, techniques, and procedures (TTPs) targeting core payment processing gateways. The security leadership wants to exchange attack indicators and vetted threat data directly with peer financial institutions in a trusted environment. Which of the following threat intelligence sources is most appropriate for this objective?

Show answer & explanation

Answer: Information Sharing and Analysis Center (ISAC)

Answer

An Information Sharing and Analysis Center (ISAC) is the correct source because it enables trusted, sector-specific threat intelligence sharing and collaboration among peer organizations within an industry.
An Information Sharing and Analysis Center (ISAC) is a non-profit organization that facilitates the gathering and sharing of cyber threat intelligence among peer members within specific critical infrastructure sectors (such as Financial Services, Healthcare, or Aviation). Participating in an ISAC allows organizations to receive vetted, timely, sector-specific threat indicators and collaborate on joint defense strategies.

Step-by-Step Solution

1
Analyze the organizational requirement described in the scenario.
The scenario requires industry-specific threat intelligence and peer-to-peer indicator sharing within a trusted community (financial sector).
Identifying the target domain and requirements guides the selection of the correct intelligence source class.
2
Evaluate potential intelligence source classifications against the requirement.
Information Sharing and Analysis Centers (ISACs) are specifically designed for sector-focused threat sharing, whereas vulnerability databases and OSINT offer general or non-peer data.
Matching industry-specific sharing goals with ISAC capabilities satisfies all constraints of the scenario.

Key Concept

Information Sharing and Analysis Centers (ISACs) and Sector-Specific Threat Intelligence
Question 67Question

An enterprise security operations center (SOC) detects that several remote staff members were redirected to a fraudulent Single Sign-On (SSO) credential-harvesting page after scanning a Quick Response (QR) code on physical flyers posted in a corporate office building. The flyers purported to contain a link to a mandatory employee workplace survey. Which social engineering attack vector best describes this technique?

Show answer & explanation

Answer: Quishing

Answer

Quishing (QR code phishing) is the social engineering vector that uses malicious QR codes to redirect victims to credential-harvesting or malicious websites.
The correct answer is quishing because the scenario describes an attack that uses Quick Response (QR) codes embedded on physical media to direct victims to a credential-harvesting webpage.

Step-by-Step Solution

1
Analyze the primary delivery medium in the security incident.
The attack relies on physical flyers featuring printed Quick Response (QR) codes.
Identifying the transmission vector (QR codes) is critical to categorizing the specific social engineering variant.
2
Evaluate the underlying objective of the attack mechanism.
Scanning the QR code redirects victims to a fake Single Sign-On portal to capture credentials.
This behavior combines traditional web-based credential harvesting with a mobile optical scan vector.
3
Match the observed indicators to formal security terminology.
Phishing conducted specifically through QR codes is defined as quishing.
Quishing accurately describes social engineering campaigns utilizing QR codes as the redirection vector.

Key Concept

Social Engineering Attack Vectors - Quishing
Question 68Question

A security analyst is evaluating code remediation requirements following an assessment of an enterprise web portal. The evaluation identified two primary software flaws: database queries constructed by concatenating unsanitized user inputs, and user-submitted data reflected directly into rendered HTML responses without escaping. Which of the following mitigation strategies must developers implement to address these specific application vulnerabilities? (Select TWO).

Select all that apply

Show answer & explanation

Answer: Implement parameterized queries (prepared statements) for all database interactions; Apply context-aware output encoding on user data rendered in web pages

Answer

Developers must implement parameterized queries (prepared statements) for database interactions and apply context-aware output encoding on rendered web page data.
The correct mitigations directly address the root causes of the vulnerabilities: parameterized queries (prepared statements) prevent SQL injection by treating input strictly as data parameters, while context-aware output encoding neutralizes Cross-Site Scripting (XSS) by rendering client-side scripts as plain text rather than executable browser code.

Step-by-Step Solution

1
Identify the specific software vulnerability types described in the scenario
Dynamic database string concatenation corresponds to SQL Injection (SQLi), while unescaped user input reflected in HTML corresponds to Reflected Cross-Site Scripting (XSS).
Accurate vulnerability identification is required to select effective code-level mitigations.
2
Determine the appropriate software remediation for SQL Injection
Using parameterized queries (prepared statements) binds user inputs as strongly-typed data values rather than executable code statements.
Prepared statements ensure the database engine compiles the query structure prior to inserting user parameters.
3
Determine the appropriate software remediation for Reflected XSS
Applying context-aware output encoding translates special characters (such as angle brackets and quotes) into harmless HTML entity equivalents prior to rendering.
Output encoding prevents the browser from interpreting user strings as inline executable scripts.

Key Concept

Application Input Validation and Output Sanitization Controls
Estimated Time:1m 30s
Question 69Question

A security analyst evaluates an enterprise environment where legacy monitoring agents running on internal host servers transmit host telemetry data using unencrypted broadcast traffic across a flat management subnet. Additionally, internal host-to-host administrative communication is automatically permitted based strictly on subnetwork IP address origin without requiring continuous session verification or microsegmentation.

Which of the following vulnerabilities are present in this architectural deployment? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Implicit trust reliance on network perimeter boundaries rather than zero trust verification; Use of cleartext transmission protocols for host telemetry and network communication

Answer

The correct vulnerabilities are implicit trust reliance on network perimeter boundaries rather than zero trust verification, and the use of cleartext transmission protocols for host telemetry and network communication.
The scenario highlights two distinct architectural vulnerabilities: transmitting telemetry over unencrypted broadcast channels represents a cleartext protocol exposure, while permitting host communication based solely on subnet origin demonstrates implicit perimeter trust instead of Zero Trust continuous verification.

Step-by-Step Solution

1
Analyze the network transmission security described in the scenario.
Identified that legacy monitoring agents broadcast telemetry data in an unencrypted state.
Unencrypted broadcast traffic permits eavesdropping and packet sniffing, indicating a cleartext protocol vulnerability.
2
Analyze the access control and architectural design.
Identified that host-to-host connections are trusted based purely on subnet IP origin without continuous authentication.
Relying on network placement for access privileges constitutes implicit perimeter trust, violating microsegmentation and Zero Trust tenets.
3
Select the matching vulnerabilities corresponding to these findings.
Matched cleartext telemetry to cleartext transmission protocol vulnerability, and matched IP origin trust to implicit perimeter reliance.
These two findings directly map to host and network architecture weaknesses.

Key Concept

Host, Network, and Architecture Vulnerabilities (Perimeter Trust vs. Zero Trust & Cleartext Protocols)
Question 70Question

A telecommunications enterprise security team detects covert data staging on an internal jump host. The activity was conducted during off-peak hours using valid domain administrative credentials, bypassing perimeter firewalls without triggering external traffic alerts. The entity utilized native system administration tools to clear system logs and pivot into restricted intellectual property repositories. Which TWO of the following threat actor attributes or capabilities are most characteristic of this adversary profile? (Select TWO)

Select all that apply

Show answer & explanation

Answer: Pre-existing legitimate authentication credentials and system access permissions; Intimate familiarity with internal organizational workflows, auditing mechanisms, and security controls

Answer

The threat actor profile is characterized by pre-existing legitimate authentication credentials and intimate familiarity with internal organizational workflows and security controls.
The scenario describes an adversary operating from within the network perimeter using valid domain administrator credentials and living-off-the-land techniques (native administration scripts and log suppression). These actions directly reflect an insider threat profile characterized by pre-existing legitimate access permissions and deep familiarity with internal security controls and auditing procedures.

Step-by-Step Solution

1
Analyze the attack indicators and operational tactics described in the scenario.
The adversary leveraged valid domain administrator accounts, operated during off-peak hours, used built-in administrative tools, cleared local audit logs, and avoided perimeter detection.
Identifying specific behavioral patterns allows analysts to differentiate between external opportunistic attackers and malicious insiders or advanced persistent threats.
2
Match the observed tactics to threat actor attributes.
Using valid internal credentials demonstrates pre-existing legitimate access, while clearing logs with internal utilities demonstrates detailed knowledge of environment defenses.
Insider threats possess innate privileges and operational familiarity that enable them to bypass standard perimeter security controls seamlessly.

Key Concept

Threat Actor Attributes: Insider Threats vs. External Attackers
Question 71Question

A security analyst conducts an internal infrastructure assessment of an enterprise application environment. The assessment reveals two critical architectural findings:

1. Web application microservices communicate with back-end database servers across an unsegmented internal subnet using standard unencrypted HTTP endpoints.
2. No host-based firewalls or network access control lists (ACLs) are configured to restrict traffic between adjacent application servers on the same subnet.

Which of the following host, network, or architecture vulnerabilities are directly present in this environment? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Transmission of sensitive internal communication over unencrypted cleartext protocols; Lack of network microsegmentation allowing unrestricted lateral movement

Answer

The environment suffers from transmission of sensitive internal communication over unencrypted cleartext protocols and a lack of network microsegmentation allowing unrestricted lateral movement.
The correct answers identify the specific architectural weaknesses in the scenario: sending data via HTTP is an unencrypted cleartext protocol flaw, and lacking host firewalls or ACLs on a flat subnet creates a microsegmentation flaw that permits lateral movement.

Step-by-Step Solution

1
Analyze finding 1 regarding unencrypted HTTP communications.
HTTP transfers data in plain text without cryptographic protection, representing a cleartext protocol vulnerability.
Internal communications transporting data over HTTP expose sensitive information to packet sniffing.
2
Analyze finding 2 regarding flat subnets without host firewalls or ACLs.
The absence of internal traffic controls or subnet boundaries constitutes an architecture vulnerability.
Without microsegmentation or host-based firewall rules, compromised hosts allow unchecked lateral movement across the internal network.

Key Concept

Host, Network, and Architecture Vulnerabilities (Cleartext Protocols & Microsegmentation)
Question 72Question

A threat hunting team analyzes workstation artifacts following reports of compromised privileged account credentials. Network telemetry and host activity reveal an unauthorized background program that captures input typed into authentication forms and periodically exfiltrates this data to an external server over port 443. The software was installed after an employee executed a third-party utility download, does not attempt to scan or self-replicate across local subnet subnets, and does not modify kernel-level system routines. Which of the following malware classifications best describes this threat?

Show answer & explanation

Answer: Spyware

Answer

Spyware (specifically keylogging functionality) is the malware classification that covertly monitors user activity, collects credentials, and exfiltrates input data.
Spyware is designed to run covertly on a device to record user activities, capture sensitive credentials or keystrokes, and exfiltrate the collected telemetry to an external command-and-control server.

Step-by-Step Solution

1
Analyze the observed malware behaviors and telemetry indicators in the scenario.
The malware captures user keystrokes/authentication input and transmits the gathered data to an external server via port 443.
Identifying the primary function (data collection and exfiltration) narrows down the malware family.
2
Evaluate the propagation mechanism and operational footprint.
The malware relies on user execution of a downloaded utility and lacks automated self-replication capabilities.
This rules out self-propagating threats like network worms.
3
Compare against malware taxonomy classifications.
Malware that covertly monitors and exfiltrates user input without altering kernel hooks or encrypting files is classified as spyware.
Spyware targets user data and activities while remaining passive to avoid detection.

Key Concept

Spyware and Keylogger Indicators of Compromise
Question 73Question

A security technician conducts an assessment of an embedded building control device connected to an enterprise network. A vulnerability scan produces the following finding:

Host: 192.168.4.12
Port: 8080/tcp (HTTP)
Finding: Embedded Web Interface Hardcoded Credentials
Risk Level: High
Description: The device firmware contains fixed administrative credentials transmitted in cleartext over HTTP. No vendor security patches are available.

The legacy device must remain operational for business operations. Which of the following architecture-level mitigations is the BEST solution to protect the enterprise from this host vulnerability?

Show answer & explanation

Answer: Place the embedded device onto an isolated management VLAN accessible only via an encrypted jump host with strict access controls.

Answer

Placing the embedded device onto an isolated management VLAN accessible only via an encrypted jump host with strict access controls is the best mitigation.
Placing unpatchable legacy embedded devices onto an isolated management VLAN and requiring access through an encrypted jump host isolates the host vulnerability, prevents cleartext exposure over general networks, and restricts access strictly to authenticated administrators.

Step-by-Step Solution

1
Analyze the vulnerability scan report and constraints.
Identified an unpatchable embedded host vulnerability involving hardcoded credentials and cleartext administrative HTTP access on port 8080.
Because the vendor offers no patches, host-level remediation is impossible, requiring network architecture mitigations.
2
Evaluate compensating security controls for unpatchable legacy systems.
Microsegmentation and out-of-band management restrict access to authorized administrators only.
Isolating legacy hosts behind strict VLAN segmentation and encrypted jump hosts reduces the attack surface and prevents unauthorized lateral access.

Key Concept

Host and Architecture Vulnerabilities Mitigation via Network Segmentation
Estimated Time:1m 30s
Question 74Question

A cybersecurity analyst needs to assess internal enterprise servers for missing software security patches and configuration flaws without sending intrusive exploit payloads or generating heavy network traffic across the subnet. Which of the following vulnerability assessment methods should the analyst perform?

Show answer & explanation

Answer: A credentialed vulnerability scan

Answer

The analyst should perform a credentialed vulnerability scan.
A credentialed vulnerability scan uses valid system credentials to authenticate directly onto host systems. This permits the scan engine to inspect internal registry keys, patch management records, and software configurations with minimal network bandwidth usage and without executing invasive attack probes.

Step-by-Step Solution

1
Analyze the operational requirements
The assessment must identify missing patches and local configuration flaws while avoiding high network overhead and intrusive probes.
Uncredentialed scans rely on network-based probes that generate high traffic and can miss internal configuration flaws.
2
Select the appropriate scanning methodology
A credentialed scan authenticates locally on the host to read configuration settings and patch status directly.
Authenticating locally minimizes network footprint and provides accurate inventory without executing intrusive exploits.

Key Concept

Credentialed Vulnerability Scanning
Estimated Time:50s
Question 75Question

A security team at a regional retail corporation is investigating a security incident involving unauthorized access to internal file servers. The attacker gained access using valid employee credentials purchased from an online broker, deployed commercially available ransomware within two hours of access, and left a ransom note demanding an immediate cryptocurrency payment. The investigation confirmed that no sensitive intellectual property was exfiltrated and no attempts were made to establish long-term persistence. Which threat actor category and attribute profile are most consistent with this attack?

Show answer & explanation

Answer: Organized crime motivated by financial gain utilizing commoditized tools

Answer

Organized crime motivated by financial gain utilizing commoditized tools
Organized crime threat actors are primarily motivated by financial profit. They frequently leverage compromised credentials purchased from access brokers and deploy off-the-shelf or ransomware-as-a-service (RaaS) toolkits to achieve fast monetization, matching all indicators in the scenario.

Step-by-Step Solution

1
Analyze the attacker's primary objective described in the scenario.
The adversary deployed ransomware and demanded a cryptocurrency ransom without exfiltrating espionage targets or maintaining persistence.
Immediate financial extortion directly aligns with the primary motivation of organized cybercrime groups.
2
Evaluate the tactics, techniques, and procedures (TTPs) and resource attributes.
The attacker used dark web brokers for credential access and deployed off-the-shelf commodity ransomware quickly.
These attributes indicate moderate sophistication and reliance on commoditized resources rather than state-funded custom exploits or insider privilege abuse.
3
Synthesize the actor profile based on motivation and capability.
The threat actor is an organized crime entity.
Matching financial motivation and commodity tool capability correctly identifies the threat actor type.

Key Concept

Threat Actor Classification and Motivation Profiling
Question 76Question

A security operations team is organizing its threat intelligence pipeline to improve context, automation, and threat response capabilities across different enterprise monitoring tools. Match each threat intelligence source type on the left to its corresponding operational characteristic or operational capability on the right.

Click a left item, then click its matching right item

Items

Information Sharing and Analysis Center (ISAC)
Commercial / Proprietary Threat Feed
Open-Source Intelligence (OSINT)
National Vulnerability Database (NVD)

Matches

Show answer & explanation

Answer

Information Sharing and Analysis Center (ISAC) matches sector-specific peer sharing; Commercial/Proprietary Feed matches curated SLA-backed data; Open-Source Intelligence (OSINT) matches freely accessible public threat insights; National Vulnerability Database (NVD) matches standardized CVE and CVSS repositories.
Each intelligence source type is matched to its primary operational framework: ISACs provide sector-specific peer sharing, Commercial feeds provide SLA-backed curated intelligence, OSINT provides freely accessible public research, and NVD provides standardized vulnerability tracking with CVE/CVSS identifiers.

Step-by-Step Solution

1
Analyze the operational role of ISACs
Identify ISACs as trusted platforms for industry-specific threat sharing (e.g., FS-ISAC for financial services).
ISACs focus on sector-specific peer intelligence sharing.
2
Distinguish between proprietary feeds and OSINT
Commercial feeds offer vendor SLAs and curated indicators, whereas OSINT is gathered from publicly accessible sources without SLAs.
Paid feeds trade cost for SLA guarantees and lower false-positive rates compared to unvetted public feeds.
3
Map vulnerability database characteristics
NVD provides public, structured vulnerability records categorized by CVEs and evaluated with CVSS metrics.
Vulnerability databases focus on flaw scoring rather than active adversary threat actor feeds.

Key Concept

Threat Intelligence Sources and Research
Question 77Question

A systems administrator observes that unauthenticated, network-based vulnerability scans are failing to detect internal software patch status and host misconfigurations due to strict host-based firewall rules blocking network probes on corporate endpoints. The administrator needs to collect detailed vulnerability data across all endpoints without altering network firewall policies or exposing administrative credentials across network subnets. Which of the following vulnerability assessment methods should the administrator implement?

Show answer & explanation

Answer: Deploy agent-based vulnerability scanning software directly onto each endpoint target.

Answer

Deploying agent-based vulnerability scanning software directly onto each endpoint target.
Deploying agent-based vulnerability scanning software places lightweight software agents directly on target hosts. The agent performs local assessment of installed packages, missing patches, and system registry configurations without requiring open inbound network ports or sending privileged credentials across the network.

Step-by-Step Solution

1
Analyze the operational constraints presented in the scenario.
Network-based scanning is blocked by host-based firewalls, and passing administrative credentials across subnets must be avoided.
Host firewalls block unauthenticated network probes, preventing standard external scanning engines from probing open ports and banner information.
2
Evaluate assessment methods against local access requirements.
Agent-based scanning runs locally on endpoints with local administrative privileges.
Local agents execute host checks directly inside the operating system, bypassing network-level filtering and eliminating the need to transmit high-privilege credentials across the network.

Key Concept

Agent-based versus network-based vulnerability scanning techniques
Question 78Question

During a routine internal audit of an enterprise infrastructure, a security analyst reviews a vulnerability scan report for an Active Directory server host. The scan highlights that a custom system service executable path is configured as C:\Program Files\Enterprise Apps\Service Manager\service.exe without quotation marks, and the directory C:\Program Files\Enterprise Apps has write permissions granted to unprivileged users. Which of the following host vulnerabilities does this specific configuration represent?

Show answer & explanation

Answer: Unquoted service path vulnerability enabling privilege escalation via executable hijacking

Answer

Unquoted service path vulnerability enabling privilege escalation via executable hijacking
The correct answer identifies an unquoted service path vulnerability. When Windows launches a service whose file path contains spaces and lacks surrounding quotation marks, the Windows Service Control Manager interprets spaces as argument delimiters. It attempts to launch executable candidates in order, such as C:\Program.exe, C:\Program Files\Enterprise.exe, etc. Because unprivileged users have write access to the directory, an attacker can drop a malicious binary at one of those locations, achieving local privilege escalation when the service executes.

Step-by-Step Solution

1
Analyze the host configuration report
Identify that the service binary path contains spaces without quotes (C:\Program Files\Enterprise Apps\Service Manager\service.exe) and weak folder write permissions.
Windows service executable paths containing spaces without surrounding quotation marks cause the Service Control Manager to evaluate candidate paths prior to each space.
2
Determine the impact of user write permissions
Unprivileged users can write files to intermediate path folders such as C:\Program Files\Enterprise Apps.
If a user writes an executable named Enterprise.exe in that directory, the operating system will execute it under the service's privileges (typically SYSTEM) upon service start.
3
Match the weakness to host vulnerability definitions
Confirm that this specific flaw is classified as an unquoted service path privilege escalation vulnerability.
It represents a classic host service configuration vulnerability where path parsing behavior allows local binary hijacking.

Key Concept

Host Service Path Hardening and Privilege Escalation Vulnerabilities
Question 79Question

An enterprise security audit reveals that workstations in a software development subnet can establish direct, unmonitored SSH and remote execution sessions to production database servers without passing through a centralized management gateway. Which of the following mitigation strategies should the security team implement FIRST to enforce strict administrative boundary isolation and prevent unauthorized lateral movement?

Show answer & explanation

Answer: Enforce microsegmentation policies requiring all administrative access to originate from designated jump servers protected by multi-factor authentication

Answer

Enforce microsegmentation policies requiring all administrative access to originate from designated jump servers protected by multi-factor authentication.
Enforcing microsegmentation along with jump servers and mandatory multi-factor authentication directly restricts network pathways and verifies identity before granting administrative access to sensitive production database servers. This preventive control establishes strict administrative boundary isolation and halts lateral movement.

Step-by-Step Solution

1
Analyze the security audit finding
Direct network access from workstation endpoints to production database subnets exposes critical infrastructure to lateral movement without centralized access control or MFA enforcement.
Identifying the network architecture vulnerability is necessary to select an appropriate preventive security control.
2
Evaluate mitigation controls for lateral movement prevention
Restricting network traffic via microsegmentation rules and funneling administrative access through secure jump servers requires explicit authorization and multi-factor authentication.
Enterprise hardening mandates limiting east-west network traffic and establishing secure management pathways.
3
Select the primary preventive mitigation strategy
Microsegmentation paired with secure jump servers directly eliminates direct endpoint-to-database connections.
Preventive access isolation effectively secures administrative boundaries across distinct enterprise network zones.

Key Concept

Enterprise Hardening and Microsegmentation
Question 80Question

A security analyst reviews device logs following reports of abnormal wireless activity on an executive's smartphone during an off-site conference. The logs indicate that the smartphone first accepted an unsolicited vCard contact file over an unauthenticated Bluetooth Object Exchange (OBEX) connection. Immediately after, an unauthorized background process queried and exfiltrated the device's internal calendar entries and contact lists over Bluetooth without requesting user pairing approval. Based on these technical indicators, which of the following wireless attacks occurred? (Select TWO).

Select all that apply

Show answer & explanation

Answer: Bluejacking, indicated by the unsolicited transmission of messages or contact cards to a Bluetooth-enabled device.; Bluesnarfing, indicated by the unauthorized access and exfiltration of sensitive information from a Bluetooth device.

Answer

The scenario demonstrates both Bluejacking (receipt of unsolicited vCard data over Bluetooth OBEX) and Bluesnarfing (unauthorized access and exfiltration of device contacts and calendar schedules).
The scenario describes two distinct Bluetooth exploits. Bluejacking is characterized by sending unsolicited messages or contact files (vCards) to a recipient device over Bluetooth. Bluesnarfing occurs when an attacker gains unauthorized access to steal private device data, such as calendars, emails, and contact lists, without user consent.

Step-by-Step Solution

1
Analyze the first observed behavior in the audit log.
The device received an unsolicited vCard contact file via Bluetooth OBEX push without prior authorization.
This behavior fits the definition of Bluejacking, where an attacker pushes unwanted text or contact cards to a target device.
2
Analyze the second observed behavior in the audit log.
An unauthorized background query accessed and retrieved internal device data (contacts and calendar items).
This behavior fits the definition of Bluesnarfing, which specifically target the unauthorized reading and theft of sensitive data stored on a Bluetooth-enabled device.
3
Distinguish from non-applicable wireless attack indicators.
Discard options related to 802.11 Wi-Fi Rogue APs (Evil Twin) or physical layer signal disruption (RF Jamming).
The indicators in the scenario explicitly concern Bluetooth OBEX protocol exploitation, not 802.11 Wi-Fi impersonation or RF signal degradation.

Key Concept

Bluetooth Wireless Attack Indicators (Bluejacking vs. Bluesnarfing)
Estimated Time:1m 30s
PreviousPage 4 / 25Next