Security Operations

627 soru

Soru 221Soru

An incident investigation team is analyzing correlated telemetry captured by an enterprise SIEM from an API Gateway (APIGW) and an Identity Provider (IDP):

text
2026-03-14T08:12:01Z [APIGW] src_ip=198.51.100.44 method=POST uri="/api/v1/auth/login" status=200 user="j_doe"
2026-03-14T08:12:05Z [IDP] user="j_doe" auth_method="MFA_TOTP" status="SUCCESS" src_ip=198.51.100.44
2026-03-14T08:12:12Z [APIGW] src_ip=198.51.100.44 method=GET uri="/api/v1/admin/export" status=403 user="j_doe" error="InsufficientPrivileges"
2026-03-14T08:12:18Z [APIGW] src_ip=198.51.100.44 method=POST uri="/api/v1/users/j_doe/roles" status=200 payload="{\"add_role\":\"GlobalAdmin\"}"
2026-03-14T08:12:25Z [APIGW] src_ip=198.51.100.44 method=GET uri="/api/v1/admin/export" status=200 user="j_doe" bytes_sent=4194304

Based on the log sequence above, which of the following security events occurred?

Cevabı ve açıklamayı göster

Cevap: The account successfully passed authentication but exploited a broken authorization control to elevate privileges and download restricted data.

Cevap

The account successfully passed authentication but exploited a broken authorization control to elevate privileges and download restricted data.
The sequence of SIEM telemetry shows that the account successfully authenticated via multi-factor authentication, received an HTTP 403 Forbidden error when attempting to reach an admin endpoint, successfully issued a request to self-assign the 'GlobalAdmin' role, and subsequently retrieved data from the admin endpoint. This indicates a broken access control vulnerability permitting unauthorized privilege escalation.

Adım Adım Çözüm

1
Analyze initial access telemetry
Timestamps 08:12:01Z and 08:12:05Z confirm identity verification (authentication) succeeded using primary credentials and MFA TOTP.
Establishing valid identity precedes assessing access permissions.
2
Evaluate the HTTP 403 response at 08:12:12Z
The user attempted to reach `/api/v1/admin/export` but received HTTP 403 (Forbidden) with `error="InsufficientPrivileges"`.
HTTP 403 demonstrates that while the identity is known, the authorization rule blocked access.
3
Trace privilege escalation and successful exfiltration
At 08:12:18Z, a POST request to `/api/v1/users/j_doe/roles` granted `GlobalAdmin` permissions, enabling the subsequent GET request at 08:12:25Z to return HTTP 200 and transmit 4,194,304 bytes.
Correlating timestamps reveals an unauthorized permission modification that bypassed proper administrative controls.

Anahtar Kavram

Distinguishing authentication from authorization failures during SIEM log correlation and identifying privilege escalation attacks.
Soru 222Soru

A Security Operations Center (SOC) team is configuring an automated Endpoint Detection and Response (EDR) incident response workflow to handle host-based malicious script execution. In what sequence should the EDR platform execute the containment, mitigation, and post-incident investigation actions?

Öğeleri doğru sıraya koymak için sürükleyin

Cevabı ve açıklamayı göster

Cevap

The correct operational sequence begins with initial detection, followed by host network isolation, active process termination and file quarantine, volatile forensic artifact collection, and finally deploying updated IOCs across the enterprise.
Effective EDR incident response relies on a structured sequence: detecting anomalous behavior triggers automated playbooks, network isolation prevents lateral movement while preserving volatile state, process termination and quarantine neutralize host impact, forensic data capture enables root-cause investigation, and enterprise-wide IOC deployment prevents repeat attacks.

Adım Adım Çözüm

1
Detect malicious behavior to initiate response
Automated incident playbook is triggered upon rule match.
Containment workflows require an initial detection event or alert threshold.
2
Isolate host network interfaces
Host is logically isolated from network traffic except for the EDR management channel.
Prevents lateral movement across the network immediately without shutting down the system or losing volatile RAM evidence.
3
Terminate malicious process and quarantine binaries
Active threat execution on the endpoint is stopped.
Eliminates ongoing execution on the host while keeping host isolation active.
4
Perform forensic evidence collection
Volatile memory dumps and telemetry logs are extracted for investigation.
Evidence preservation and root-cause analysis can be conducted safely after active threats are contained.
5
Broaden protection across enterprise endpoints
Newly identified IOCs are deployed to all agents.
Ensures enterprise-wide immunity against similar attack vectors in future incidents.

