From b886097035eb025c420d89a92dee81cc095a9fb2 Mon Sep 17 00:00:00 2001 From: Mar-Pic Date: Tue, 18 Feb 2025 15:58:54 +0100 Subject: [PATCH] Create proc_creation_win_powershell_aes_decrypt.yml --- ...oc_creation_win_powershell_aes_decrypt.yml | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 emmenhtal/proc_creation_win_powershell_aes_decrypt.yml diff --git a/emmenhtal/proc_creation_win_powershell_aes_decrypt.yml b/emmenhtal/proc_creation_win_powershell_aes_decrypt.yml new file mode 100644 index 0000000..18c627f --- /dev/null +++ b/emmenhtal/proc_creation_win_powershell_aes_decrypt.yml @@ -0,0 +1,34 @@ +title: Potential AES-encrypted PowerShell patterns in CommandLine +id: 47be590d-4a9e-4ab1-b9f6-a332709c2100 +status: stable +description: | + Detects suspicious execution of Powershell commands related to AES Encryption. + This could be an indicator of use of Powershell to decrypt additionnal payload as observed during Emmenhtal infection. +references: https://www.orangecyberdefense.com/global/blog/cert-news/emmenhtal-a-little-known-loader-distributing-commodity-infostealers-worldwide +author: Orange Cyberdefense - Florian SIMONET +date: 2024/08/09 +tags: + - attack.execution + - attack.defense_evasion + - attack.t1059.001 + - attack.t1140 + - tlp.white +logsource: + product: windows + category: process_creation +detection: + selection_img: + Image|endswith: + - '\powershell.exe' + - '\pwsh.exe' + OriginalFileName: + - 'PowerShell.EXE' + - 'pwsh.dll' + selection_cmdline: + CommandLine|contains|all: + - 'System.Security.Cryptography.Aes' + - 'CreateDecryptor' + condition: all of selection_* +falsepositives: + - Unknown +level: medium