DarkGate - Drop DarkGate Loader In C:\Temp Directory

Detects attackers attempting to save, decrypt and execute the DarkGate Loader in C:\temp folder.

Sigma rule (View on GitHub)

 1title: DarkGate - Drop DarkGate Loader In C:\Temp Directory
 2id: df49c691-8026-48dd-94d3-4ba6a79102a8
 3status: experimental
 4description: Detects attackers attempting to save, decrypt and execute the DarkGate Loader in C:\temp folder.
 5references:
 6    - https://www.bleepingcomputer.com/news/security/hackers-exploit-windows-smartscreen-flaw-to-drop-darkgate-malware/
 7    - https://www.trendmicro.com/en_us/research/24/c/cve-2024-21412--darkgate-operators-exploit-microsoft-windows-sma.html
 8author: Tomasz Dyduch, Josh Nickels
 9date: 2024-05-31
10tags:
11    - attack.execution
12    - attack.t1059
13    - detection.emerging-threats
14logsource:
15    category: file_event
16    product: windows
17detection:
18    selection_filename_suffix:
19        TargetFilename|contains: ':\temp\'
20        TargetFilename|endswith:
21            - '.au3'
22            - '\autoit3.exe'
23    selection_image_suffix:
24        Image|contains: ':\temp\'
25        Image|endswith:
26            - '.au3'
27            - '\autoit3.exe'
28    condition: 1 of selection_*
29falsepositives:
30    - Unlikely legitimate usage of AutoIT in temp folders.
31level: medium

References

Related rules

to-top