T1136 CrowdStrike LogScale · LogScale

Detect Create Account in CrowdStrike LogScale

Adversaries may create an account to maintain access to victim systems. With sufficient privilege, creating accounts establishes secondary credentialed access that does not require persistent remote access tools. Accounts may be created on local systems, within a domain, or in cloud tenants. Threat actors including Indrik Spider (WastedLocker), LockBit 2.0, Scattered Spider, and Salt Typhoon have all used account creation as a persistence mechanism. In cloud environments, attackers may create accounts with access limited to specific services to reduce detection likelihood.

MITRE ATT&CK

Tactic
Persistence
Technique
T1136 Create Account
Canonical reference
https://attack.mitre.org/techniques/T1136/

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
// T1136 — Create Account: CrowdStrike LogScale (Falcon)
// Branch 1: Account creation via process events
#event_simpleName = "ProcessRollup2"
| FileName = /(?i)^(net|net1|wmic|powershell|pwsh|useradd|adduser)\.exe$/
| CommandLine = /(?i)(user.*\/add|useraccount.*create|New-LocalUser|net user.*\/add)/
  OR FileName = /(?i)^(useradd|adduser)$/
| eval OffHours = if(hour(timestamp) < 7 OR hour(timestamp) > 19, true, false)
| eval SuspiciousParent = ParentBaseFileName = /(?i)(cmd|powershell|wscript|cscript|mshta|rundll32)\.exe$/
| eval RiskScore = (if(OffHours, 1, 0) + if(SuspiciousParent, 1, 0))
| table([
    @timestamp,
    ComputerName,
    UserName,
    FileName,
    CommandLine,
    ParentBaseFileName,
    OffHours,
    SuspiciousParent,
    RiskScore
  ])
| sort(field=@timestamp, order=desc)

// Branch 2: UserAccountAdded event (Falcon identity telemetry)
// Uncomment if UserAccountAdded events are available in your Falcon data tier:
// #event_simpleName = "UserAccountAdded"
// | eval OffHours = if(hour(timestamp) < 7 OR hour(timestamp) > 19, true, false)
// | table([@timestamp, ComputerName, UserName, NewUserName, OffHours])
// | sort(field=@timestamp, order=desc)
high severity high confidence

CrowdStrike LogScale (CQL) query detecting account creation via Falcon ProcessRollup2 events, targeting net.exe, net1.exe, wmic, PowerShell (New-LocalUser), and Linux useradd/adduser. Risk scores off-hours activity and suspicious parent processes. Optional branch for UserAccountAdded identity telemetry if available.

Data Sources

CrowdStrike Falcon Endpoint (ProcessRollup2)Falcon Identity Protection (UserAccountAdded)Falcon Event Stream

Required Tables

ProcessRollup2UserAccountAdded (optional)

False Positives & Tuning

  • IT administrators or scripts using net.exe to provision accounts during business hours
  • Endpoint provisioning systems running PowerShell-based account creation as part of imaging pipelines
  • Security or monitoring tools spawning child processes that invoke account management utilities
Download portable Sigma rule (.yml)

Other platforms for T1136


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 1Create Local User Account via net.exe

    Expected signal: Security Event 4720: 'A user account was created' with TargetUserName=df00tech-testacct, SubjectUserName=<running user>. Sysmon Event ID 1: Process Create with Image=net.exe (or net1.exe), CommandLine='net user df00tech-testacct P@ssw0rd123! /add'. Security Event 4722 (account enabled) may follow immediately.

  2. Test 2Create Local User via WMIC (Indrik Spider TTP)

    Expected signal: Sysmon Event ID 1: Process Create with Image=wmic.exe, CommandLine containing 'useraccount'. Followed by net.exe process create. Security Event 4720 generated by the net user /add call. Parent process chain visible in Sysmon logs.

  3. Test 3Create Local User via PowerShell New-LocalUser

    Expected signal: Sysmon Event ID 1: Process Create with Image=powershell.exe, CommandLine containing 'New-LocalUser'. Security Event 4720: new account df00tech-pstest created, SubjectUserName shows running user. PowerShell ScriptBlock Log Event ID 4104 will show the full New-LocalUser command with parameters.

  4. Test 4Linux Account Creation via useradd

    Expected signal: Syslog / /var/log/auth.log: 'useradd: new user: name=df00tech-linuxtest, UID=<uid>, GID=<gid>'. If auditd is configured with -a always,exit -F arch=b64 -S execve rules: audit log entry for useradd execution with full command line. If Sysmon for Linux is deployed: process creation event for useradd.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections