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: 2025-10-07
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 filter_optional_googleupdate_temp:
33 Image|contains:
34 - '\AppData\Local\Temp\GUM'
35 - ':\Windows\SystemTemp\GUM'
36 Image|endswith: '.tmp\GoogleUpdate.exe'
37 ImageLoaded|contains:
38 - '\AppData\Local\Temp\GUM'
39 - ':\Windows\SystemTemp\GUM'
40 condition: selection and not 1 of filter_main_* and not 1 of filter_optional_*
41falsepositives:
42 - False positives are expected from Google Chrome installations running from user locations (AppData) and other custom locations. Apply additional filters accordingly.
43 - Other third party chromium browsers located in AppData
44level: medium
References
Related rules
- Potential Antivirus Software DLL Sideloading
- Potential DLL Sideloading Of DBGCORE.DLL
- Potential DLL Sideloading Of DBGHELP.DLL
- Potential JLI.dll Side-Loading
- Potential System DLL Sideloading From Non System Locations