T1078.001 IBM QRadar · QRadar

Detect Default Accounts in IBM QRadar

Adversaries may obtain and abuse credentials of a default account as a means of gaining Initial Access, Persistence, Privilege Escalation, or Defense Evasion. Default accounts are those built into an OS (e.g., Guest or Administrator on Windows, root on Linux), preset on network devices/appliances, or created automatically by software integrations (e.g., vpxuser on ESXi when joined to vCenter). Adversaries exploit organizations that fail to disable, rename, or change the passwords of these accounts post-installation.

MITRE ATT&CK

Tactic
Defense Evasion Persistence Privilege Escalation Initial Access
Technique
T1078 Valid Accounts
Sub-technique
T1078.001 Default Accounts
Canonical reference
https://attack.mitre.org/techniques/T1078/001/

QRadar Detection Query

IBM QRadar (QRadar)
sql
SELECT
  DATEFORMAT(starttime, 'yyyy-MM-dd HH:mm:ss') AS event_time,
  logsourcename(logsourceid) AS log_source,
  CATEGORYNAME(category) AS event_category,
  username,
  sourceip,
  destinationip,
  "EventID",
  "LogonType",
  "CommandLine",
  "WorkstationName",
  "TargetDomainName"
FROM events
WHERE
  starttime > NOW() - 86400000
  AND (
    (
      LOWER(username) IN (
        'administrator', 'guest', 'defaultaccount', 'defaultuser', 'admin',
        'root', 'vpxuser', 'dcadmin', 'sysadmin', 'service', 'support',
        'user', 'test', 'demo', 'operator', 'sa', 'netadmin'
      )
      AND "EventID" IN ('4624', '4625', '4648')
    )
    OR (
      "EventID" = '1'
      AND (
        LOWER("CommandLine") LIKE '%net user defaultaccount /active:yes%'
        OR LOWER("CommandLine") LIKE '%net user guest /active:yes%'
        OR LOWER("CommandLine") LIKE '%net user administrator /active:yes%'
        OR LOWER("CommandLine") LIKE '%net localgroup administrators guest%'
        OR LOWER("CommandLine") LIKE '%net localgroup administrators defaultaccount%'
      )
    )
  )
ORDER BY starttime DESC
high severity high confidence

AQL query for IBM QRadar detecting Windows Security logon events (EventID 4624 success, 4625 failure, 4648 explicit credential) where the resolved username matches known default account names, and Sysmon process creation events (EventID 1) with command lines that activate or elevate default accounts. References custom event properties extracted by the Windows Security and Sysmon DSMs; adjust quoted property names to match your QRadar custom property names if they differ.

Data Sources

IBM QRadar Windows Security Event Log DSMIBM QRadar Microsoft Sysmon DSMWinCollect agent collecting Windows Security and Sysmon event logs from endpoints

Required Tables

events

False Positives & Tuning

  • Legitimate administrative use of the built-in Administrator account during patch cycles, emergency access procedures, or system recovery operations backed by a change ticket.
  • Automated monitoring or vulnerability scanning tools (Nessus, Qualys, Rapid7 InsightVM) configured with default credentials for authenticated scanning during authorized assessment windows.
  • Configuration management systems (Ansible, SCCM, Puppet) using service or admin accounts during initial system provisioning or scheduled software deployment runs.
Download portable Sigma rule (.yml)

Other platforms for T1078.001


Testing Methodology

Validate this detection against 4 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 1Enable and Use Built-in DefaultAccount via PowerShell (Magic Hound TTP)

    Expected signal: Sysmon Event ID 1: Process Create with CommandLine containing 'net user DefaultAccount /active:yes'. Windows Security Event ID 4722 (User Account Enabled) with TargetUserName=DefaultAccount. Windows Security Event ID 4725 (User Account Disabled) after cleanup. Security Event ID 4688 (process creation) if command-line auditing is enabled.

  2. Test 2Enable Built-in Guest Account and Verify Access

    Expected signal: Windows Security Event ID 4722 (User Account Enabled) with TargetUserName=Guest. Windows Security Event ID 4688 or Sysmon Event ID 1 with CommandLine 'net user Guest /active:yes'. Security Event ID 4625 if subsequent logon attempt is made. Event ID 4725 on cleanup.

  3. Test 3Authenticate Using Built-in Administrator Account via Net Use (HyperStack-style IPC$ Access)

    Expected signal: Windows Security Event ID 4648 (Logon using explicit credentials) with TargetUserName=Administrator and TargetServerName=127.0.0.1. Windows Security Event ID 4624 (logon type 3 - Network) or 4625 (failed logon) on the target host. Sysmon Event ID 1 with CommandLine 'net use \\127.0.0.1\IPC$'. Sysmon Event ID 3 (network connection) to port 445.

  4. Test 4Simulate Default Service Account Logon via Scheduled Task

    Expected signal: Windows Security Event ID 4698 (Scheduled Task Created) with task name 'DefaultAccountTest'. Windows Security Event ID 4624 (SYSTEM logon type 5) when task executes. Sysmon Event ID 1 for schtasks.exe and cmd.exe processes. Sysmon Event ID 11 (File Created) for the output file in TEMP. Security Event ID 4699 (Scheduled Task Deleted) on cleanup.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections