VMGuestLib DLL Sideload

Detects DLL sideloading of VMGuestLib.dll by the WmiApSrv service.

Sigma rule (View on GitHub)

 1title: VMGuestLib DLL Sideload
 2id: 70e8e9b4-6a93-4cb7-8cde-da69502e7aff
 3status: test
 4description: Detects DLL sideloading of VMGuestLib.dll by the WmiApSrv service.
 5references:
 6    - https://decoded.avast.io/martinchlumecky/png-steganography/
 7author: Nasreddine Bencherchali (Nextron Systems)
 8date: 2022/12/01
 9tags:
10    - attack.defense_evasion
11    - attack.persistence
12    - attack.privilege_escalation
13    - attack.t1574.001
14    - attack.t1574.002
15logsource:
16    category: image_load
17    product: windows
18detection:
19    selection:
20        ImageLoaded|contains|all:
21            - '\VMware\VMware Tools\vmStatsProvider\win32'
22            - '\vmGuestLib.dll'
23        Image|endswith: '\Windows\System32\wbem\WmiApSrv.exe'
24    filter:
25        Signed: 'true'
26    condition: selection and not filter
27falsepositives:
28    - FP could occur if the legitimate version of vmGuestLib already exists on the system
29level: medium

References

Related rules

to-top