Response playbooks, investigation guides, and Atomic Red Team tests are Pro-only. Upgrade to unlock the full detection package for THREAT-Exfil-ScheduledBulkTransfer.

Upgrade to Pro
THREAT-Exfil-ScheduledBulkTransfer CrowdStrike LogScale · LogScale

Detect Scheduled Off-Hours Bulk Data Transfer in CrowdStrike LogScale

Adversaries may schedule data exfiltration to occur only at specific times of day — typically off-hours, overnight, or during weekends — to blend the transfer with lower baseline traffic and reduce the likelihood of live monitoring or analyst review. This is frequently implemented via a scheduled task, cron job, or malware-internal timer that triggers a bulk upload once collected data has been staged. Detection focuses on identifying large outbound data transfers that occur outside of a host or user's established working-hours baseline, especially when correlated with a scheduled task or cron job creation shortly beforehand.

MITRE ATT&CK

Tactic
Exfiltration

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#repo="base_sensor"
#event_simpleName="NetworkConnectIP4"
| BytesSent > 104857600
| eval HourOfDay = formatTime(format="%H", field="@timestamp")
| test(HourOfDay < "07" or HourOfDay >= "19")
| join type=left
  [ #event_simpleName="ProcessRollup2"
    | ImageFileName = /(?i)(schtasks\.exe|at\.exe|crontab)/
    | CommandLine = /(?i)(create|-e)/
  ]
  on ComputerName
| groupBy([ComputerName, RemoteAddressIP4], function=[sum(BytesSent, as=TotalBytes), count(as=TransferCount)])
| where TotalBytes > 104857600
| sort(TotalBytes, order=desc, limit=1000)
medium severity medium confidence

CrowdStrike LogScale CQL query flagging outbound network transfers exceeding 100MB occurring outside working hours, joined against ProcessRollup2 scheduled task/cron creation events on the same host, as candidates for T1029 scheduled off-hours exfiltration.

Data Sources

CrowdStrike Falcon Sensor (NetworkConnectIP4)CrowdStrike Falcon Sensor (ProcessRollup2)

Required Tables

NetworkConnectIP4ProcessRollup2

False Positives & Tuning

  • Legitimate overnight backup or replication jobs
  • Distributed teams operating during what is defined as 'off-hours' locally

Other platforms for THREAT-Exfil-ScheduledBulkTransfer


Testing Methodology

Validate this detection against 2 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1Create Scheduled Task and Simulate Off-Hours Bulk Upload

    Expected signal: Windows Security Event ID 4698 (Scheduled Task Created) for 'df00tech-test-sync' with the encoded PowerShell command in the task action. Sysmon Event ID 1 for the powershell.exe process launched by the Task Scheduler engine (parent: svchost.exe / taskeng.exe). DeviceNetworkEvents/Sysmon Event ID 3 showing an outbound POST of ~120MB to the test endpoint.

  2. Test 2Cron-Based Scheduled Exfiltration on Linux

    Expected signal: Auditd or Sysmon-for-Linux process execution events for `crontab`, followed at the scheduled time by `dd` and `curl` process creation events with the destination URL in the command line. Cron execution log entry in `/var/log/cron` or `journalctl -u cron` at 23:59.

Unlock playbooks & atomic tests with Pro

Get the full detection package for THREAT-Exfil-ScheduledBulkTransfer — response playbook and atomic red team tests, plus investigation guidance and hunting queries.

df00tech Pro — £29/user/month

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections