Files
blue-team-tools/rules/windows/process_creation/proc_creation_win_malware_dridex.yml
T

51 lines
1.6 KiB
YAML
Raw Normal View History

2023-02-03 02:22:28 +01:00
title: Potential Dridex Activity
2019-11-12 23:12:27 +01:00
id: e6eb5a96-9e6f-4a18-9cdd-642cfda21c8e
2022-03-31 12:03:27 +02:00
status: stable
2023-02-03 02:22:28 +01:00
description: Detects potential Dridex acitvity via specific process patterns
2021-11-27 11:33:14 +01:00
references:
2022-10-28 15:06:36 +02:00
- https://app.any.run/tasks/993daa5e-112a-4ff6-8b5a-edbcec7c7ba3
2023-02-03 02:22:28 +01:00
- https://redcanary.com/threat-detection-report/threats/dridex/
author: Florian Roth (Nextron Systems), oscd.community, Nasreddine Bencherchali (Nextron Systems)
date: 2019/01/10
2023-02-03 02:22:28 +01:00
modified: 2023/02/03
2022-10-28 15:06:36 +02:00
tags:
- attack.defense_evasion
- attack.privilege_escalation
- attack.t1055
- attack.discovery
- attack.t1135
- attack.t1033
logsource:
2022-10-28 15:06:36 +02:00
category: process_creation
product: windows
detection:
2023-02-03 02:22:28 +01:00
selection_svchost:
2022-10-28 15:06:36 +02:00
Image|endswith: '\svchost.exe'
CommandLine|contains|all:
- 'C:\Users\'
- '\Desktop\'
2023-02-03 02:22:28 +01:00
filter_svchost:
ParentImage|startswith: 'C:\Windows\System32\'
selection_regsvr:
ParentImage|endswith: '\excel.exe'
Image|endswith: '\regsvr32.exe'
CommandLine|contains:
- ' -s '
- '\AppData\Local\Temp\'
filter_regsvr:
CommandLine|contains: '.dll'
selection_anomaly_parent:
2022-10-28 15:06:36 +02:00
ParentImage|endswith: '\svchost.exe'
2023-02-03 02:22:28 +01:00
selection_anomaly_child_1:
2022-10-28 15:06:36 +02:00
Image|endswith: '\whoami.exe'
2023-02-03 02:22:28 +01:00
CommandLine|contains: ' /all'
selection_anomaly_child_2:
2022-10-28 15:06:36 +02:00
Image|endswith:
- '\net.exe'
- '\net1.exe'
2023-02-03 02:22:28 +01:00
CommandLine|contains: ' view'
condition: (selection_svchost and not filter_svchost) or (selection_regsvr and not filter_regsvr) or (selection_anomaly_parent and 1 of selection_anomaly_child_*)
falsepositives:
2022-10-28 15:06:36 +02:00
- Unlikely
level: critical