FlashGenius Logo FlashGenius
Login Sign Up

CYSA-004 Practice Questions: Incident Response and Management Domain

Test your CYSA-004 knowledge with 10 practice questions from the Incident Response and Management domain. Includes detailed explanations and answers.

CYSA-004 Practice Questions

Master the Incident Response and Management Domain

Test your knowledge in the Incident Response and Management domain with these 10 practice questions. Each question is designed to help you prepare for the CYSA-004 certification exam with detailed explanations to reinforce your learning.

Question 1

Authentication artifact: 08:01 Cloud IdP: user jpatel successful login from 203.0.113.44 (New York) 08:03 SaaS CRM access using same session token from 198.51.100.20 (London) 08:04 VPN log: jpatel connected to corporate VPN egress node 198.51.100.20 08:05 No MFA failures; user is assigned an always-on VPN profile The SIEM opened an impossible-travel alert. What is the BEST next step?

A) Disable the account and revoke all tokens immediately

B) Declare a confirmed account-takeover incident

C) Correlate VPN and token activity to validate whether the alert is benign

D) Acquire a forensic image of the user's laptop first

Show Answer & Explanation

Correct Answer: C

Explanation:

Correct answer (C): This alert has a plausible benign explanation already visible in the artifact: the London IP is the corporate VPN egress node, and the user has an always-on VPN profile. In CySA+ triage, an alert is not automatically a confirmed incident. The best next step is to correlate the VPN, identity, and SaaS activity to validate whether the session behavior is expected before taking disruptive response actions.

Why the other options are wrong:
- Option A: Immediate account disablement may be appropriate for a confirmed compromise, but the current evidence suggests a likely benign cause and does not justify that disruption yet.
- Option B: Declaring a confirmed incident is premature because the artifact includes context that may fully explain the apparent impossible travel.
- Option D: Forensic imaging is premature because the analyst has not yet confirmed malicious activity on the endpoint.

Question 2

A SOC analyst reviews the following identity events for a payroll administrator account. The user is not traveling and normally signs in only from the local office. Authentication timeline: 08:11 VPN login user=payadmin src=198.51.100.24 country=DE result=SUCCESS 08:12 MFA push approved user=payadmin 08:14 Cloud admin action: mailbox search role granted to payadmin 08:18 Share export user=payadmin volume=1.8GB target=payroll-data The organization's playbook says privileged account misuse involving payroll data requires immediate escalation when confidence is high. How should the analyst classify this incident?

A) Low severity suspicious login; monitor for another sign-in before escalating

B) Medium severity authentication anomaly; open a ticket and wait for user confirmation

C) High severity likely account compromise; activate the identity IR playbook immediately

D) Informational cloud event; wait for endpoint telemetry before taking action

Show Answer & Explanation

Correct Answer: C

Explanation:

Correct answer (C): This should be treated as a high-severity likely compromise. The analyst has multiple corroborating indicators, not just a single anomalous login: a successful foreign login for a non-traveling privileged user, approved MFA, suspicious privilege-related activity, and large access to sensitive payroll data. In CySA+, severity is based on confidence, asset sensitivity, active attacker behavior, and business impact. The playbook also explicitly says this combination requires immediate escalation.

Why the other options are wrong:
- Option A: This underestimates the situation. The account is privileged, the activity already succeeded, and sensitive payroll data was accessed, so waiting for another sign-in would delay necessary response.
- Option B: User confirmation can help in lower-confidence cases, but this scenario already provides high-confidence indicators and an explicit playbook trigger for immediate escalation.
- Option D: Endpoint telemetry could add context, but it is not required before acting here. The identity and cloud activity already provides strong evidence of active misuse.

Question 3

A cloud analyst is investigating suspected misuse of a backup account. Current evidence is below: 14:22 iam-user backup-admin created a new access key 14:24 Access key used from 198.51.100.71 14:26 Snapshot of customer-db volume shared to external account 777788889999 14:29 Emergency policy blocks additional snapshot sharing Counsel note: Legal hold applies. Preserve relevant evidence. The analyst can export logs, snapshot resources, and disable the compromised key. What is the best next step?

A) Delete the new access key and terminate any related instances right away

B) Export relevant audit logs and resource snapshots, document custody, then disable the compromised key

C) Ask the cloud provider to investigate because the provider owns the platform logs

D) Rotate all tenant credentials before preserving any case evidence

Show Answer & Explanation

Correct Answer: B

Explanation:

Correct answer (B): Because additional sharing has already been blocked and legal hold applies, the analyst should preserve relevant cloud evidence in a defensible manner before taking destructive actions. Exporting audit logs and resource snapshots, documenting chain of custody, and then disabling the compromised key balances preservation with targeted containment. Cloud provider controls do not remove the customer's investigation responsibilities.

Why the other options are wrong:
- Option A: Immediate deletion and termination are destructive and could eliminate evidence needed under legal hold. The scenario explicitly highlights preservation requirements.
- Option C: The cloud provider does not remove the customer's responsibility to investigate identities, configurations, workloads, and access within the customer environment.
- Option D: Broad credential rotation may later be appropriate, but doing it before preserving evidence can complicate the investigation and is not the most targeted next step.