Anahtar Kavram

EDR Incident Containment and Remediation Workflow
Soru 223Soru

Following an EDR telemetry alert indicating an active credential-harvesting attempt on a Windows domain controller, a SOC analyst must execute an incident response procedure. In what sequence should the analyst execute the following actions to effectively contain the threat, preserve evidence, and remediate the endpoint?

Öğeleri doğru sıraya koymak için sürükleyin

Cevabı ve açıklamayı göster

Cevap

The correct order of incident response steps is: Apply logical endpoint network isolation through the EDR console -> Acquire a volatile memory snapshot via live response -> Kill the malicious process tree -> Quarantine binary artifacts and remove persistence -> Release the endpoint from network isolation.
The response sequence follows standardized incident handling rules adapted for EDR capabilities. First, host network isolation is applied to halt C2 communications and lateral movement without severing the management channel. Second, volatile memory and telemetry must be collected while processes remain active to capture memory evidence. Third, the malicious process tree is killed to stop execution. Fourth, persistence mechanisms are purged and malicious binaries quarantined. Finally, network isolation is lifted after verifying the host is clean and compliant.

Adım Adım Çözüm

1
Isolate the endpoint logically via EDR software controls
External C2 channels and lateral movement vectors are severed instantly, while the analyst retains full EDR remote command capabilities.
Containment must occur first to minimize damage and prevent attacker exfiltration or pivot operations.
2
Collect volatile RAM and process state telemetry
Critical evidence of in-memory credential harvesting is captured.
Volatile evidence must be captured prior to killing processes or altering system state, as terminating processes destroys in-memory artifacts.
3
Terminate the malicious process tree
Active execution of credential-harvesting code is halted.
Stopping malicious execution prevents further unauthorized activity on the endpoint.
4
Remediate host artifacts and persistence
Malicious files are quarantined and registry/scheduled task persistence mechanisms are purged.
Remediation ensures the threat cannot reactivate automatically when system services restart.
5
Restore host network access
The host resumes normal business operations.
Network access should only be restored after verification that all malicious elements are eradicated and baseline policies are active.

Anahtar Kavram

EDR Automated Containment and Sequential Incident Response Workflow
Soru 224Soru

An incident responder is preparing to collect digital evidence from a powered-on corporate workstation suspected of compromise. According to standard forensic evidence collection guidelines (Order of Volatility), in what sequence should the responder capture the following components, from MOST volatile to LEAST volatile?

Öğeleri doğru sıraya koymak için sürükleyin

Cevabı ve açıklamayı göster

Cevap

The correct sequence from most volatile to least volatile is: CPU registers and processor cache, System RAM (Random Access Memory), Pagefile / Swap space on the local drive, and Off-site archival backup tape.
Digital forensics principles dictate collecting evidence starting with the most fragile, transient data (CPU cache/registers), moving sequentially through dynamic main memory (RAM), temporary disk files (swap/pagefile), and ending with static offline media (archival tapes).

Adım Adım Çözüm

1
Identify the storage locations that lose data almost instantaneously during system execution.
CPU registers and processor cache are prioritized first.
Processor registers and cache change constantly with every instruction cycle and are the most transient data sources.
2
Identify active main memory components that require continuous power.
System RAM is placed second.
Main physical RAM holds active network connections and process structures that disappear upon power loss.
3
Identify temporary virtual memory artifacts stored on persistent media.
Pagefile / Swap space is placed third.
Swap files exist on local hard drives or solid-state drives, making them persistent across reboots despite holding temporary memory structures.
4
Identify long-term static archival media.
Off-site archival backup tape is placed last as the least volatile.
Offline backup media retains data persistently over years without requiring power or active system interaction.

Anahtar Kavram

Order of Volatility in Digital Forensics
Soru 225Soru

Following the detection of suspicious command-and-control beaconing, an enterprise incident response team completes short-term network isolation of a compromised hypervisor host managing critical cloud workloads. The analyst verifies that lateral movement has been halted and containment boundaries are holding. According to standard NIST incident response lifecycle guidelines, which action should the incident response team execute NEXT before initiating eradication procedures?

Cevabı ve açıklamayı göster

