Tüm alıştırma soruları

2232 soru

Soru 381Soru

During a threat hunting exercise, a security analyst reviews network logs from a Kubernetes host node running enterprise microservices. The log entries indicate that a compromised container instance successfully issued a request to extract infrastructure credentials:

[2026-07-20 09:14:02 UTC] TCP 10.244.1.45:49152 -> 169.254.169.254:80 GET /latest/meta-data/iam/security-credentials/node-role HTTP/1.1
[2026-07-20 09:14:02 UTC] HTTP 200 OK (Content-Length: 1248, IAM Role: NodeInstanceRole)
[2026-07-20 09:14:15 UTC] AWS STS API call initiated directly from container IP 10.244.1.45 using retrieved token

Which host and architecture vulnerability is the root cause of this credential exposure?

Cevabı ve açıklamayı göster

Cevap: Reliance on Instance Metadata Service Version 1 (IMDSv1) without session tokens, combined with unrestricted container access to the host link-local metadata endpoint

Cevap

Reliance on Instance Metadata Service Version 1 (IMDSv1) without session tokens, combined with unrestricted container access to the host link-local metadata endpoint
The root cause vulnerability is the reliance on Instance Metadata Service Version 1 (IMDSv1), which processes unauthenticated HTTP GET requests for cloud node IAM credentials, paired with a lack of host network namespace isolation for container workloads. Because IMDSv1 does not require session tokens (unlike IMDSv2), any process or container with access to the link-local IP 169.254.169.254 can extract the host's IAM role credentials and assume those privileges.

Adım Adım Çözüm

1
Analyze the log entry to identify the targeted IP address and request method
The container IP (10.244.1.45) made a plain HTTP GET request to 169.254.169.254 targeting security credentials.
The IP address 169.254.169.254 is a standard link-local address used in cloud infrastructure to host the Instance Metadata Service (IMDS).
2
Determine the vulnerability inherent in the request design
IMDSv1 responds to basic HTTP GET requests without requiring session tokens or pre-authentication.
Because IMDSv1 does not enforce token-based headers (introduced in IMDSv2) or hop-limit restrictions, microservices sharing the host network namespace can freely extract node IAM privileges.
3
Identify the primary architectural root cause
The combination of unauthenticated IMDSv1 endpoints and lack of pod egress isolation allowed credential theft.
Enforcing IMDSv2 and restricting access to 169.254.169.254 via network policies mitigates this cloud host vulnerability.

Anahtar Kavram

Cloud Host Instance Metadata Service Vulnerabilities (IMDSv1 vs IMDSv2) and Workload Egress Isolation
Soru 382Soru

A system administrator at a retail organization notices automated scans targeting the company's public web server using off-the-shelf, publicly available exploit toolkits. The activity demonstrates minimal technical expertise and relies entirely on well-known vulnerabilities without using custom tools or zero-day exploits. Which threat actor type is most likely responsible for this activity?

Cevabı ve açıklamayı göster

Cevap: Script kiddie

Cevap

Script kiddie
The term 'script kiddie' refers to an attacker who uses existing, publicly available tools and automated scripts created by others due to a lack of deep technical capability to develop original exploits.

Adım Adım Çözüm

1
Analyze the threat actor attributes described in the scenario
Identified minimal technical sophistication, reliance on off-the-shelf tools, and lack of custom exploits
Evaluating key adversary traits allows proper classification of the threat actor type
2
Map the identified attributes to threat actor profiles
Script kiddies uniquely match the profile of using existing scripts without deep technical expertise
Distinguishing actor capability levels is essential for accurate security threat assessment

Anahtar Kavram

Threat Actor Attributes and Sophistication Levels
Soru 383Soru

A security analyst at a healthcare technology firm is investigating a network intrusion. Analysis reveals that an external group gained access through a zero-day vulnerability in an edge device, established undetected long-term persistence for over nine months, and specifically targeted proprietary medical diagnostic algorithms. The adversary did not deploy ransomware, make extortion demands, or disrupt operations. Which threat actor type and attribute profile is most likely responsible for this attack?