Question 4

A payment application runs in containers in a managed cluster. The IR lead says the immediate goal is to preserve short-lived evidence before the compromised pod disappears. Kubernetes audit excerpt: - 15:01 pod pay-api-7d9f created in prod-pay - 15:02 exec into pod from CI service account svc-ci-build - 15:03 curl to 198.51.100.44/upload - 15:04 container writes /tmp/customer.csv Context: - Failed pods are terminated after 5 minutes - No node shell access is available - Cloud audit logs and cluster metadata are available What is the best next action?

A) Restart the deployment so a clean pod replaces the suspicious one

B) Export pod logs and metadata, copy the /tmp file, and preserve related audit logs immediately

C) Block the external IP at the perimeter and wait for a host-level forensic image

D) Delete the CI service account and rebuild the cluster after business hours

Show Answer & Explanation

Correct Answer: B

Explanation:

Correct answer (B): The best next action is to preserve the pod's short-lived evidence immediately. The stem explicitly prioritizes preservation before the compromised pod disappears, and the environment is ephemeral. Exporting pod logs and metadata, copying the suspicious file, and preserving related cluster and cloud audit records captures evidence that may be lost within minutes. Restarting, deleting identities, or waiting for host-level imaging would risk losing the most relevant artifacts and would not fit the access constraints described.

Why the other options are wrong:
- Option A: Restarting the workload may remove the compromised pod before key evidence is collected.
- Option C: Blocking the IP may help containment, but the stem prioritizes preservation of ephemeral evidence first, and waiting for a host image is not practical here.
- Option D: Deleting identities and rebuilding are eradication steps that would alter the environment before evidence is preserved.

Question 5

An analyst is mapping an intrusion to MITRE ATT&CK using the following timeline: 07:41 User opened Benefits_Update.html 07:43 mshta.exe launched powershell.exe 07:45 rundll32.exe accessed LSASS memory and wrote a dump file 07:47 A new service named adminsvc was created on SRV-APP02 from the compromised host Which ATT&CK tactic best describes the 07:45 activity?

A) Credential Access

B) Discovery

C) Persistence

D) Exfiltration

Show Answer & Explanation

Correct Answer: A

Explanation:

Correct answer (A): Accessing LSASS memory to dump credentials is a classic credential theft behavior. In MITRE ATT&CK, that aligns with the Credential Access tactic because the attacker is trying to obtain authentication material for later movement or privilege use. This is distinct from persistence actions such as creating services.

Why the other options are wrong:
- Option B: Discovery involves learning about systems, accounts, or the environment. Dumping LSASS is more specific to stealing credentials than to general enumeration.
- Option C: Persistence refers to maintaining access over time, such as by adding services or startup entries. The LSASS dump itself is not primarily a persistence action.
- Option D: Exfiltration is the removal of data from the environment. The 07:45 event concerns credential theft, not data transfer out of the network.

Question 6

Incident timeline: 09:12 EDR alert on WIN10-HR22: WINWORD.EXE spawned powershell.exe, which downloaded hxxp://198.51.100.44/a.ps1 09:14 Analyst captured memory and exported the running process list because HR said disciplinary action may follow 09:15 User is still logged in and the host remains connected to the corporate LAN 09:16 No other related alerts are visible yet What should the analyst do NEXT?

A) Reboot the host to stop the script

B) Isolate the host from the network

C) Delete the email from all user mailboxes

D) Start the lessons-learned meeting

Show Answer & Explanation

Correct Answer: B

Explanation:

Correct answer (B): The analyst already preserved the volatile evidence most likely to be lost by changing system state. The next priority is containment, so isolating the host from the network is the best action. That limits further command-and-control activity or lateral movement while avoiding unnecessary destruction of remaining evidence. This reflects the normal CySA+ sequencing of detection and analysis, evidence preservation when needed, then containment before eradication and recovery.

Why the other options are wrong:
- Option A: Rebooting might interrupt the script, but it changes system state and can destroy volatile evidence. It is not the best next step when containment can be achieved more safely through isolation.
- Option C: Deleting the phishing email could be useful later for broader remediation, but it does not immediately contain the already-compromised endpoint in the stem.
- Option D: Lessons learned is a post-incident activity performed after containment, eradication, recovery, and validation.

Question 7

Artifact: 14:05 Counsel notice: "Legal hold is now in effect for the suspected insider case involving user mlee. Preserve potentially relevant email, endpoint images, proxy logs, and file access logs for the defined scope." 14:06 Backup policy note: email retention cleanup runs at 00:00 14:06 Proxy logs roll every 12 hours 14:07 Manager asks what to do next What should the analyst do?

A) Suspend routine deletion for the defined scope and preserve the identified evidence sources immediately

B) Continue normal retention and rely on tomorrow's backups to capture anything still needed

C) Reimage the user's laptop at once so the employee cannot alter data before HR is notified

D) Send the full case details to all IT teams so everyone knows not to delete anything locally

Show Answer & Explanation

Correct Answer: A

Explanation:

