Suspicious Volume Shadow Copy VSS_PS.dll Load

Detects the image load of vss_ps.dll by uncommon executables. This DLL is used by the Volume Shadow Copy Service (VSS) to manage shadow copies of files and volumes. It is often abused by attackers to delete or manipulate shadow copies, which can hinder forensic investigations and data recovery efforts. The fact that it is loaded by processes that are not typically associated with VSS operations can indicate suspicious activity.

Sigma rule (View on GitHub)

 1title: Suspicious Volume Shadow Copy VSS_PS.dll Load
 2id: 333cdbe8-27bb-4246-bf82-b41a0dca4b70
 3related:
 4    - id: 48bfd177-7cf2-412b-ad77-baf923489e82 # vsstrace.dll
 5      type: similar
 6    - id: 37774c23-25a1-4adb-bb6d-8bb9fd59c0f8 # vssapi.dll
 7      type: similar
 8status: test
 9description: |
10    Detects the image load of vss_ps.dll by uncommon executables. This DLL is used by the Volume Shadow Copy Service (VSS) to manage shadow copies of files and volumes.
11    It is often abused by attackers to delete or manipulate shadow copies, which can hinder forensic investigations and data recovery efforts.
12    The fact that it is loaded by processes that are not typically associated with VSS operations can indicate suspicious activity.    
13references:
14    - https://www.virustotal.com/gui/file/ba88ca45589fae0139a40ca27738a8fc2dfbe1be5a64a9558f4e0f52b35c5add
15    - https://twitter.com/am0nsec/status/1412232114980982787
16author: Markus Neis, @markus_neis
17date: 2021-07-07
18modified: 2025-07-11
19tags:
20    - attack.defense-evasion
21    - attack.impact
22    - attack.t1490
23logsource:
24    category: image_load
25    product: windows
26detection:
27    selection:
28        ImageLoaded|endswith: '\vss_ps.dll'
29    filter_main_legit:
30        Image|startswith: 'C:\Windows\'
31        Image|endswith:
32            - '\clussvc.exe'
33            - '\dismhost.exe'
34            - '\dllhost.exe'
35            - '\inetsrv\appcmd.exe'
36            - '\inetsrv\iissetup.exe'
37            - '\msiexec.exe'
38            - '\rundll32.exe'
39            - '\searchindexer.exe'
40            - '\srtasks.exe'
41            - '\svchost.exe'
42            - '\System32\SystemPropertiesAdvanced.exe'
43            - '\taskhostw.exe'
44            - '\thor.exe'
45            - '\thor64.exe'
46            - '\tiworker.exe'
47            - '\vssvc.exe'
48            - '\vssadmin.exe'
49            - '\WmiPrvSE.exe'
50            - '\wsmprovhost.exe'
51    filter_main_update:
52        CommandLine|startswith: 'C:\$WinREAgent\Scratch\'
53        CommandLine|contains: '\dismhost.exe {'
54    filter_main_image_null:
55        Image: null
56    filter_optional_programfiles:
57        # When using this rule in your environment replace the "Program Files" folder by the exact applications you know use this. Examples would be software such as backup solutions
58        Image|startswith:
59            - 'C:\Program Files\'
60            - 'C:\Program Files (x86)\'
61    condition: selection and not 1 of filter_main_* and not 1 of filter_optional_*
62falsepositives:
63    - Unknown
64level: high

References

Related rules

to-top