T1547.002 CrowdStrike LogScale · LogScale

Detect Authentication Package in CrowdStrike LogScale

Adversaries may abuse authentication packages to execute DLLs when the system boots. Windows authentication package DLLs are loaded by the Local Security Authority (LSA) process at system start. They provide support for multiple logon processes and multiple security protocols to the operating system. Adversaries can use the autostart mechanism provided by LSA authentication packages for persistence by placing a reference to a binary in the Windows Registry location HKLM\SYSTEM\CurrentControlSet\Control\Lsa\ with the key value of 'Authentication Packages'=<target binary>. The binary will then be executed by the system when the authentication packages are loaded.

MITRE ATT&CK

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

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName=RegSetValue
| TargetObject = /(?i)\\Control\\Lsa/
| RegValueName = /(?i)Authentication Packages/i
| table([_timstamp, ComputerName, UserName, TargetObject, RegValueName, RegStringValue, ImageFileName, CommandLine])
| sort(field=_timestamp, order=desc)
high severity high confidence

Detects registry value writes to HKLM\SYSTEM\CurrentControlSet\Control\Lsa\Authentication Packages using CrowdStrike Falcon's RegSetValue telemetry, identifying attempts to establish persistence via LSA authentication package DLL loading.

Data Sources

CrowdStrike Falcon Sensor Registry telemetry (RegSetValue events)

Required Tables

RegSetValue events from Falcon Data Replicator or Event Search

False Positives & Tuning

  • Third-party endpoint security or privileged access management tools that legitimately register authentication DLLs into the LSA package list during initial deployment
  • Windows Active Directory Certificate Services or Network Policy Server components that register authentication extension packages as part of PKI configuration
  • Enterprise multi-factor authentication agents (Duo, Okta, RSA SecurID) that install LSA notification or authentication packages for Windows logon integration
Download portable Sigma rule (.yml)

Other platforms for T1547.002


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 1Add Authentication Package via Registry

    Expected signal: Sysmon Event ID 13: RegistryValueSet on HKLM\SYSTEM\CurrentControlSet\Control\Lsa\Authentication Packages. MDE DeviceRegistryEvents with the modified multi-string value.

  2. Test 2Query Current Authentication Packages

    Expected signal: Sysmon Event ID 1: Process creation for reg.exe with command line arguments querying the Lsa key. No registry modification events generated.

  3. Test 3Add Authentication Package via PowerShell

    Expected signal: Sysmon Event ID 13: RegistryValueSet with Image=powershell.exe. PowerShell ScriptBlock Log Event ID 4104 with the full script content. Sysmon Event ID 1 for the PowerShell process creation.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections