Threats, Vulnerabilities, and Mitigations

490 soru

Soru 161Soru

A defense contractor's incident response team discovers that several senior propulsion engineers' workstations were compromised by specialized remote access trojans (RATs). Forensic analysis indicates that none of the engineers received malicious emails, text messages, or direct phone calls. Instead, the threat actors compromised a reputable, third-party industry standards forum frequently visited by propulsion engineers and modified its server code to dynamically serve malicious drive-by exploits only to visitors originating from the contractor's specific public IP range. Which social engineering attack vector was primarily utilized in this scenario?

Cevabı ve açıklamayı göster

Cevap: Watering hole attack

Cevap

Watering hole attack
The correct answer accurately identifies a watering hole attack. In this attack vector, adversaries observe or anticipate which legitimate websites a target organization or interest group frequently visits, compromise one or more of those sites, and strategically deploy malware (such as drive-by exploit scripts) configured to trigger specifically for visitors from the target organization's IP address space.

Adım Adım Çözüm

1
Analyze the delivery mechanism and interaction model of the attack
Identified that no direct communication (email, SMS, call) was initiated towards the targets.
Direct communication variants like spear phishing, whaling, vishing, or smishing require direct payload or link delivery to the victim.
2
Evaluate the compromise site and targeting method
Recognized that a legitimate third-party website frequented by the target demographic was compromised to selectively deliver payloads based on visitor IP ranges.
Targeting specific organizational profiles by poisoning a trusted gathering spot is the defining characteristic of a watering hole attack.
3
Differentiate from adjacent social engineering and web vectors
Confirmed that typosquatting relies on domain mistyping and BEC relies on direct spoofed email interaction, eliminating both.
The legitimate site itself was subverted, matching watering hole methodology exactly.

Anahtar Kavram

Watering Hole Attack
Tahmini Süre:2m 0s
Soru 162Soru

A network security engineer investigates an incident where internal users on VLAN 20 report unexpected SSL/TLS certificate warnings when accessing enterprise web resources. Analysis of packet captures and wireless sensor logs reveals anomalous network frames and suspicious radio frequency traffic around the perimeter. Which of the following technical indicators collectively confirm the simultaneous presence of an ARP poisoning on-path attack and a rogue wireless access point attempt? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Unsolicited ARP reply packets broadcasting a mapping of the default gateway IP address to an unrecognized media access control (MAC) address.; 802.11 beacon frames broadcasting the corporate Service Set Identifier (SSID) from a previously uncataloged basic service set identifier (BSSID) on an unauthorized channel with higher relative signal strength.

Cevap

The correct indicators are unsolicited ARP reply packets mapping the gateway IP to an unknown MAC address, and 802.11 beacon frames broadcasting the corporate SSID from an uncataloged BSSID on an unauthorized channel.
The combination of unsolicited ARP replies (spoofing the default gateway MAC address) and unauthorized 802.11 beacon frames (broadcasting the corporate SSID from an unknown BSSID with strong signal) explicitly confirms an active ARP poisoning attempt coupled with a rogue wireless access point deployment.

Adım Adım Çözüm

1
Analyze the network layer indicators associated with the SSL/TLS certificate warnings.
Unsolicited ARP replies linking the default gateway IP to an unknown MAC address demonstrate ARP cache poisoning, allowing an attacker to sit on-path and inspect/modify HTTPS sessions.
ARP spoofing forces target hosts to send gateway-bound packets to the attacker's network interface.
2
Evaluate the wireless spectrum indicators captured by the wireless intrusion prevention system (WIPS).
Beacon frames advertising the company's SSID from an unmanaged MAC/BSSID on a different channel reveal a rogue AP or Evil Twin rogue setup intended to mimic the enterprise network.
Rogue access points spoof trusted network identifiers to trick nearby client devices into connecting.

Anahtar Kavram

Identifying indicators of ARP cache poisoning and rogue wireless access points (Evil Twin)
Soru 163Soru

During a post-incident review following an enterprise security evaluation, a security operations team discovers that an automated vulnerability scan failed to identify a critical unpatched remote code execution vulnerability on an internal database server. Simultaneously, the scan report flagged numerous high-severity vulnerabilities on an edge API gateway that manual verification confirmed were false positives. System logs reveal that the scanner performed service banner grabbing, port identification, and basic packet probing across subnets without host-level credentials or local management agents. Which assessment methodology limitation best explains why the scanner failed to detect the internal database flaw while producing false positives on the gateway?

