From adec878e22dfeef54e1f28022e110a0ec6eb96ca Mon Sep 17 00:00:00 2001 From: frack113 <62423083+frack113@users.noreply.github.com> Date: Sat, 4 Dec 2021 20:32:42 +0100 Subject: [PATCH] add win_pc_susp_rundll32_script_run --- .../win_pc_susp_rundll32_script_run.yml | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 rules/windows/process_creation/win_pc_susp_rundll32_script_run.yml diff --git a/rules/windows/process_creation/win_pc_susp_rundll32_script_run.yml b/rules/windows/process_creation/win_pc_susp_rundll32_script_run.yml new file mode 100644 index 000000000..746676b78 --- /dev/null +++ b/rules/windows/process_creation/win_pc_susp_rundll32_script_run.yml @@ -0,0 +1,28 @@ +title: Suspicious Rundll32 Script in CommandLine +id: 73fcad2e-ff14-4c38-b11d-4172c8ac86c7 +status: experimental +description: Detects suspicious process related to rundll32 based on arguments +author: frack113 +references: + - https://gist.github.com/ryhanson/227229866af52e2d963cf941af135a52 + - https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.011/T1218.011.md +date: 2021/12/04 +logsource: + category: process_creation + product: windows +detection: + selection_run: + CommandLine|contains|all: + - rundll32 + - 'mshtml,RunHTMLApplication' + selection_script: + CommandLine|contains: + - 'javascript:' + - 'vbscript:' + condition: all of selection_* +falsepositives: + - False positives depend on scripts and administrative tools used in the monitored environment +level: medium +tags: + - attack.defense_evasion + - attack.t1218.011