Cevap: Acquire volatile memory dumps and cryptographic forensic images of the host to preserve digital evidence.

Cevap

Acquire volatile memory dumps and cryptographic forensic images of the host to preserve digital evidence.
Under NIST SP 800-61 (Handling Computer Security Incidents), once an infected host is isolated to contain an incident, the team must preserve volatile memory (RAM) and generate forensic disk images before modifying host state. This ensures digital evidence is retained for root-cause analysis and potential legal proceedings prior to starting eradication.

Adım Adım Çözüm

1
Identify the current phase in the NIST SP 800-61 Incident Response Lifecycle.
The scenario states that short-term network containment has just been successfully established.
Understanding the precise boundary within the Containment, Eradication, and Recovery phase dictates the sequential next step.
2
Determine the necessary sub-step prior to system modification or remediation.
Preserving volatile artifacts (RAM) and acquiring forensic disk images must occur while the system remains isolated.
Executing eradication or rebooting the host before memory acquisition destroys volatile evidence critical for forensic root-cause analysis.
3
Select the option aligned with evidence retention within the containment phase.
Capturing volatile memory and disk forensic images is the correct immediate action.
This maintains chain of custody and adheres to NIST IR playbook sequence rules.

Anahtar Kavram

NIST Incident Response Lifecycle (Containment & Evidence Preservation Order)
Soru 226Soru

Following a high-severity alert indicating unauthorized root-level execution on a enterprise hypervisor server, a security analyst is assigned to preserve digital evidence from the active physical host. Which of the following initial steps must the analyst perform to preserve evidence integrity and adhere to forensic best practices? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Capture the running system's RAM and active network connections prior to acquiring persistent storage images; Calculate cryptographic hashes for all acquired evidence immediately after capture and document them in the chain of custody log

Cevap

The analyst should capture the running system's RAM and active network connections before imaging persistent storage, and calculate cryptographic hashes immediately after acquisition while recording them in the chain of custody documentation.
Preserving volatile system memory and active network connections prior to persistent storage imaging correctly adheres to the forensic Order of Volatility. Generating cryptographic hashes immediately following acquisition and logging them in the chain of custody establishes verifiable evidence integrity.

Adım Adım Çözüm

1
Identify and capture evidence according to the forensic Order of Volatility.
System RAM and active network sockets are preserved before non-volatile storage is touched.
Volatile data is lost as soon as system power state or process state changes.
2
Compute cryptographic checksums (e.g., SHA-256) for all collected memory dumps and storage images.
An baseline hash value is established for each evidence file.
Comparing hash values later verifies evidence integrity and proves no alterations occurred during transport or analysis.
3
Log all hash values, acquisition timestamps, and handler details into the chain of custody record.
A complete, legally defensible chain of custody record is maintained.
Forensic evidence requires unbroken documentation to remain admissible in legal or compliance proceedings.

Anahtar Kavram

Digital Forensics Order of Volatility and Chain of Custody Integrity Verification
Soru 227Soru

A security analyst is investigating a compromised cloud-hosted Linux virtual machine suspected of participating in an ongoing data exfiltration attack. To ensure proper digital forensics and maintain legal defensibility, which of the following actions should the analyst perform during initial evidence acquisition? (Select TWO).

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

Cevabı ve açıklamayı göster

Cevap: Capture a dump of system memory (RAM) prior to modifying storage states or powering off the virtual machine; Calculate cryptographic hash values for captured forensic images immediately after acquisition and log them in the custody record

Cevap

The correct procedures are to capture a dump of system memory (RAM) prior to modifying storage states or powering off the virtual machine, and to calculate cryptographic hash values for captured forensic images immediately after acquisition and log them in the custody record.
Adhering to the Order of Volatility dictates that volatile RAM must be dumped before system shutdown or storage modifications. Additionally, calculating cryptographic hashes immediately after evidence acquisition and recording them in the chain of custody log proves that evidence integrity was preserved throughout handling.

Adım Adım Çözüm

1
Apply the Order of Volatility during evidence collection
System RAM is dumped while the virtual machine is live to prevent loss of volatile network sockets, running process structures, and transient data.
Volatile memory is lost when power state changes, making RAM capture a top priority before disk analysis or host power-down.
2
Verify and log evidence integrity for the chain of custody
Cryptographic hash values (e.g., SHA-256) are generated immediately upon evidence acquisition.
Recording hashes at the time of intake proves that the forensic copy has not been altered or tampered with at any point in the investigation.