Cevabı ve açıklamayı göster

Cevap: Nation-state threat actor possessing high technical sophistication, extensive financial resources, and espionage-driven intent.

Cevap

Nation-state threat actor possessing high technical sophistication, extensive financial resources, and espionage-driven intent.
The scenario describes an Advanced Persistent Threat (APT) profile characteristic of a nation-state threat actor. Key indicators include significant financial backing, high technical sophistication (utilizing zero-day vulnerabilities), covert long-term persistence (nine months), and targeted exfiltration of intellectual property (diagnostic algorithms) for strategic gain rather than immediate financial extortion.

Adım Adım Çözüm

1
Analyze the adversary's capability and attack vector indicators.
The use of an unpatched zero-day vulnerability and undetected nine-month persistence demonstrates advanced technical capability, high sophistication, and deep funding.
Acquiring or developing zero-day exploits and maintaining long-term stealth require substantial resources.
2
Evaluate the adversary's primary intent and motivation.
The targeted exfiltration of proprietary diagnostic algorithms without ransom demands or operational destruction indicates corporate or state espionage.
Financial threat actors (e.g., cybercriminals) monetise intrusions rapidly via ransom demands, whereas nation-state actors focus on strategic value and intellectual property.
3
Correlate attributes to threat actor taxonomy profiles.
High sophistication + high funding + long-term stealth + espionage intent = Nation-state (APT).
These specific attributes align directly with nation-state actor profiles.

Anahtar Kavram

Threat Actor Classifications, Motivations, and Sophistication Attributes
Soru 384Soru

A security technician reviews a vulnerability scanner report for an unpatchable host operating critical legacy services:

`[WARN] Host 10.0.4.15 (Legacy_SCADA_GW): Outdated SSLv3 enabled on port 443`
`[WARN] Host 10.0.4.15 (Legacy_SCADA_GW): Active unencrypted Telnet service detected on port 23`
`[INFO] Host 10.0.4.15 shares a flat Layer 2 broadcast domain with 150 user workstations.`

Because replacing or patching the legacy system would interrupt critical operations, which of the following is the MOST effective architectural control to mitigate network-based exploitation of these host vulnerabilities?

Cevabı ve açıklamayı göster

Cevap: Implement microsegmentation to place the legacy host in an isolated VLAN with restricted jump box access controls.

Cevap

Implementing microsegmentation and isolating the host within a restricted VLAN via a secure jump box is the most effective architectural mitigation.
Microsegmentation compensates for unpatchable host vulnerabilities by placing the vulnerable device in an isolated VLAN and restricting network access strictly to authenticated administrative jump hosts. This prevents lateral attack traffic within the internal broadcast domain.

Adım Adım Çözüm

1
Analyze host constraints and vulnerability findings.
The target system runs unencrypted/legacy services (Telnet, SSLv3) on an unpatchable host situated in a flat broadcast domain alongside internal workstations.
Host-level software changes or patches are not viable due to legacy system stability requirements.
2
Evaluate control types and architectural boundary requirements.
Network microsegmentation creates a secure boundary around legacy infrastructure, limiting exposure over open ports to authorized jump hosts only.
Isolation compensates for host-level vulnerabilities by blocking unauthorized network paths without modifying the host OS.

Anahtar Kavram

Compensating Controls for Legacy Infrastructure Vulnerabilities
Soru 385Soru

A security analyst inspecting web application access logs discovers the following HTTP POST request payload targeting an enterprise search endpoint:

`POST /api/v1/products/search HTTP/1.1`
`Host: portal.example.com`
`Content-Type: application/x-www-form-urlencoded`
`Payload: item_query=gadget' UNION SELECT credit_card_num, CVV FROM customer_payment_data WHERE '1'='1`

Which of the following vulnerabilities is being exploited in this scenario, and what is the primary application-level mitigation control required to prevent it?

Cevabı ve açıklamayı göster

Cevap: SQL injection; mitigated primarily by implementing parameterized database queries and prepared statements.

Cevap

SQL injection; mitigated primarily by implementing parameterized database queries and prepared statements.
The HTTP payload contains classic SQL injection syntax, specifically using single quotes to break out of data context and `UNION SELECT` to retrieve data from sensitive database tables (`customer_payment_data`). The definitive mitigation for SQL injection is adopting parameterized queries (prepared statements), which separate user data from SQL command logic at the application layer.

Adım Adım Çözüm

1
Analyze the log payload syntax
Identified database manipulation keywords (`UNION SELECT`), string terminator (`'`), and boolean evaluation (`'1'='1`).
Determines the specific class of application vulnerability (SQL Injection).
2
Differentiate SQL injection from client-side or authorization flaws
Confirmed payload targets backend relational database tables (`customer_payment_data`), ruling out XSS or IDOR.
Prevents misdiagnosis of vulnerability types.
3
Evaluate appropriate remediation control layer
Selected parameterized queries/prepared statements as the effective software control rather than network-level firewalls.
Ensures remediation acts on application code where input interpretation occurs.

Anahtar Kavram

Application SQL Injection Identification and Parameterized Query Mitigation
Tahmini Süre:2m 0s
Soru 386Soru

A forensic analyst investigating an unexpected data wipe on a critical financial server discovers an obfuscated script embedded within a routine system backup routine. The script performs no malicious activity during normal execution; however, it regularly queries the enterprise LDAP directory. Inspection reveals that if a specific senior database administrator's account status transitions to 'Inactive' or 'Disabled', the script triggers an automated payload that executes a multi-pass overwrite of disk sectors and purges transaction logs. Which of the following malware classifications best describes this threat based on its operational behavior?

Cevabı ve açıklamayı göster

Cevap: Logic bomb

Cevap

The threat is classified as a logic bomb because it remains dormant within a legitimate routine until a specific predefined logical condition (an account status change in LDAP) triggers the execution of its destructive payload.
The correct answer identifies the malware as a logic bomb. Logic bombs consist of malicious code snippets embedded into legitimate applications or scripts that lie dormant until a specific condition or event occurs—such as a specific date, time, file creation, or in this case, an administrator's account being marked as disabled in LDAP. Once triggered, the code executes its malicious payload.

Adım Adım Çözüm

1
Analyze the observed behavior and persistence mechanism of the embedded script.
Identified that the code runs inside a standard backup routine without causing harm during ordinary system operation.
Establishing baseline execution behavior helps distinguish active background attacks from dormant conditional threats.
2
Evaluate the activation criteria specified within the payload logic.
Determined that payload execution depends directly on the LDAP status change of a targeted administrator account.
Dormancy combined with conditional event-based execution is the defining characteristic of a logical trigger.
3
Correlate the activation mechanism with formal malware definitions.
Concluded that code executing destructive actions exclusively upon reaching a designated logical state matches the classification of a logic bomb.
Differentiating malware by activation vector (propagation vs. masking vs. conditional triggers) yields the precise security classification.

Anahtar Kavram

Logic Bomb Identification and Operational Triggers
Soru 387Soru

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 388Soru

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 389Soru

An enterprise organization is migrating its internal customer portal to a cloud environment utilizing a Platform as a Service (PaaS) deployment model. Under the cloud Shared Responsibility Model, which of the following security tasks remains the primary responsibility of the enterprise organization?

Cevabı ve açıklamayı göster

Cevap: Configuring application-level access controls and managing user data stored within the platform.

Cevap

Configuring application-level access controls and managing user data stored within the platform.
Under Platform as a Service (PaaS), the cloud service provider abstracts and manages the underlying hardware, network infrastructure, virtualization layer, and operating system. The enterprise customer retains full responsibility for application-layer security, user identity and access management, and data protection.