Cevabı ve açıklamayı göster

Cevap: The scanner performed a non-credentialed scan, which lacked authenticated access to inspect internal patch levels and misinterpreted customized service banners from the API gateway.

Cevap

The scan performed a non-credentialed assessment, which lacks the elevated local privileges required to query internal patch management databases and relies on surface service banners that easily cause false positives.
Non-credentialed vulnerability scans inspect target systems strictly from an external network perspective. Because the scanner lacks administrative access to query local system registries, software manifests, and patch management records, it cannot verify whether specific security hotfixes have been applied, resulting in a false negative for the database vulnerability. Additionally, non-credentialed scanners rely heavily on service banner grabbing; when an edge device such as an API gateway presents modified or generic service headers, the scanner misinterprets the response and reports false positives.

Adım Adım Çözüm

1
Analyze the operational parameters of the vulnerability scan.
The scan was executed without host-level credentials or local management agents, relying solely on network-level probing, port scanning, and banner grabbing.
Understanding the visibility level of the scanner is critical for evaluating its accuracy and detection capabilities.
2
Evaluate the cause of the false negative on the internal database server.
Unpatched remote code execution flaws often reside in deep system software libraries or local configuration files that cannot be queried over the network without authenticated administrative access.
Non-credentialed scans cannot inspect installed updates or internal registry settings, leading to missed vulnerabilities.
3
Evaluate the cause of the false positives on the edge API gateway.
Service banner grabbing relies on strings returned by listening ports. API gateways often mangle, obfuscate, or proxy these headers, leading the scanner to falsely match known vulnerability signatures against incorrect software versions.
Surface-level banner matching without credentialed verification frequently produces false positives when middleboxes or custom proxies alter service headers.

Anahtar Kavram

Credentialed vs. Non-Credentialed Vulnerability Assessment Methodologies
Soru 164Soru

A security analyst reviews a active network service list and vulnerability report for an internal host managing legacy industrial control equipment:

tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN 1042/ftpd
tcp 0 0 0.0.0.0:23 0.0.0.0:* LISTEN 1108/telnetd

The report confirms that administrative management sessions and file uploads to this server transmit credentials in plaintext without restricted network access control lists (ACLs). Which TWO of the following architectural weaknesses or vulnerabilities are directly demonstrated in this scenario? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Transmission of sensitive administrative traffic over unencrypted legacy management protocols; Over-reliance on perimeter boundary security allowing unverified internal network traffic to reach open management services

Cevap

The correct options identify the transmission of administrative traffic over unencrypted legacy management protocols and the over-reliance on perimeter boundary security allowing unverified internal network traffic to reach open management services.
The scenario highlights two distinct architectural vulnerabilities: using unencrypted legacy protocols (Telnet and FTP) that expose credentials, and operating a flat network model where internal management services are exposed to all internal endpoints without access controls.

Adım Adım Çözüm

1
Analyze the service output and vulnerability report findings
The host is listening on TCP ports 21 (FTP) and 23 (Telnet), both of which are unencrypted legacy protocols.
Telnet and FTP pass administrative credentials and commands in cleartext, making them vulnerable to network interception.
2
Evaluate the architectural network context
The services are exposed to the broader internal network without access restrictions or microsegmentation.
Relying on boundary firewalls without restricting internal access assumes the internal network is trusted, violating Zero Trust principles.

Anahtar Kavram

Host and Network Architecture Vulnerabilities
Soru 165Soru

A logistics firm is updating its threat intelligence matrix to help security staff recognize different adversary profiles. The team needs to document the primary characteristics associated specifically with nation-state threat actors (Advanced Persistent Threats). Which TWO of the following attributes best describe nation-state threat actors?

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

Cevabı ve açıklamayı göster

Cevap: Extensive financial backing and resources provided by a national government; High technical sophistication, including the deployment of custom zero-day exploits and persistent stealth mechanisms

Cevap

The primary attributes of nation-state threat actors are extensive financial backing provided by a national government and high technical sophistication utilizing custom zero-day exploits and persistent stealth techniques.
Nation-state threat actors (often referred to as Advanced Persistent Threats or APTs) are distinguished by extensive financial backing from government bodies and high technical sophistication. These capabilities enable them to develop or acquire zero-day exploits, maintain stealthy persistence over long durations, and target high-value strategic assets.

Adım Adım Çözüm

1
Analyze threat actor classifications and their core attributes.
Identified nation-state actors as highly organized external entities supported by state governments.
Understanding adversary capabilities helps categorize potential risk and defense priorities.
2
Evaluate the options for attributes unique to nation-state threat actors.
Government funding/resources and high technical sophistication with zero-day capabilities match nation-state profiles.
Nation-states possess resources and patience unmatched by typical cybercriminals or hacktivists.
3
Differentiate wrong choices based on threat actor taxonomy.
Ideological publicity drives hacktivists, while reliance on authorized job credentials describes insider threats.
Correctly attributing tactics prevents misclassification of threat profiles.

Anahtar Kavram

Nation-State Threat Actor Attributes and Capabilities
Soru 166Soru

A senior Security Operations Center (SOC) analyst is designing an automated threat intelligence sharing pipeline between an enterprise SIEM and a regional Information Sharing and Analysis Center (ISAC). The requirement dictates establishing an automated, machine-readable mechanism capable of transporting standardized indicators of compromise (IoCs) and threat actor context over HTTPS. Which combination of technical standards and protocols best fulfills this architectural requirement?

Cevabı ve açıklamayı göster

Cevap: Utilizing TAXII as the application-layer transport protocol to exchange threat intelligence packaged in STIX format.

Cevap

Utilizing TAXII as the application-layer transport protocol to exchange threat intelligence packaged in STIX format.
The combination of TAXII and STIX fulfills the requirement for automated threat intelligence sharing. STIX provides the structured, machine-readable format (JSON/XML) for representing threat concepts such as attack patterns, threat actors, and indicators. TAXII acts as the dedicated HTTPS web service protocol that transports STIX intelligence between organizations, such as an ISAC and a subscriber's SIEM.

Adım Adım Çözüm

1
Analyze the operational requirement for automated threat intelligence sharing.
Identified the need for both a machine-readable data serialization format and a secure transport protocol capable of operating over web standards (HTTPS).
Threat intelligence sharing requires decoupling the information structure from the transport layer mechanism.
2
Evaluate the functional roles of STIX and TAXII.
STIX defines 'what' is being expressed (the threat language schema), and TAXII defines 'how' that information is communicated automatedly over the network.
CompTIA Security+ standards strictly differentiate between structured threat architecture (STIX) and transport services (TAXII).
3
Select the correct combination matching the scenario constraints.
TAXII transports STIX-packaged threat intelligence between the enterprise SIEM and the regional ISAC.
This standardized pairing ensures seamless interoperability across automated security platforms.

Anahtar Kavram

STIX/TAXII Threat Intelligence Standards
Tahmini Süre:2m 0s
Soru 167Soru

A security analyst is planning a vulnerability assessment for a web application deployment. The team wants to ensure both dynamic, runtime testing and passive monitoring are utilized during the security evaluation. Which of the following methods should the analyst select to accomplish these goals? (Select TWO).

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

Cevabı ve açıklamayı göster

Cevap: Dynamic Application Security Testing (DAST); Passive Network Packet Inspection

Cevap

The analyst should select Dynamic Application Security Testing (DAST) for runtime application testing and Passive Network Packet Inspection for non-intrusive monitoring.
Dynamic Application Security Testing (DAST) evaluates running applications from a functional perspective to detect security weaknesses during operation. Passive Network Packet Inspection allows analysts to observe network communications for vulnerabilities or cleartext exposures without generating additional probe traffic.

Adım Adım Çözüm

1
Identify the testing requirements specified in the scenario.
The requirements are dynamic runtime testing of the web application and passive security monitoring.
Vulnerability assessment methods must match the exact operational context and testing objectives.
2
Evaluate the available assessment techniques against these requirements.
DAST executes test vectors against a running application, while passive packet inspection analyzes traffic without sending intrusive probes.
DAST evaluates dynamic runtime behavior and passive inspection fulfills non-intrusive monitoring requirements.

Anahtar Kavram

Selecting appropriate vulnerability assessment techniques based on active vs. passive testing objectives.
Soru 168Soru

A security analyst reviews packet capture logs from a corporate wireless network following reports of sudden connectivity drops. The capture reveals a high volume of unencrypted IEEE 802.11 management frames containing Reason Code 7 (Class 3 frame received from nonassociated STA) broadcast from an unverified MAC address. Immediately following these frames, several client stations transmit EAPOL-Key 4-way handshake messages toward a secondary access point that is broadcasting an identical SSID on the same channel but exhibiting a significantly higher RSSI and a different BSSID. Which of the following best diagnoses the ongoing attack vector and its primary operational objective?