Anahtar Kavram

Order of Volatility and Evidence Integrity Logging
Tahmini Süre:1m 30s
Soru 228Soru

A Security Operations Center (SOC) analyst is reviewing raw log telemetry streams collected from web servers, authentication systems, and perimeter firewalls inside a SIEM environment. Match each log snippet pattern on the left with its corresponding attack vector or security event classification on the right.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

GET /products.php?id=1%20UNION%20SELECT%201,username,password_hash%20FROM%20users-- HTTP/1.1 200 4520
EventID=4625 Status=0xC000006D SubStatus=0xC000006A TargetUserName=svc_backup WorkstationName=WORKSTATION01 (occurring 400 times in 30 seconds across distinct target endpoints)
kernel: IPTables-DROP-FORWARD: IN=eth0 OUT=eth1 SRC=10.0.4.15 DST=192.168.10.50 PROTO=TCP SPT=49812 DPT=445 FLAGS=SYN
GET /user/profile?id=1042 HTTP/1.1 200 -> GET /user/profile?id=1043 HTTP/1.1 200 -> GET /user/profile?id=1044 HTTP/1.1 200 (from authenticated session Cookie: sessionid=a9f8b2)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Each log entry pattern corresponds to a specific attack taxonomy: Log 1 matches SQL Injection data exfiltration; Log 2 matches Password spraying authentication attack; Log 3 matches Internal lateral movement network boundary drop; Log 4 matches Insecure Direct Object Reference (IDOR) authorization bypass.
The correct matches accurately map log syntax and operational telemetry to their definitive attack classifications based on payload structure, protocol ports, and event codes.

Adım Adım Çözüm

1
Analyze the web application log payload structure in the first log snippet.
Identified 'UNION SELECT' syntax targeting database tables, indicating SQL Injection.
URL parameters containing SQL syntax reveal attempts to force the database backend to execute arbitrary queries.
2
Evaluate the Windows Security Log event parameters and frequency in the second snippet.
Identified Event ID 4625 with SubStatus 0xC000006A repeated across multiple endpoints, indicating password spraying.
A single account attempted across many endpoints in a short window avoids single-host lockout policies while testing credentials broadly.
3
Inspect the network firewall drop log syntax in the third snippet.
Identified internal IP to internal IP traffic blocked on SMB port 445.
Internal segmentation drops on management/sharing ports indicate unauthorized lateral movement attempts within internal zones.
4
Examine the sequential URL access pattern in the fourth log snippet.
Identified automated/manual increment of object identifiers using a single authenticated session, indicating IDOR.
Accessing contiguous resource IDs without authorization parameter checks is a classic signature of broken object-level authorization.

Anahtar Kavram

Log Correlation and Telemetry Pattern Identification
Soru 229Soru

A Security Operations Center (SOC) analyst receives a high-severity alert indicating that a powershell process on an internal endpoint is performing process injection into system memory. The analyst needs to immediately contain the active threat and prevent potential lateral movement across the internal network while maintaining remote administrative management to investigate the endpoint. Which of the following actions performed via an Endpoint Detection and Response (EDR) agent best achieves this goal?

Cevabı ve açıklamayı göster

Cevap: Apply host network isolation to sever standard network communications while preserving agent telemetry and management connectivity.

Cevap

Apply host network isolation via the EDR agent to cut standard host network access while preserving agent-to-console management connectivity.
Host network isolation executed by an EDR agent restricts all network traffic to and from the affected endpoint at the host network driver layer, preventing lateral movement across the network while keeping the EDR agent's communication channel open for remote investigation and response.

Adım Adım Çözüm

1
Analyze incident containment requirements
Identified the need to block lateral network traffic immediately while retaining remote analyst access.
Preventing attack spread is critical during memory injection threats, but losing remote access prevents incident investigation.
2
Evaluate EDR endpoint control features
Host network isolation selectively isolates network interfaces at the OS endpoint driver level while maintaining the EDR management channel.
EDR agents are specifically designed to implement host isolation without severing the security management telemetry link.

Anahtar Kavram

EDR Host Network Isolation
Soru 230Soru