Adım Adım Çözüm

1
Identify the cloud service model referenced in the scenario.
The model is Platform as a Service (PaaS).
Security responsibilities shift based on whether the service model is IaaS, PaaS, or SaaS.
2
Determine the division of responsibilities under the PaaS Shared Responsibility Model.
The Cloud Service Provider (CSP) manages the hardware, physical data center, virtualization layer, operating system, and runtime execution environment. The customer manages data classification, account access, and application code.
PaaS abstracts the underlying operating system and hardware infrastructure away from the enterprise customer.
3
Select the task aligned with customer duties in PaaS.
Configuring application-level access controls and securing customer data.
Data governance and application security remain customer responsibilities in PaaS.

Anahtar Kavram

Cloud Shared Responsibility Model (PaaS)
Soru 390Soru

An organization is deploying a serverless Function-as-a-Service (FaaS) application in a public cloud environment to process customer images. According to the cloud Shared Responsibility Model, which TWO of the following tasks remain the responsibility of the customer? (Select TWO)

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

Cevabı ve açıklamayı göster

Cevap: Configuring fine-grained Identity and Access Management (IAM) execution roles and access policies for the serverless function; Auditing and securing the custom application code deployed within the function against software vulnerabilities

Cevap

The customer is responsible for configuring IAM execution roles and policies for the serverless function, as well as auditing and securing the application code deployed within the function.
In Function-as-a-Service (FaaS) or serverless computing, the cloud provider abstracts away physical hardware, virtualization layers, and host operating systems. The customer retains full responsibility for identity and access management (such as function execution roles and permissions) and the security of the application code itself.

Adım Adım Çözüm

1
Analyze the cloud deployment architecture model
Identified the service model as Function-as-a-Service (FaaS) / Serverless Computing.
Understanding the service model determines where the demarcation line lies in the Shared Responsibility Model.
2
Determine Cloud Service Provider (CSP) responsibilities in serverless architectures
The CSP manages physical hardware, network infrastructure, host operating systems, and serverless runtime platforms.
Serverless abstracts away server management from the cloud customer.
3
Determine customer responsibilities in serverless architectures
The customer manages custom application code, data, and access permissions (IAM roles).
The customer retains control over identity governance and application logic regardless of infrastructure abstraction.

Anahtar Kavram

Shared Responsibility Model in Serverless (FaaS) Architectures
Tahmini Süre:1m 0s
Soru 391Soru

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 392Soru

An organization is deploying a custom web application to a cloud environment where the cloud service provider manages the underlying hardware, operating system, and web server runtime environment. The organization's development team is responsible only for deploying their application code and managing the application data. Which cloud service model is being utilized in this scenario?

Cevabı ve açıklamayı göster

Cevap: Platform as a Service (PaaS)

Cevap

Platform as a Service (PaaS)
Platform as a Service (PaaS) abstracts the underlying infrastructure and operating system layer. The cloud provider maintains hardware, operating systems, and runtime environments, while the customer retains control over application code and data management.

Adım Adım Çözüm

1
Analyze the management boundary described in the scenario.
The cloud provider handles physical hardware, OS, and runtime middleware, while the organization handles application code and data.
Determining where customer responsibility starts is key to identifying the service model under the Shared Responsibility Model.
2
Map the boundary to standard cloud service models.
Managing code and data on top of a provider-managed runtime environment defines Platform as a Service (PaaS).
PaaS abstracts the underlying operating system and hardware so developers can focus solely on application code.

Anahtar Kavram

Cloud Service Models and Shared Responsibility
Soru 393Soru

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 394Soru

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 395Soru

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 396Soru

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 397Soru

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 398Soru

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 399Soru

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 400Soru

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
ÖncekiSayfa 20 / 112Sonraki
Tüm alıştırma soruları — CompTIA Security+ | Examkin