Suspicious GUP Usage

Detects execution of the Notepad++ updater in a suspicious directory, which is often used in DLL side-loading attacks

Sigma rule (View on GitHub)

 1title: Suspicious GUP Usage
 2id: 0a4f6091-223b-41f6-8743-f322ec84930b
 3status: test
 4description: Detects execution of the Notepad++ updater in a suspicious directory, which is often used in DLL side-loading attacks
 5references:
 6    - https://www.fireeye.com/blog/threat-research/2018/09/apt10-targeting-japanese-corporations-using-updated-ttps.html
 7author: Florian Roth (Nextron Systems)
 8date: 2019-02-06
 9modified: 2022-08-13
10tags:
11    - attack.privilege-escalation
12    - attack.persistence
13    - attack.defense-evasion
14    - attack.t1574.001
15logsource:
16    category: process_creation
17    product: windows
18detection:
19    selection:
20        Image|endswith: '\GUP.exe'
21    filter_programfiles:
22        Image|endswith:
23            - '\Program Files\Notepad++\updater\GUP.exe'
24            - '\Program Files (x86)\Notepad++\updater\GUP.exe'
25    filter_user:
26        Image|contains: '\Users\'
27        Image|endswith:
28            - '\AppData\Local\Notepad++\updater\GUP.exe'
29            - '\AppData\Roaming\Notepad++\updater\GUP.exe'
30    condition: selection and not 1 of filter_*
31falsepositives:
32    - Execution of tools named GUP.exe and located in folders different than Notepad++\updater
33level: high

References

Related rules

to-top