A security analyst discovers that a developer's API key was publicly exposed in a code repository and is actively being used by an unauthorized external entity to read data from a cloud storage bucket. According to standard incident response playbooks, which of the following immediate CONTAINMENT steps should the analyst take? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Revoke or disable the compromised API key immediately to terminate unauthorized access.; Apply an explicit firewall or security group rule to block traffic from the attacker's external IP address.

Cevap

The analyst should immediately revoke the compromised API key and block the attacker's external IP address.
During the containment phase of the incident response lifecycle, the primary goal is to prevent further exposure and stop active malicious activity. Revoking the exposed API key immediately invalidates the attacker's authentication material, while blocking the malicious IP address prevents further inbound traffic from that vector.

Adım Adım Çözüm

1
Identify the immediate containment objective
Determine that active data access via the stolen credential must be stopped without delay.
Containment limits the scope and impact of an active incident before proceeding to eradication.
2
Select appropriate containment controls
Disabling the compromised API key invalidates the authentication token, and blocking the source IP mitigates incoming request traffic.
These actions stop the attack vector immediately while preserving system availability for non-compromised services.

Anahtar Kavram

Incident Response Containment Phase
Soru 231Soru

A digital forensics investigator takes possession of a storage drive seized during an internal security investigation. What is the primary purpose of completing a chain of custody document for this evidence?

Cevabı ve açıklamayı göster

Cevap: To maintain a continuous, chronological record of every person who collected, handled, transferred, and stored the evidence

Cevap

To maintain a continuous, chronological record of every person who collected, handled, transferred, and stored the evidence
The primary objective of maintaining a chain of custody document is to create an unbroken, verifiable log showing who collected, received, secured, and transferred evidence. This documentation proves that evidence was safeguarded against contamination or unauthorized access, satisfying legal requirements for court admissibility.

Adım Adım Çözüm

1
Identify the primary purpose of chain of custody in digital forensics
Chain of custody ensures legal defensibility by tracking evidence custody and preventing allegations of tampering.
Courtroom evidence admissibility requires proof of who collected, accessed, and secured the evidence at all times.
2
Evaluate the option choices against forensics definitions
The option stating that chain of custody maintains a continuous, chronological record of handling matches standard forensic evidence procedures.
Other options confuse chain of custody with cryptographic controls (digital signatures, hashing) or live data collection procedures (order of volatility).

Anahtar Kavram

Chain of Custody Documentation
Soru 232Soru

During a threat hunting exercise on an enterprise Linux application server hosting a mission-critical web service, a security analyst analyzes host telemetry. While network perimeter security controls inspect traffic as encrypted HTTPS over TCP port 443, the Endpoint Detection and Response (EDR) agent captures a process creation event where the primary web service daemon spawned an unauthorized bash shell, which subsequently loaded an obfuscated binary payload into volatile shared memory (`/dev/shm`). The analyst must halt the active command-and-control (C2) session and eradicate the malicious code execution immediately without causing downtime for legitimate external application users. Which of the following capabilities provided by the EDR platform should the analyst utilize to accomplish this objective?

Cevabı ve açıklamayı göster

Cevap: Perform targeted process-tree termination and executable hash blocking for the spawned shell and memory-resident binary.

Cevap

Terminating the specific malicious process tree and blocking the binary execution hash directly via the EDR agent isolates the threat while preserving web daemon availability.
Process-tree termination and hash blocking leverages the continuous behavioral telemetry of EDR to target and kill only the rogue child process lineage (`bash` and the `/dev/shm` payload) while keeping the underlying web daemon operational.

Adım Adım Çözüm

1
Analyze the process lineage telemetry provided by the EDR host agent.
Identify that the parent web daemon spawned an unauthorized child shell executing a fileless payload in memory.
EDR agents capture continuous kernel-level process relationships that perimeter devices cannot see.
2
Evaluate the operational constraint requiring zero service downtime for legitimate web users.
Rule out host-wide containment actions like full network isolation or host shutdown.
Host network isolation severs all user connections to the web daemon.
3
Apply targeted endpoint mitigation controls.
Kill the spawned bash shell and memory-resident child processes, then apply hash-based block rules in the EDR console.
Process-level termination selectively neutralizes the adversary's C2 channel while keeping the parent service alive.

Anahtar Kavram

EDR Fine-Grained Process Containment vs. Host Isolation
Soru 233Soru

