T1547.003 IBM QRadar · QRadar

Detect Time Providers in IBM QRadar

Adversaries may abuse time providers to execute DLLs when the system boots. The Windows Time service (W32Time) enables time synchronization across and within domains. W32Time time providers are implemented as DLLs registered in the subkeys of HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\W32Time\TimeProviders\. The time provider manager loads and starts time providers listed under this key at system startup. Adversaries may create a new subkey pointing to a malicious DLL in the DllName value. Administrator privileges are required for time provider registration, though execution runs in context of the Local Service account.

MITRE ATT&CK

Tactic
Persistence Privilege Escalation
Technique
T1547 Boot or Logon Autostart Execution
Sub-technique
T1547.003 Time Providers
Canonical reference
https://attack.mitre.org/techniques/T1547/003/

QRadar Detection Query

IBM QRadar (QRadar)
sql
SELECT DATEFORMAT(devicetime, 'yyyy-MM-dd HH:mm:ss') AS event_time, logsourcename(logsourceid) AS log_source, sourceip, username, QIDNAME(qid) AS event_name, "TargetObject", "Details", "Image" FROM events WHERE LOGSOURCETYPEID = 13 AND (qid = 5000008 OR qid = 5000009) AND "TargetObject" ILIKE '%\Services\W32Time\TimeProviders%' AND "Details" NOT ILIKE '%w32time.dll%' AND "Details" NOT ILIKE '%vmictimeprovider.dll%' ORDER BY devicetime DESC LAST 24 HOURS
high severity medium confidence

Detects Sysmon Registry events (EventCode 12/13) targeting the W32Time TimeProviders key where a non-standard DLL value is set, indicating potential time provider hijacking for persistence.

Data Sources

Sysmon for Windows via QRadar DSM

Required Tables

events

False Positives & Tuning

  • Legitimate enterprise time synchronization software registering custom DLL-based providers during installation or update
  • Backup or restore operations that replay registry snapshots containing time provider configurations
  • Security scanning tools or vulnerability assessors that enumerate or temporarily modify registry keys during assessments
Download portable Sigma rule (.yml)

Other platforms for T1547.003


Testing Methodology

Validate this detection against 3 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 1Register Malicious Time Provider via Registry

    Expected signal: Sysmon Event ID 12: Key created for df00techTestProvider. Sysmon Event ID 13: Value set for DllName, Enabled, and InputProvider. MDE DeviceRegistryEvents for all three operations.

  2. Test 2Enumerate Existing Time Providers

    Expected signal: Sysmon Event ID 1: Process creation for reg.exe. No registry modification events.

  3. Test 3Register Time Provider and Restart W32Time

    Expected signal: Sysmon Event ID 12/13 for registry operations. System Event ID 7036 for W32Time service state changes. If the DLL existed, Sysmon Event ID 7 would show it being loaded by svchost.exe hosting W32Time.

Unlock Pro Content

Get the full detection package for T1547.003 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections