Potential Goopdate.DLL Sideloading

Detects potential DLL sideloading of "goopdate.dll", a DLL used by googleupdate.exe

Sigma rule (View on GitHub)

 1title: Potential Goopdate.DLL Sideloading
 2id: b6188d2f-b3c4-4d2c-a17d-9706e0851af0
 3status: test
 4description: Detects potential DLL sideloading of "goopdate.dll", a DLL used by googleupdate.exe
 5references:
 6    - https://www.ncsc.gov.uk/static-assets/documents/malware-analysis-reports/goofy-guineapig/NCSC-MAR-Goofy-Guineapig.pdf
 7author: X__Junior (Nextron Systems), Nasreddine Bencherchali (Nextron Systems)
 8date: 2023-05-15
 9modified: 2023-05-20
10tags:
11    - attack.defense-evasion
12    - attack.privilege-escalation
13    - attack.t1574.001
14logsource:
15    category: image_load
16    product: windows
17detection:
18    selection:
19        ImageLoaded|endswith: '\goopdate.dll'
20    filter_main_generic:
21        ImageLoaded|startswith:
22            # Many third party chromium based apps use this DLLs. It's better to create a baseline and add specific filters
23            - 'C:\Program Files (x86)\'
24            - 'C:\Program Files\'
25    filter_optional_dropbox_installer_temp:
26        Image|contains|all:
27            - '\AppData\Local\Temp\GUM'
28            - '.tmp\Dropbox'
29        ImageLoaded|contains|all:
30            - '\AppData\Local\Temp\GUM'
31            - '.tmp\\goopdate.dll'
32    condition: selection and not 1 of filter_main_* and not 1 of filter_optional_*
33falsepositives:
34    - False positives are expected from Google Chrome installations running from user locations (AppData) and other custom locations. Apply additional filters accordingly.
35    - Other third party chromium browsers located in AppData
36level: medium

References

Related rules

to-top