A security analyst is designing an enterprise vulnerability assessment strategy for a network that includes legacy operational technology (OT) control systems, web applications, and sensitive database servers. The analyst must achieve maximum vulnerability visibility while minimizing the risk of unexpected service disruptions or system crashes. Which of the following technical scanning approaches should the security team implement to meet these requirements? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Perform credentialed vulnerability scans using read-only service accounts during established maintenance windows for server infrastructure.; Utilize non-intrusive passive vulnerability scanning and network traffic monitoring for the sensitive operational technology (OT) segments.

Cevap

The security team should perform credentialed scans using read-only service accounts during maintenance windows and utilize non-intrusive passive vulnerability scanning for legacy operational technology segments.
Performing credentialed scans using read-only service accounts provides detailed insight into local software vulnerabilities and patch statuses while placing minimal stress on network bandwidth. For sensitive operational technology (OT) environments, passive vulnerability scanning captures and analyzes existing traffic to discover vulnerabilities without sending active probes that might crash fragile industrial controllers.

Adım Adım Çözüm

1
Analyze environmental constraints and safety requirements
Identified sensitive OT systems that cannot handle aggressive network probing and production servers requiring thorough evaluation without service disruption.
OT devices often use fragile protocol implementations that freeze when subjected to port scans or active probes.
2
Evaluate scanning methodologies for host infrastructure
Selected credentialed scanning during maintenance windows.
Credentials grant direct OS-level access to audit configuration and software inventories accurately without generating high network traffic or false positives.
3
Evaluate scanning methodologies for delicate OT infrastructure
Selected passive scanning / network traffic analysis.
Passive scanners observe network traffic passively to detect OS versions and vulnerable services without transmitting packets that could destabilize OT controllers.

Anahtar Kavram

Credentialed vs. Non-Credentialed Scanning and Passive OT Vulnerability Assessment
Soru 234Soru

A Security Operations Center (SOC) analyst detects an active, verified security incident where an adversary is utilizing a compromised internal jump server to maintain an unauthorized encrypted SSH tunnel to an external command-and-control IP address. The analyst has confirmed that sensitive data is actively being transferred across this channel. According to standard incident response lifecycle frameworks, which of the following actions should the analyst take FIRST?

Cevabı ve açıklamayı göster

Cevap: Disconnect or isolate the compromised jump server from the network segment to halt active data exfiltration.

Cevap

Disconnect or isolate the compromised jump server from the network segment to halt active data exfiltration.
Isolating the compromised host from the network represents the containment phase of the NIST incident response framework. When an active data exfiltration channel is identified, the immediate objective is to stop further loss of sensitive information and prevent lateral movement before proceeding to eradication and remediation steps.

Adım Adım Çözüm

1
Identify the current phase of the Incident Response (IR) lifecycle.
The incident has been detected and validated, and an ongoing breach with active data exfiltration is occurring.
Once an incident is confirmed, the immediate priority shifts from Analysis to Containment to limit scope and damage.
2
Select the appropriate action matching the Containment phase.
Network isolation of the jump server stops the active SSH tunnel and outbound exfiltration.
Containment actions must take precedence over Eradication (re-imaging) and Recovery steps.

Anahtar Kavram

Incident Response Lifecycle Phase Order (NIST SP 800-61 Rev. 2)
Tahmini Süre:1m 30s
Soru 235Soru

Match each security log entry or SIEM telemetry event to the attack vector or operational activity it most accurately demonstrates.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

GET /catalog.php?cat_id=5%20UNION%20SELECT%20table_name,column_name%20FROM%20information_schema.tables-- HTTP/1.1 200
sshd[8841]: Failed password for root from 198.51.100.77 port 41202 ssh2 (Frequency: 850 events / 60 seconds)
DENY TCP src=203.0.113.19:54112 dst=10.0.4.15:3389 action=drop interface=WAN_IN
SIEM_RULE_104: High-frequency TXT query requests for subdomains under *.malicious-dns.net carrying encoded payload strings from internal host 10.0.1.22

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Matching pairs: Web log with UNION SELECT matches SQL Injection (SQLi); SSH failed password burst matches SSH Automated Password Guessing (Brute Force); Firewall drop on TCP port 3389 matches Blocked Unauthorized RDP Access Attempt; High-volume encoded DNS TXT queries match DNS Tunneling / Covert Data Exfiltration.
Each log line provides specific indicators of compromise (IoCs): database keywords indicate SQL injection; high-rate SSH authentication failure indicates brute force; firewall drops on port 3389 indicate blocked remote access attempts; and continuous encoded DNS query patterns indicate DNS tunneling.

Adım Adım Çözüm

1
Analyze the web server log entry containing URL query parameters.
Identified 'UNION SELECT' syntax targeting database tables, indicating SQL Injection (SQLi).
Attackers inject database queries into input parameters to extract unauthorized data.
2
Examine the SSH daemon authentication log snippet and timestamp frequency.
Identified 850 failed root password attempts in 60 seconds, indicating SSH Automated Password Guessing (Brute Force).
Rapid successive authentication failures from a single host demonstrate automated dictionary or brute-force attacks.
3
Evaluate the firewall packet filtering log telemetry.
Identified dropped inbound traffic on destination port 3389, indicating Blocked Unauthorized RDP Access Attempt.
TCP port 3389 is the default port for Remote Desktop Protocol, and the DENY action reflects perimeter firewall mitigation.
4
Inspect the SIEM correlation alert for outbound protocol anomalies.
Identified repeated encoded TXT sub-domain queries, indicating DNS Tunneling / Covert Data Exfiltration.
DNS tunneling encodes arbitrary payload data inside subdomains or TXT records to bypass standard security filters.

Anahtar Kavram

Log Analysis and SIEM Correlation
Tahmini Süre:1m 30s
Soru 236Soru

A cloud incident handler detects active unauthorized API activity within a production cloud tenant. Investigation reveals that a developer accidentally committed an administrative API key to a public code repository, allowing an external threat actor to deploy unauthorized compute instances and initiate unauthorized data export jobs. The handler has verified the malicious activity in the cloud provider's audit logs. According to standard incident response lifecycle guidelines, which of the following actions should the handler take FIRST to contain the threat?

Cevabı ve açıklamayı göster

Cevap: Revoke the compromised API key and invalidate all active session tokens generated by that key.

Cevap

Revoke the compromised API key and invalidate all active session tokens generated by that key.
According to NIST SP 800-61 and standard incident response playbooks, when an active security breach involves stolen or leaked credentials, the immediate priority during the Containment phase is to disable or revoke those credentials and invalidate active session tokens. This immediately halts the threat actor's ability to issue management commands without altering system state needed for forensics or jumping ahead to recovery.

Adım Adım Çözüm

1
Identify the current incident response phase required by the scenario.
The scenario describes an active breach in progress, indicating an urgent requirement for the Containment phase of the incident response lifecycle.
Containment limits the scope and impact of an incident by preventing further unauthorized actions while preserving evidence for forensic analysis.
2
Evaluate the primary attack vector powering the ongoing intrusion.
The attacker relies on a valid, publicly exposed administrative API key for authentication.
Without valid credentials, the attacker cannot invoke cloud provider management APIs or perform unauthorized operations.
3
Select the immediate containment action that stops credential misuse.
Revoking the compromised API key and terminating associated active sessions immediately stops the attack vector.
Credential revocation neutralizes active session privileges without modifying evidence or prematurely jumping to recovery and post-incident steps.

Anahtar Kavram

Incident Response Lifecycle - Containment Phase
Tahmini Süre:2m 0s
Soru 237Soru

During an active incident response investigation involving an enterprise server suspected of executing malware in memory, a technician is instructed to power down the server immediately and pull the primary storage drive to generate a bit-stream disk image prior to capturing any system RAM or running processes. Which digital forensics principle is directly violated by executing this instruction?

Cevabı ve açıklamayı göster

Cevap: Order of volatility

Cevap

Order of volatility
The correct answer identifies the order of volatility principle. Volatile data, such as system RAM, routing tables, and running processes, is permanently lost when a system is powered off or when non-volatile storage is prioritized over live memory collection. Therefore, investigators must always acquire the most volatile evidence first.

Adım Adım Çözüm

1
Identify the forensic collection sequence described in the scenario
The technician is attempting to capture non-volatile disk storage before preserving volatile system RAM and running processes.
Forensic evidence collection must follow strict sequencing rules to avoid losing ephemeral evidence.
2
Apply the standard Order of Volatility principles
Volatile memory (CPU registers, cache, RAM) is lost upon shutdown, whereas disk drives preserve data across power cycles.
Preserving RAM before shutting down or acquiring disk images ensures critical active memory evidence is captured.

