T1547.009 CrowdStrike LogScale · LogScale

Detect Shortcut Modification in CrowdStrike LogScale

Adversaries may create or modify shortcuts that can execute a program during system boot or user login. Shortcuts (.lnk files) or symbolic links are used to reference other files or programs that will be opened or executed when the shortcut is clicked or executed by a system startup process. Adversaries may abuse shortcuts in the startup folder to execute their tools and achieve persistence. They may also edit the target path or entirely replace existing shortcuts so their malware executes instead of the intended legitimate program. Threat actors including Lazarus Group, APT39, Leviathan, and Turla have used this technique. LNK browser extensions may also be modified to persistently launch malware.

MITRE ATT&CK

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

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName=AsepValueUpdate OR #event_simpleName=NewExecutableWritten
| TargetFileName = /(?i)\.lnk$/
| TargetDirectoryName = /(?i)(Start Menu\\Programs\\Startup|Start Menu\\Programs\\StartUp)/
| groupBy([ComputerName, UserName, TargetFileName, TargetDirectoryName, ImageFileName], function=([count(aid, as=event_count), collect([TargetFileName, ImageFileName, UserName, ComputerName, TargetDirectoryName])]))
| sort(event_count, order=desc)
high severity medium confidence

Detects .lnk shortcut files written to Windows Startup directories using CrowdStrike Falcon telemetry. Uses AsepValueUpdate and NewExecutableWritten event types to identify persistence mechanism abuse via shortcut modification (T1547.009). Groups by host and process for analyst triage.

Data Sources

CrowdStrike Falcon Endpoint SensorCrowdStrike Falcon Data Replicator (FDR)

Required Tables

CrowdStrike Falcon Event Stream (AsepValueUpdate, NewExecutableWritten)

False Positives & Tuning

  • Legitimate software installations that create or update startup shortcuts during normal setup procedures
  • IT automation and endpoint management agents that manage startup folder items across a fleet
  • Security tools or backup clients that legitimately maintain shortcuts in startup directories for service continuity
Download portable Sigma rule (.yml)

Other platforms for T1547.009


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 1Create Malicious Shortcut in Startup Folder

    Expected signal: Sysmon Event ID 11: FileCreate for df00tech-test.lnk in the Startup folder. Sysmon Event ID 1: PowerShell process creation with WScript.Shell COM object usage.

  2. Test 2Modify Existing Shortcut Target

    Expected signal: Sysmon Event ID 11: FileCreate for the initial shortcut. File modification event when the target path is changed. Both events show PowerShell as the initiating process.

  3. Test 3Create VBScript Shortcut in Startup

    Expected signal: Sysmon Event ID 11 for both the .vbs file creation and the .lnk shortcut in Startup. The shortcut targeting wscript.exe with a .vbs argument is a strong malicious indicator.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections