Detects events that appear when a user click on a link file with a powershell command in it
title: Hidden Powershell in Link File Pattern
id: 30e92f50-bb5a-4884-98b5-d20aa80f3d7a
status: test
description: Detects events that appear when a user click on a link file with a powershell command in it
references:
- https://www.x86matthew.com/view_post?id=embed_exe_lnk
author: frack113
date: 2022-02-06
tags:
- attack.execution
- attack.t1059.001
logsource:
category: process_creation
product: windows
detection:
selection:
ParentImage: C:\Windows\explorer.exe
Image: C:\Windows\System32\cmd.exe
CommandLine|contains|all:
- 'powershell'
- '.lnk'
condition: selection
falsepositives:
- Legitimate commands in .lnk files
level: medium
imProcessCreate
| where (ParentProcessName =~ "C:\\Windows\\explorer.exe" or ActingProcessName =~ "C:\\Windows\\explorer.exe") and TargetProcessName =~ "C:\\Windows\\System32\\cmd.exe" and (TargetProcessCommandLine contains "powershell" and TargetProcessCommandLine contains ".lnk")
| Sentinel Table | Notes |
|---|---|
imProcessCreate | Ensure this data connector is enabled |