Cevabı ve açıklamayı göster

Cevap: A wireless deauthentication/disassociation attack paired with an Evil Twin access point to force client re-association and intercept sensitive traffic.

Cevap

A wireless disassociation attack combined with an Evil Twin access point deployment.
The presence of IEEE 802.11 management frames carrying Reason Code 7 indicates an active disassociation attack designed to break established wireless connections. The subsequent EAPOL-Key 4-way handshake messages directed toward an unauthorized BSSID broadcasting an identical SSID with a stronger RSSI confirm the presence of an Evil Twin access point positioned to perform on-path eavesdropping.

Adım Adım Çözüm

1
Analyze the 802.11 management frame capture.
Identified broadcast 802.11 management frames with Reason Code 7, which explicitly command client stations to disassociate from their current Access Point.
Attackers send spoofed deauthentication or disassociation management frames because unencrypted 802.11 management frames (without 802.11w Protected Management Frames) can be easily forged.
2
Analyze client station behavior post-disassociation.
Observed client stations initiating EAPOL-Key 4-way handshakes with a secondary BSSID sharing the corporate SSID and displaying higher RSSI.
Wireless clients naturally attempt to reconnect to the access point offering the strongest signal strength (RSSI) for a known SSID.
3
Synthesize indicators to determine the combined attack strategy.
Confirmed a forced disassociation attack coupled with an Evil Twin AP deployed to execute on-path (MitM) eavesdropping or credential harvesting.
The deauthentication frame provides the trigger forcing clients to disconnect, while the Evil Twin AP provides the target trap for reconnection.

Anahtar Kavram

Wireless Deauthentication & Evil Twin Attack Indicators
Soru 169Soru

An organization's security team identifies that several software developers received personalized email messages appearing to originate from their version control platform administrator. The messages claimed that due to a critical security compliance violation, their repository access would be suspended within 90 minutes unless they logged into a specified web portal to verify their identity. The link provided led to a counterfeit authentication portal hosted on a visually similar, typo-registered domain designed to harvest credentials. Which of the following social engineering attack vectors and influence principles were directly employed in this campaign? (Select TWO).

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

Cevabı ve açıklamayı göster

Cevap: Spear phishing aimed at specific corporate roles; Urgency leveraged to bypass critical reasoning

Cevap

The attack utilized spear phishing targeted at software developers and leveraged the psychological principle of urgency by threatening imminent account suspension.
The scenario describes spear phishing because the attackers created customized, role-specific email lures targeting software developers. Additionally, the attackers leveraged urgency by establishing an immediate 90-minute deadline with severe consequences (loss of repository access) to prevent victims from stopping to verify the request.

Adım Adım Çözüm

1
Analyze the communication channel and target specificity
The messages were emails tailored to software developers pretending to originate from their internal platform administrator, characteristic of spear phishing.
Spear phishing targets specific roles or individuals using customized lures rather than broad, generic phishing campaigns.
2
Identify the psychological driver used in the lure
The message forced compliance by establishing a 90-minute deadline before account deactivation.
Creating a time-sensitive crisis exploits urgency to prompt immediate compliance before verification can occur.
3
Evaluate and rule out incorrect vector classifications
Watering hole tactics and smishing do not match the direct email delivery mechanism and malicious portal vector described.
Watering hole attacks infect trusted third-party websites, and smishing uses mobile text messaging.

Anahtar Kavram

Spear Phishing and Principles of Influence (Urgency)
Soru 170Soru

A security technician running an infrastructure discovery scan receives the following report for an internal management host:

[+] Host 192.168.10.45:161/UDP - Active
[+] Protocol: SNMPv2c
[+] Community String: public
[+] Extracted Info: SysName: HV-NODE01, OS: Linux 4.19, Interfaces: eth0 (192.168.10.45), eth1 (10.50.0.1 - Storage SAN)

Which of the following represents the primary host and network architecture vulnerability demonstrated in this scan output?

Cevabı ve açıklamayı göster

Cevap: Exposure of sensitive host system information and internal network topology through cleartext protocols with default credentials

Cevap

The primary vulnerability is the exposure of sensitive host system information and internal network topology through cleartext protocols utilizing default community strings.
The correct answer highlights that SNMPv2c sends data in cleartext and using the default community string ('public') exposes sensitive system details—such as OS version, internal IP addresses, and SAN network topology—to unauthorized network reconnaissance.

Adım Adım Çözüm

1
Analyze the scanner log output
Identified active UDP port 161 running SNMPv2c with community string 'public'.
SNMPv2c lacks native cryptographic encryption and relies on cleartext community strings for access control.
2
Evaluate the exposed data surface
The scan retrieved system hostname, OS version, and network interface addresses (including internal SAN access).
Default community strings like 'public' combined with cleartext management protocols allow unauthorized reconnaissance of host hardware and internal infrastructure topology.
3
Determine the primary architectural vulnerability
Conclude that insecure protocol selection (SNMPv2c vs. encrypted SNMPv3) and failure to change default management credentials create significant information exposure.
Hardening host and network infrastructure requires replacing unencrypted legacy management protocols and disabling default community strings.

Anahtar Kavram

Host and Infrastructure Management Protocol Hardening (SNMP Security)
Soru 171Soru

During a security investigation on a compromised server, an administrator suspects a rootkit has been installed to maintain stealthy persistence. Which TWO of the following indicators of compromise specifically signal the presence of a rootkit?

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

Cevabı ve açıklamayı göster

Cevap: Discrepancies between low-level kernel queries and user-space administrative process listings; Interception and modification of system calls to conceal specific files and active network connections

Cevap

The correct indicators of a rootkit are discrepancies between low-level kernel queries and user-space process listings, as well as the interception and modification of system calls to conceal files and network connections.
Rootkits achieve stealth by replacing or modifying operating system components and hooking system call interfaces. This creates discrepancies between raw kernel state and user-space management utilities, hiding malicious files, processes, and active network connections from administrators.

Adım Adım Çözüm

1
Analyze the core operating behavior of a rootkit
Rootkits focus on stealth and persistent access by modifying OS system routines or kernel tables.
Understanding rootkit design helps identify how their indicators differ from standard user-mode malware.
2
Evaluate system call and process listing telemetry
Because rootkits hook OS system calls, native reporting tools display sanitized outputs that contradict direct kernel memory queries.
This discrepancy directly identifies rootkit concealment activities.

Anahtar Kavram

Rootkit Indicators of Compromise and Kernel-Level Concealment
Tahmini Süre:1m 0s
Soru 172Soru

A security team is evaluating testing methodologies to identify vulnerabilities within a newly deployed web application. To satisfy compliance standards, the team must implement security testing techniques that analyze the application while it is actively executing in a target runtime environment. Which of the following assessment methods fulfill this requirement? (Select TWO)

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

Cevabı ve açıklamayı göster

Cevap: Dynamic Application Security Testing (DAST) to evaluate application responses to simulated attacks during execution; Interactive Application Security Testing (IAST) to inspect runtime code execution and data flow using embedded software agents

Cevap

The testing methods that analyze an application during active runtime execution are Dynamic Application Security Testing (DAST) and Interactive Application Security Testing (IAST).
Dynamic Application Security Testing (DAST) and Interactive Application Security Testing (IAST) both analyze application behavior in a running state. DAST interacts externally by sending payloads to an active web service endpoint and reviewing HTTP responses. IAST monitors runtime execution internally by combining software instrumentation agents with dynamic testing to observe memory state, database queries, and data flows while the application executes.

Adım Adım Çözüm

1
Analyze the scenario requirements
Identified the core requirement: testing methods must analyze application behavior during active runtime execution.
Security assessment tools fall into static, dynamic, interactive, and dependency categories based on whether code executes during analysis.
2
Evaluate candidate testing methodologies
DAST tests from the outside while the application runs; IAST tests from the inside via agent instrumentation while the application runs.
Both DAST and IAST require an executing application instance to perform vulnerability discovery.
3
Differentiate runtime methods from passive or architectural tools
Eliminated static source code analysis (SAST), dependency tracking (SCA), and deception technologies (honeypots).
SAST and SCA analyze unexecuted code/manifests at rest, whereas honeypots are detection mechanisms rather than application vulnerability testing tools.

Anahtar Kavram

Runtime Application Security Testing (DAST vs. IAST)
Soru 173Soru

A system administrator downloaded a third-party system maintenance utility disguised as a performance optimizer. Upon execution, the application created a persistent registry entry under `HKCU\Software\Microsoft\Windows\CurrentVersion\Run`, established an encrypted outbound connection to an external IP address, and injected code into system processes to monitor keyboard inputs. Which of the following technical characteristics and indicators of compromise (IoCs) distinguish this threat as a Trojan with spyware capabilities rather than a self-propagating network worm? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Requirement for user execution and reliance on disguised social engineering delivery rather than self-replicating across network vulnerabilities; Unauthorized keylogging and process memory monitoring combined with outbound command-and-control (C2) session traffic

Cevap

The correct indicators and characteristics are the requirement for user execution via social engineering delivery, and the presence of keyboard input monitoring combined with outbound command-and-control traffic.
Trojans are defined by their delivery method, which tricks users into executing malicious code masquerading as legitimate software. Spyware specifically focuses on collecting sensitive information such as keystrokes and process activity, transmitting it over outbound command-and-control channels. Both of these differentiate the scenario's malware from self-propagating worms.

Adım Adım Çözüm

1
Analyze the delivery and execution mechanism presented in the scenario.
The malware relies on a fake maintenance utility executed by a user, which is indicative of a Trojan rather than an autonomously propagating worm.
Trojans disguise themselves as benign software to trick users into manually executing them.
2
Analyze the observed system and network telemetry artifacts.
Process injection for keyboard monitoring (spyware) combined with persistent registry keys and outbound connections (RAT command-and-control) confirms Trojan/spyware functionality.
Spyware captures sensitive inputs like keystrokes, while RATs maintain persistence and C2 communications.

Anahtar Kavram

Distinguishing Malware Types (Trojan vs. Worm) and Identifying Telemetry IoCs
Soru 174Soru

A healthcare enterprise recently integrated a third-party remote patient monitoring service that communicates via HTTPS with an internal API gateway. During an incident investigation, security analysts discovered that an attacker who obtained a compromised, revoked private key from a former partner company successfully established a man-in-the-middle (MitM) session and exfiltrated sensitive patient records. The API gateway validated that the presented certificate was issued by a trusted Certificate Authority (CA) and had not reached its expiration date, but failed to inspect current revocation data. Which cryptographic control weakness directly allowed this unauthorized session to be established?

Cevabı ve açıklamayı göster

Cevap: Improper certificate revocation validation failing to check CRL or OCSP endpoints during the TLS handshake

Cevap

Improper certificate revocation validation failing to check CRL or OCSP endpoints during the TLS handshake
The correct answer identifies improper certificate validation—specifically the failure to check Certificate Revocation Lists (CRLs) or Online Certificate Status Protocol (OCSP) responses—as the root vulnerability. A digital certificate must be verified against current revocation databases to ensure that stolen, compromised, or prematurely invalidated private keys are rejected during handshake negotiation.

Adım Adım Çözüm

1
Analyze the incident details
The attacker utilized a key that was known to be compromised and previously revoked by the issuing CA.
Understanding the attacker's vector reveals that the vulnerability lies within PKI certificate status verification.
2
Evaluate the gateway's validation checks
The gateway confirmed CA signature trust and expiration dates, but omitted checking revocation lists or querying status responders.
A certificate remains accepted despite revocation if the relying party does not query CRLs or OCSP.
3
Identify the underlying cryptographic weakness
The failure to enforce real-time or updated revocation verification allowed the revoked credential to authenticate successfully.
Complete certificate validation mandates checking signature trust, validity period, path depth, and revocation status.

Anahtar Kavram

Public Key Infrastructure (PKI) Certificate Revocation Checking (CRL and OCSP)
Soru 175Soru

A regional water treatment utility discovers an advanced network intrusion. Forensic investigators determine that the threat group maintained undetected persistence within the operational technology (OT) network for over nine months. Rather than deploying ransomware or causing immediate service disruption, the group focused exclusively on collecting SCADA configuration files and mapping control system logic. Which TWO of the following threat actor attributes and vector profiles most accurately describe this incident? (Select TWO)

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

Cevabı ve açıklamayı göster

Cevap: Nation-state threat actor operating with high sophistication, extensive funding, and geopolitical espionage motives.; Supply chain compromise of a trusted third-party software vendor used for remote industrial control maintenance.

Cevap

The incident is best characterized by a nation-state threat actor motivated by geopolitical espionage and high-sophistication persistence, along with a supply chain attack vector leveraging trusted third-party software management access.
The scenario describes key indicators of a nation-state actor (Advanced Persistent Threat): high technical sophistication, long-term covert persistence, and strategic reconnaissance against critical infrastructure without financial demands. Furthermore, exploiting trusted third-party maintenance software (supply chain vector) is a primary method for such sophisticated actors to infiltrate air-gapped or segmented industrial control networks.

Adım Adım Çözüm

1
Analyze the threat actor motivation and behavior indicators from the scenario.
The prolonged nine-month persistence, lack of financial extortion (ransomware), focus on critical infrastructure (SCADA/OT), and passive intelligence gathering point directly to an Advanced Persistent Threat (APT) backed by a nation-state.
Nation-state actors prioritize strategic espionage, low visibility, and long-term operational access over quick monetary gain.
2
Evaluate the attack vector characteristics suited for stealthy, high-target environments.
Exploiting third-party maintenance vendor software provides an indirect, trusted entry point that evades standard perimeter controls.
Supply chain compromises allow sophisticated threat actors to leverage existing trust relationships and gain deep access into segmented networks.

Anahtar Kavram

Threat Actor Attributes and Attack Vectors
Soru 176Soru

During an incident investigation at a biotechnology research facility, forensic analysts discover that an adversary gained initial network access through a compromised third-party software supply chain, utilized unpublished zero-day vulnerabilities targeting the underlying virtualization hypervisors, and established covert, out-of-band command-and-control channels to exfiltrate proprietary genomic sequencing intellectual property. The intruder maintained stealthy persistence for over ten months without altering system integrity, deploying ransomware, or publishing defacement material. Which threat actor profile MOST accurately aligns with the observed attributes, capabilities, and attack vector?

Cevabı ve açıklamayı göster

Cevap: A nation-state actor operating with high sophistication, extensive financial resourcing, and strategic espionage intent.

Cevap

A nation-state threat actor operating with high sophistication, extensive financial resourcing, and strategic espionage intent.
The correct response identifies a nation-state actor. Advanced attributes such as developing or acquiring zero-day exploits, breaching software supply chains, establishing out-of-band command-and-control, and maintaining multi-month stealthy persistence to steal competitive intellectual property are signature characteristics of state-sponsored threat groups with vast resources and strategic espionage goals.

Adım Adım Çözüm

1
Analyze the attack vector and access mechanism described in the scenario.
Initial access occurred via a third-party software supply chain compromise followed by hypervisor zero-day exploitation.
Supply chain compromise and zero-day development require significant technical capability, time, and financial investment.
2
Evaluate the observed operational behavior and threat actor attributes.
The adversary maintained covert access for over ten months, avoided system disruption, and used out-of-band command-and-control communication.
Prolonged evasion, specialized tools, and disciplined operational security indicate high sophistication and state-level resourcing.
3
Assess the adversary's primary intent and motivation.
The exfiltration of proprietary genomic intellectual property without ransom demands or public defacement signals espionage.
Strategic intelligence gathering aligns directly with nation-state objectives rather than financial cybercrime or ideological activism.

Anahtar Kavram

Threat Actor Classification and Attribute Identification
Soru 177Soru

A human resources administrator receives an unexpected phone call from an individual claiming to be a senior IT compliance auditor. The caller asserts that an emergency vulnerability audit of the enterprise payroll database is currently underway and demands immediate provision of temporary administrative credentials to avoid a severe regulatory non-compliance fine. To establish credibility, the caller references specific internal department codes obtained from an employee's public professional profile. Which social engineering technique and combination of influence principles is the attacker primarily utilizing in this attack scenario?

Cevabı ve açıklamayı göster

Cevap: Pretexting leveraging authority and urgency

Cevap

Pretexting leveraging authority and urgency
The correct answer accurately identifies pretexting as the attack mechanism because the adversary builds a fabricated role (an IT compliance auditor) to gain trust and request unauthorized access. Furthermore, the attacker explicitly relies on the principle of authority by posing as an official auditor and the principle of urgency by demanding immediate credential disclosure to avoid regulatory penalties.

Adım Adım Çözüm

1
Analyze the attack vector and communication channel
The attack uses direct telephone communication with an fabricated persona (external auditor) and backstory.
Creating a fake scenario to trick a victim into disclosing sensitive credentials is the core definition of pretexting (often delivered via vishing).
2
Identify the primary psychological principles of influence applied
The caller assumes an official compliance auditor role (authority) and demands immediate compliance under threat of fines (urgency).
Threat actors use authority to discourage questioning and urgency to force rapid action before the victim can verify authenticity.

Anahtar Kavram

Social Engineering Attack Vectors and Psychological Principles of Influence
Soru 178Soru

