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
- 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
Detection Gaps & Validation
- Archive-less staging is the #1 miss. Adversaries consolidate with
robocopy/xcopy/Copy-Item into one folder and exfil raw — no 7z.exe/rar.exe ever runs. Hunt Sysmon EID 11 (FileCreate) bursts into a single dir, not just archiver EID 1.
- Renamed archivers evade Image-name rules.
7z.exe copied to svchost.exe defeats Image=*\7z.exe. Match Sysmon EID 1 OriginalFileName and Hashes, not the on-disk name.
- Encrypted/split archives defeat DLP content inspection (
7z a -pPASS -v50m); the .7z.001 split pattern and password flag (-p) are stronger signals than file content.
- Validate the hunt fires: run Atomic Red Team T1074.001, or
7z a -p -v25m C:\Windows\Temp\s.7z C:\Users\*\Documents — confirm Sysmon EID 1 (with archiver OriginalFileName) and EID 11 writes to a staging path both trigger your rule.
- FP tuning: backup jobs (Veeam, nightly robocopy), user-driven WinRAR, and installer temp extraction. Baseline by parent process, signer, schedule, and whether the dir is later read by an upload process (T1567).
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
- 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
1---2name: hunting-for-data-staging-before-exfiltration3description: 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 telemetry4license: Apache-2.05---67# Hunting for Data Staging Before Exfiltration89## Overview1011Before 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.121314## When to Use1516- When investigating security incidents that require hunting for data staging before exfiltration17- When building detection rules or threat hunting queries for this domain18- When SOC analysts need structured procedures for this analysis type19- When validating security monitoring coverage for related attack techniques2021## Detection Gaps & Validation2223- **Archive-less staging is the #1 miss.** Adversaries consolidate with `robocopy`/`xcopy`/`Copy-Item` into one folder and exfil raw — no 7z.exe/rar.exe ever runs. Hunt Sysmon EID 11 (FileCreate) bursts into a single dir, not just archiver EID 1.24- **Renamed archivers evade Image-name rules.** `7z.exe` copied to `svchost.exe` defeats `Image=*\7z.exe`. Match Sysmon EID 1 `OriginalFileName` and `Hashes`, not the on-disk name.25- **Encrypted/split archives defeat DLP content inspection** (`7z a -pPASS -v50m`); the `.7z.001` split pattern and password flag (`-p`) are stronger signals than file content.26- **Validate the hunt fires:** run Atomic Red Team T1074.001, or `7z a -p -v25m C:\Windows\Temp\s.7z C:\Users\*\Documents` — confirm Sysmon EID 1 (with archiver OriginalFileName) and EID 11 writes to a staging path both trigger your rule.27- **FP tuning:** backup jobs (Veeam, nightly robocopy), user-driven WinRAR, and installer temp extraction. Baseline by parent process, signer, schedule, and whether the dir is later read by an upload process (T1567).2829## Prerequisites3031- EDR or Sysmon telemetry with process creation and file system events32- Windows Event Logs (Event ID 4688) or Sysmon Event ID 1, 1133- Python 3.8+ with standard library34- Access to process creation logs in JSON/CSV format3536## Steps37381. **Detect Archive Tool Execution** — Monitor for 7z.exe, rar.exe, tar, zip, and WinRAR process creation with compression arguments392. **Identify Staging Directories** — Flag file writes to common staging locations (Recycle Bin, %TEMP%, ProgramData, hidden directories)403. **Detect Large File Consolidation** — Identify patterns of multiple file reads followed by writes to a single directory414. **Monitor Sensitive Path Access** — Track bulk reads from document directories, database paths, and network shares425. **Analyze Archive Metadata** — Extract and analyze archive file sizes, creation times, and source paths436. **Score Staging Risk** — Apply heuristic scoring based on archive size, source diversity, staging path suspicion, and timing447. **Generate Hunt Report** — Produce a structured report with staging event timeline and MITRE ATT&CK mapping4546## Expected Output4748- JSON report of detected staging events with risk scores49- Archive creation timeline with source file analysis50- MITRE ATT&CK mapping (T1074.001, T1074.002, T1560)51- Staging directory heat map showing suspicious write activity