How to Trace & Mitigate a Flagged Alert
5-step triage procedure for frontline IT Support when an alert fires in CrowdStrike Falcon.
Check the Action Status Header
Open the alert in Activity > Endpoint Detections and check the status header badge:
The file or script was blocked or quarantined immediately by Falcon before runtime. The host is safe. Review the source with the user, but no emergency containment is required.
The action was logged and flagged, but NOT blocked by policy. The command executed on the endpoint. Proceed through Steps 2–5 to trace the execution and apply containment if necessary.
Trace the Process Tree (Parent vs Child)
Look directly above the flagged process node in the Execution Tree to find what launched it.
CcmExec.exe(ConfigMgr / SCCM hardware inventory)services.exe(Windows System Background Services)- Authorized RMM management tools & scheduled backup scripts
- Office apps (
OUTLOOK,WINWORD,EXCEL) launching CMD/PowerShell - Web browsers (
chrome.exe,msedge.exe) spawning shell scripts - Unknown binaries executing from
C:UsersAppDataLocalTemp
Inspect Command Line Arguments
Select the flagged node in Falcon and read the full command-line string in the right-hand panel.
-enc / -EncodedCommand: Base64 payload obfuscation.DownloadString / IWR: Web cradle pulling code from internet.-ExecutionPolicy Bypass: Disabling PowerShell security controls.vssadmin delete shadows: Ransomware deleting shadow copies.
Safely decode the Base64 parameter on your local machine without executing it:
[System.Text.Encoding]::Unicode.GetString([System.Convert]::FromBase64String("PASTE_ENCODED_STRING_HERE"))
Determine the Verdict
Evaluate the activity against our operational criteria:
The parent process is an approved tool (ConfigMgr, Intune, RMM) and the command matches scheduled maintenance. -> Proceed to Path 5B (Closure).
An office macro, browser, or temp directory launched encoded commands or network downloads. -> Proceed to Path 5A (Containment & Escalation).
Execute Mitigation Procedure
Select the appropriate resolution path:
In Falcon Console, open Host Management, select the machine, and click Network Contain. This blocks lateral movement while keeping the Falcon sensor connection alive.
⚠ Do NOT reboot the computer. Rebooting purges volatile RAM memory needed for forensics.
Connect to the host using policy RTR-Win-Prod. Use get "C:pathile.ext" to pull the script or binary to the cloud. (memdump is disabled by policy to prevent endpoint freezing).
Notify the SOC Lead with Hostname, Detection ID, and User Account.
Copy this standard note into the Falcon detection comment box:
Update detection status in Falcon to: Closed -> False Positive.
CrowdStrike University Learning Track
4 free foundational modules (~2h 20m total) to bring frontline IT Support up to Certified Responder standard.
FALCON 101: Platform Essentials
Console navigation, agent telemetry over outbound TCP 443, and auditing hosts in Reduced Functionality Mode (RFM).
FALCON 185: Falcon for IT Fundamentals
Asset visibility, rogue device discovery, host groups (HG-Prod-Win-Workstations), and update policies (SU-Win-Prod).
SU-Win-Prod to check version pinning across workstations and servers.
FALCON 109: Detection Methods & MITRE
Distinguishing between static file signatures (IOCs) and behavioral adversary patterns (IOAs) mapped across MITRE ATT&CK.
CCFR: Responder Practice Exam
Practice questions testing parent process trees, command lines, and containment decisions.
Operational Decision Drills
Drill 1: Encoded PowerShell from Office
Detection #812WINWORD.EXE -> powershell.exe -enc SQBFA...
What is the immediate priority action?
Drill 2: Host Returns After 35 Days
Lifecycle #545A returning laptop is absent from active Host Management due to the 30-day auto-purge. What is the procedure?