A security technician investigating an isolated endpoint alert reviews host telemetry and memory capture files. The triage report indicates that a persistent process executing from `%APPDATA%` invokes the system API `SetWindowsHookEx` to intercept keystrokes, while simultaneously establishing an encrypted reverse shell back-connect over TCP port 443 to a remote host. The process modifies system registry run keys for boot persistence, but shows no network scanning or self-replication capabilities across local SMB shares. Which of the following malware classifications and technical indicators accurately describe this malicious activity? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: The threat exhibits Remote Access Trojan (RAT) behavior by establishing an outbound reverse shell for remote interactive control.; The host telemetry reveals keylogger functionality through the application API hook designed to capture user keystrokes.

Cevap

The threat is characterized by Remote Access Trojan (RAT) behavior due to its reverse shell capability, and keylogger functionality indicated by the API hook for keystroke interception.
The scenario highlights two distinct behaviors: establishing an interactive reverse shell (which identifies a Remote Access Trojan) and leveraging input hooking APIs like SetWindowsHookEx to intercept user keystrokes (which indicates keylogger functionality).

Adım Adım Çözüm

1
Analyze the telemetry regarding remote control and network traffic.
The persistent process establishes an outbound reverse shell back-connect over port 443, enabling remote adversary interaction, which defines Remote Access Trojan (RAT) functionality.
Identifying the primary operational objective of the network traffic establishes malware categorization.
2
Analyze the process API calls and host artifact telemetry.
The process uses SetWindowsHookEx to hook input events, identifying keystroke logging (keylogger/spyware) capabilities.
API hooking of user input functions directly correlates to keylogging behavior.
3
Evaluate distractor choices regarding propagation and remediation controls.
Worm behavior requires autonomous propagation, which is absent here. Perimeter firewall rules block external communication but do not perform host remediation or registry cleanup.
Differentiating malware propagation mechanisms and selecting proper host eradication versus network isolation controls avoids common operational misconceptions.

Anahtar Kavram

Malware Indicators of Compromise (RAT, Keylogger, Trojan vs Worm)
Tahmini Süre:2m 0s
Soru 179Soru

A user downloads a free utility program from an unverified website. After executing the installer, the utility operates as advertised, but it secretly opens a backdoor to establish unauthorized remote access for an attacker. Which malware classification best describes this malicious software?

Cevabı ve açıklamayı göster

Cevap: Trojan

Cevap

Trojan
The correct answer is Trojan because this classification specifically refers to malicious code disguised as benign or useful software that requires user execution to deliver its payload.

Adım Adım Çözüm

1
Analyze the infection vector described in the scenario
The user manually downloaded and executed a file disguised as a useful utility.
Trojans rely on social engineering and user execution under the guise of legitimate software.
2
Evaluate the hidden functionality of the program
The utility delivers a hidden covert backdoor while carrying out its advertised function.
This dual-nature behavior (beneficial appearance hiding malicious payloads) is the defining characteristic of a Trojan.

Anahtar Kavram

Trojan Malware Characteristics
Soru 180Soru

A system administrator is reviewing a web application's legacy configuration and discovers that user passwords are saved in the database using the MD5 hashing algorithm without any salt. Which cryptographic weakness does this implementation exhibit?

Cevabı ve açıklamayı göster

Cevap: Use of a collision-prone and cryptographically broken hashing algorithm

Cevap

Use of a collision-prone and cryptographically broken hashing algorithm
MD5 is an obsolete, cryptographically weak hashing algorithm that is vulnerable to collision attacks. Storing passwords with MD5 without salting allows attackers to reverse or match hashes easily using rainbow tables.

Adım Adım Çözüm

1
Identify the cryptographic mechanism described in the scenario
The system utilizes the MD5 algorithm without salting for password storage
MD5 is a 128-bit hash function widely recognized as weak and obsolete
2
Evaluate the primary vulnerability associated with MD5
MD5 suffers from severe collision vulnerabilities and high speed, making unsalted hashes susceptible to precomputed lookup tables (rainbow tables)
Cryptographic standards dictate using strong, salted key-stretching algorithms (e.g., bcrypt, PBKDF2) instead of broken algorithms like MD5

Anahtar Kavram

Cryptographic Weaknesses and Deprecated Algorithms
ÖncekiSayfa 9 / 25Sonraki
Threats, Vulnerabilities, and Mitigations Alıştırma Soruları — CompTIA Security+ — Sayfa 9 | Examkin