From f1f38a2df42eb47e8960cce6cf6bbd697c2c2668 Mon Sep 17 00:00:00 2001 From: frack113 <62423083+frack113@users.noreply.github.com> Date: Sun, 6 Feb 2022 14:01:48 +0100 Subject: [PATCH] add win_pc_embed_exe_lnk --- .../process_creation/win_pc_embed_exe_lnk.yml | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 rules/windows/process_creation/win_pc_embed_exe_lnk.yml diff --git a/rules/windows/process_creation/win_pc_embed_exe_lnk.yml b/rules/windows/process_creation/win_pc_embed_exe_lnk.yml new file mode 100644 index 000000000..4bb47f3f8 --- /dev/null +++ b/rules/windows/process_creation/win_pc_embed_exe_lnk.yml @@ -0,0 +1,25 @@ +title: Hide a Powershell Script In a Link File +id: 30e92f50-bb5a-4884-98b5-d20aa80f3d7a +status: experimental +description: This is created when a user click on a lnk file with a powershell hide into it +author: frack113 +date: 2022/02/06 +references: + - https://www.x86matthew.com/view_post?id=embed_exe_lnk +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: + - unknown +level: medium +tags: + - attack.execution + - attack.t1059.001 \ No newline at end of file