Files
blue-team-tools/rules/windows/image_load/image_load_susp_unsigned_dll.yml
T
Swachchhanda Shrawan Poudel 2ee4323654 Merge PR #4679 from @swachchhanda000 - Suspicious unsigned DLL Loaded by RunDLL32/RegSvr32
new: Unsigned DLL Loaded by RunDLL32/RegSvr32
---------

Co-authored-by: nasbench <8741929+nasbench@users.noreply.github.com>
2024-01-22 11:40:10 +01:00

37 lines
1.2 KiB
YAML

title: Unsigned DLL Loaded by RunDLL32/RegSvr32
id: b5de0c9a-6f19-43e0-af4e-55ad01f550af
status: experimental
description: |
Detects RunDLL32/RegSvr32 loading an unsigned or untrusted DLL.
Adversaries often abuse those programs to proxy execution of malicious code.
references:
- https://www.elastic.co/security-labs/Hunting-for-Suspicious-Windows-Libraries-for-Execution-and-Evasion
- https://akhere.hashnode.dev/hunting-unsigned-dlls-using-kql
- https://unit42.paloaltonetworks.com/unsigned-dlls/?web_view=true
author: Swachchhanda Shrawan Poudel
date: 2024/01/22
tags:
- attack.t1218.011
- attack.t1218.010
- attack.defense_evasion
logsource:
product: windows
category: image_load
detection:
selection:
Image|endswith:
# Note: Add additional utilities that allow the loading of DLLs
- '\regsvr32.exe'
- '\rundll32.exe'
filter_main_signed:
- Signed: 'true'
- SignatureStatus:
- 'errorChaining'
- 'errorCode_endpoint'
- 'errorExpired'
- 'trusted'
condition: selection and not 1 of filter_main_*
falsepositives:
- Unknown
level: medium