Hunting for Data Staging Before Exfiltration
Overview
Before exfiltrating data, adversaries typically stage collected files in a central location (MITRE ATT&CK T1074). This involves creating archives with tools like 7-Zip, RAR, or tar, consolidating files from multiple directories, and using temporary or hidden staging directories. This skill detects staging behavior by analyzing process creation logs for archiver activity, monitoring file system events in common staging paths, and identifying anomalous file consolidation patterns.
When to Use
Trigger phrases:
"hunting for data staging before exfiltration"
"Detect data staging activity before exfiltration by monitoring for archive creat"
When investigating security incidents that require hunting for data staging before exfiltration
When building detection rules or threat hunting queries for this domain
When SOC analysts need structured procedures for this analysis type
When validating security monitoring coverage for related attack techniques
Prerequisites
- EDR or Sysmon telemetry with process creation and file system events
- Windows Event Logs (Event ID 4688) or Sysmon Event ID 1, 11
- Python 3.8+ with standard library
- Access to process creation logs in JSON/CSV format
Steps
# Example: IOC detection
import re
IOC_PATTERNS = {
"ip": r"\b(?:\d{1,3}\.){3}\d{1,3}\b",
"domain": r"\b[a-z0-9-]+\.[a-z]{2,}\b",
"hash_md5": r"\b[a-f0-9]{32}\b",
"hash_sha256": r"\b[a-f0-9]{64}\b",
}
def extract_iocs(text: str) -> dict:
return {k: re.findall(v, text) for k, v in IOC_PATTERNS.items()}
- Detect Archive Tool Execution — Monitor for 7z.exe, rar.exe, tar, zip, and WinRAR process creation with compression arguments
- Identify Staging Directories — Flag file writes to common staging locations (Recycle Bin, %TEMP%, ProgramData, hidden directories)
- Detect Large File Consolidation — Identify patterns of multiple file reads followed by writes to a single directory
- Monitor Sensitive Path Access — Track bulk reads from document directories, database paths, and network shares
- Analyze Archive Metadata — Extract and analyze archive file sizes, creation times, and source paths
- Score Staging Risk — Apply heuristic scoring based on archive size, source diversity, staging path suspicion, and timing
- Generate Hunt Report — Produce a structured report with staging event timeline and MITRE ATT&CK mapping
Expected Output
- JSON report of detected staging events with risk scores
- Archive creation timeline with source file analysis
- MITRE ATT&CK mapping (T1074.001, T1074.002, T1560)
- Staging directory heat map showing suspicious write activity
When NOT to Use
- You're responding to a known incident (use IR skills)
- Task is about analyzing confirmed malware (use analyzing-* skills)
- You need to implement detection rules (use implementing-* skills)
- Task is about vulnerability scanning (use scanning tools)
- You don't have access to endpoint/network data
- Task requires compliance auditing (use auditing-* skills)
Red Flags
- Performing actions without explicit written authorization from the asset owner
- Testing against production systems without a defined scope and rules of engagement
- Acting on threat intelligence without validating source reliability
- Sharing classified or sensitive indicators without proper handling procedures
- Alerting threat actors to detection capabilities through visible response actions
Process
- Reconnaissance — Gather target information, identify attack surface, enumerate services
- Analysis/Exploitation — Execute the technique, analyze results, document findings
- Reporting — Document IOCs, write findings, provide remediation recommendations
Verification
- All steps executed successfully against a test environment before production use
- Output documented with screenshots or logs demonstrating expected behavior
- Results validated against known-good baselines or reference implementations
- Documentation complete enough for another analyst to reproduce findings
Anti-Rationalization Table
| Rationalization |
Reality |
| "We are too small to be targeted" |
Automated attacks target everyone. Size does not matter. |
| "Security slows us down" |
A breach slows you down 100x more. Build security in from the start. |
| "We will fix it after launch" |
Vulnerabilities in production are exploited within hours. Fix before deploy. |
1---2name: hunting-for-data-staging-before-exfiltration3description: Use when detect data staging activity before exfiltration by monitoring for archive creation with 7-Zip/RAR, unusual temp folder access, large file consolidation, and staging directory patterns via EDR and process telemetry. Use when detecting data staging activity before exfiltration by monitoring for archive.4license: Apache-2.05---678# Hunting for Data Staging Before Exfiltration910## Overview1112Before exfiltrating data, adversaries typically stage collected files in a central location (MITRE ATT&CK T1074). This involves creating archives with tools like 7-Zip, RAR, or tar, consolidating files from multiple directories, and using temporary or hidden staging directories. This skill detects staging behavior by analyzing process creation logs for archiver activity, monitoring file system events in common staging paths, and identifying anomalous file consolidation patterns.131415## When to Use16**Trigger phrases:**17- "hunting for data staging before exfiltration"18- "Detect data staging activity before exfiltration by monitoring for archive creat"192021- When investigating security incidents that require hunting for data staging before exfiltration22- When building detection rules or threat hunting queries for this domain23- When SOC analysts need structured procedures for this analysis type24- When validating security monitoring coverage for related attack techniques2526## Prerequisites2728- EDR or Sysmon telemetry with process creation and file system events29- Windows Event Logs (Event ID 4688) or Sysmon Event ID 1, 1130- Python 3.8+ with standard library31- Access to process creation logs in JSON/CSV format3233## Steps3435```python36# Example: IOC detection37import re3839IOC_PATTERNS = {40 "ip": r"\b(?:\d{1,3}\.){3}\d{1,3}\b",41 "domain": r"\b[a-z0-9-]+\.[a-z]{2,}\b",42 "hash_md5": r"\b[a-f0-9]{32}\b",43 "hash_sha256": r"\b[a-f0-9]{64}\b",44}4546def extract_iocs(text: str) -> dict:47 return {k: re.findall(v, text) for k, v in IOC_PATTERNS.items()}48```49501. **Detect Archive Tool Execution** — Monitor for 7z.exe, rar.exe, tar, zip, and WinRAR process creation with compression arguments512. **Identify Staging Directories** — Flag file writes to common staging locations (Recycle Bin, %TEMP%, ProgramData, hidden directories)523. **Detect Large File Consolidation** — Identify patterns of multiple file reads followed by writes to a single directory534. **Monitor Sensitive Path Access** — Track bulk reads from document directories, database paths, and network shares545. **Analyze Archive Metadata** — Extract and analyze archive file sizes, creation times, and source paths556. **Score Staging Risk** — Apply heuristic scoring based on archive size, source diversity, staging path suspicion, and timing567. **Generate Hunt Report** — Produce a structured report with staging event timeline and MITRE ATT&CK mapping5758## Expected Output5960- JSON report of detected staging events with risk scores61- Archive creation timeline with source file analysis62- MITRE ATT&CK mapping (T1074.001, T1074.002, T1560)63- Staging directory heat map showing suspicious write activity64## When NOT to Use6566- You're responding to a known incident (use IR skills)67- Task is about analyzing confirmed malware (use analyzing-* skills)68- You need to implement detection rules (use implementing-* skills)69- Task is about vulnerability scanning (use scanning tools)70- You don't have access to endpoint/network data71- Task requires compliance auditing (use auditing-* skills)727374## Red Flags7576- Performing actions without explicit written authorization from the asset owner77- Testing against production systems without a defined scope and rules of engagement78- Acting on threat intelligence without validating source reliability79- Sharing classified or sensitive indicators without proper handling procedures80- Alerting threat actors to detection capabilities through visible response actions8182## Process83841. **Reconnaissance** — Gather target information, identify attack surface, enumerate services851. **Analysis/Exploitation** — Execute the technique, analyze results, document findings861. **Reporting** — Document IOCs, write findings, provide remediation recommendations8788## Verification8990- All steps executed successfully against a test environment before production use91- Output documented with screenshots or logs demonstrating expected behavior92- Results validated against known-good baselines or reference implementations93- Documentation complete enough for another analyst to reproduce findings9495## Anti-Rationalization Table9697| Rationalization | Reality |98|---|---|99| "We are too small to be targeted" | Automated attacks target everyone. Size does not matter. |100| "Security slows us down" | A breach slows you down 100x more. Build security in from the start. |101| "We will fix it after launch" | Vulnerabilities in production are exploited within hours. Fix before deploy. |