Anahtar Kavram

Order of Volatility
Soru 238Soru

A security engineer is reviewing correlated telemetry in a SIEM console containing the following web application firewall (WAF) and database audit events:

text
2026-07-27T14:15:02Z waf01 http_request client_ip=198.51.100.44 uri="/api/v1/catalog" status=200 payload="' UNION SELECT username, password_hash FROM accounts--"
2026-07-27T14:15:02Z db01 query_exec db_user="app_service" query="SELECT * FROM products WHERE category = '' UNION SELECT username, password_hash FROM accounts--'" rows_returned=1420

Which of the following attack vectors was successfully executed against the application based on these log entries?

Cevabı ve açıklamayı göster

Cevap: SQL injection bypassing query logic to exfiltrate unauthorized database records.

Cevap

SQL injection bypassing query logic to exfiltrate unauthorized database records.
The WAF log captures a classic SQL injection vector (`UNION SELECT`), and the correlated database audit log shows that the query executed successfully (`rows_returned=1420`). This proves an SQL injection attack successfully extracted data from the database.

Adım Adım Çözüm

1
Analyze the WAF log payload
The HTTP request payload contains `' UNION SELECT username, password_hash FROM accounts--`, which is SQL syntax designed to join additional query results.
Identifying SQL syntax in HTTP parameters pinpoints a database-targeted attack vector.
2
Correlate the WAF entry with the backend database audit log
The database log shows the exact injected string integrated into the executed query (`query_exec`) returning 1420 rows with a status of HTTP 200.
Matching timestamps and matching query strings across WAF and DB logs confirms successful server-side execution and data retrieval.

Anahtar Kavram

Correlating WAF payloads with database execution logs to detect SQL Injection
Soru 239Soru

A security analyst takes possession of a physical hard drive seized during a breach investigation. Which of the following actions must the analyst take to maintain a valid chain of custody and preserve evidence integrity? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Document the item serial number, acquisition timestamp, and handler details in the custody log.; Calculate and record cryptographic checksums of the media immediately following acquisition.

Cevap

The investigator must document device identification metadata and transfer history in the chain of custody log, as well as calculate and log cryptographic hash values upon acquisition.
Maintaining a complete log of evidence transfers with serial numbers and computing cryptographic hash digests upon acquisition together ensure both legal accountability and mathematical proof of evidence immutability.

Adım Adım Çözüm

1
Identify the mandatory administrative requirements for forensic evidence handling.
Chain of custody forms must track who collected the evidence, when it was acquired, item serial numbers, and all subsequent transfers.
Accurate logging ensures evidence remains legally admissible in court.
2
Identify technical controls required to prove bit-stream evidence integrity.
Cryptographic hashes (such as SHA-256) are calculated immediately upon acquisition and compared against subsequent copies.
Matching hash values demonstrate that the evidence was not modified during storage or analysis.

Anahtar Kavram

Chain of Custody and Evidence Integrity Verification
Soru 240Soru

During an security incident, an incident response team has successfully isolated an infected enterprise application server from the internal network. According to standard incident response lifecycle frameworks, which of the following actions represents the primary goal of the eradication phase?

Cevabı ve açıklamayı göster

Cevap: Eliminating the root cause of the incident by removing malware, revoking compromised credentials, and patching vulnerabilities

Cevap

The primary goal of the eradication phase is eliminating the root cause of the incident by removing malware, revoking compromised credentials, and patching vulnerabilities.
The eradication phase in standard incident response frameworks (e.g., NIST SP 800-61) is dedicated to identifying and removing all components of the threat actor's presence. This includes deleting malware, closing exploited vulnerabilities, and revoking compromised access credentials before proceeding to recovery.

Adım Adım Çözüm

1
Identify the current incident response phase based on the scenario state.
The server has been contained (isolated), so the team transitions to the eradication phase.
Containment limits damage, but the root cause of compromise remains on the host until removed.
2
Determine the specific objectives of the eradication phase in standard frameworks (such as NIST SP 800-61).
Eradication requires deleting malicious software, removing rogue user accounts, disabling compromised API keys, and mitigating underlying vulnerabilities.
Systems cannot be safely restored to production until all traces of adversary presence are eliminated.

Anahtar Kavram

Incident Response Lifecycle - Eradication Phase Objectives
ÖncekiSayfa 12 / 32Sonraki