Correct answer (A): Once a legal hold is in effect, potentially relevant data in scope must be preserved and routine deletion or alteration must stop for that scope. The scenario also shows imminent retention loss for email and proxy logs, so immediate preservation is required. Broad disclosure is unnecessary, and destructive actions like reimaging would undermine the hold.

Why the other options are wrong:
- Option B: Waiting for normal backups risks losing data that will be deleted or rolled over before the next cycle.
- Option C: Reimaging can destroy evidence and conflicts with the preservation requirement stated by counsel.
- Option D: Need-to-know still applies; broad distribution of case details is not the best preservation action.

Question 8

An application server is nearing return to service after a malware incident. The current checklist shows: - Malicious files removed from APP-07 - User passwords reset - Temporary firewall blocks still active - Containment complete - Planned production return at 18:00 What is the most important action before APP-07 is returned to production?

A) Verify scheduled tasks, startup entries, and unauthorized accounts are absent and monitor for recurrence

B) Remove all temporary firewall blocks first so application testing is easier

C) Start the root cause analysis meeting before validating the host state

D) Restore the last backup even though the system is already cleaned

Show Answer & Explanation

Correct Answer: A

Explanation:

Correct answer (A): Recovery is not complete just because obvious malicious files were removed. Before returning a system to production, analysts should verify that persistence mechanisms and unauthorized access paths are gone and that monitoring is in place to detect recurrence. That confirms eradication was actually successful.

Why the other options are wrong:
- Option B: Removing temporary controls before validation may expose the environment too early. Testing should not replace assurance that the threat is gone.
- Option C: Root cause analysis is valuable, but it is a post-incident activity and should not replace technical validation before return to service.
- Option D: Restoring from backup may be appropriate in some cases, but the stem says the host is already cleaned. The more important remaining task is validation of eradication and persistence removal.

Question 9

Severity matrix excerpt: - Critical: Tier-1 asset compromise OR confirmed regulated data exposure affecting more than 100 records - High: Sensitive business system compromise OR disruption affecting more than 25 users - Medium: Single user or system compromise with limited impact - Low: Blocked activity with no impact Incident details: EDR confirmed malicious remote access on FIN-PRD-DB01, a tier-1 payroll database. Investigators verified that 350 employee records containing SSNs were queried and exported to an external IP. What severity should the analyst assign?

A) Low

B) Medium

C) High

D) Critical

Show Answer & Explanation

Correct Answer: D

Explanation:

Correct answer (D): The incident meets the matrix's Critical criteria in two separate ways: it involves a tier-1 asset and confirmed exposure of regulated data affecting more than 100 records. This teaches an important CySA+ principle: severity is based on stated impact, scope, data sensitivity, and asset criticality, not just the presence of malware or remote access.

Why the other options are wrong:
- Option A: Low applies to blocked activity with no impact, which is the opposite of a confirmed compromise and export of SSNs.
- Option B: Medium is for limited impact to a single user or system. The stated business criticality and data exposure make that too low.
- Option C: High understates the incident because the provided matrix explicitly defines this scenario as Critical.

Question 10

A SOC analyst receives the following EDR alert for a production laptop used by the Finance director: 09:14 WINWORD.EXE spawned powershell.exe 09:15 powershell.exe connected to 185.77.1.24:443 09:16 EDR automatic memory capture: SUCCESS 09:17 User still connected to corporate VPN The analyst has high confidence malware executed. The immediate goal is to prevent lateral movement while keeping available evidence intact. What is the best next action?

A) Isolate the laptop from the network using the EDR platform

B) Reboot the laptop to stop the suspicious process chain

C) Delete the suspected malware files from the user profile

D) Ask the user to continue working while the SOC monitors activity

Show Answer & Explanation

Correct Answer: A

Explanation:

Correct answer (A): Isolation is the best immediate containment step because the host is still connected to the VPN and evidence has already been preserved through the successful memory capture. In this scenario, preventing spread and additional command-and-control activity takes priority over cleanup. Rebooting or deleting files would alter evidence and may remove useful artifacts before analysis is complete.

Why the other options are wrong:
- Option B: Rebooting may interrupt the malware, but it destroys volatile evidence and is less controlled than network isolation.
- Option C: Deleting files is eradication, not the best first containment action. It can also remove artifacts needed for analysis.
- Option D: Leaving the user online creates unnecessary risk of lateral movement, more downloads, or data loss.

Ready to Accelerate Your CYSA-004 Preparation?

Join thousands of professionals who are advancing their careers through expert certification preparation with FlashGenius.

  • ✅ Unlimited practice questions across all CYSA-004 domains
  • ✅ Full-length exam simulations with real-time scoring
  • ✅ AI-powered performance tracking and weak area identification
  • ✅ Personalized study plans with adaptive learning
  • ✅ Mobile-friendly platform for studying anywhere, anytime
  • ✅ Expert explanations and study resources
Start Free Practice Now

Already have an account? Sign in here

About CYSA-004 Certification

The CYSA-004 certification validates your expertise in incident response and management and other critical domains. Our comprehensive practice questions are carefully crafted to mirror the actual exam experience and help you identify knowledge gaps before test day.