Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
w11_shadow_copies — Manage Shadows Copies via the VSS API using C#, C++, Crystal or Python. Working on Windows 11 | Kitploit
Tools/GitHubGitHub/ricardojoserf/w11_shadow_copies
Privilege EscalationPersistence MechanismsExploitationLateral MovementData ExfiltrationPost-ExploitationPenetration TestingRed Teaming
GitHubricardojoserf/w11_shadow_copies

w11_shadow_copies

Manage Shadows Copies via the VSS API using C#, C++, Crystal or Python. Working on Windows 11

View Repository
8496 months agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
Website

Windows 11 Shadow Copies

On Windows 11, the built-in vssadmin can list, delete or resize Shadow Copies, but Microsoft removed the ability to create them. However, you can still do it by interacting directly with the Volume Shadow Copy Service (VSS) API, which I already used in my other tool SAMDump.

In this repo you can find stand-alone scripts to simply create, list or delete Shadow Copies, along with "manager" scripts which combine the three functionalities. By themselves, they should not be considered malicious by security solutions.

The scripts are implemeneted in C#, C++, Crystal Python, and should also work on other Windows versions.


C#, C++ and Crystal versions

Create Shadow Copies:

root@kitploit:~
Create.exe
root@kitploit:~
Manager.exe create

List Shadow Copies:

root@kitploit:~
List.exe
root@kitploit:~
Manager.exe list

Delete Shadow Copies:

root@kitploit:~
Delete.exe \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy12
root@kitploit:~
Manager.exe delete \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy12

cplusplus


Python version

Create Shadow Copies:

root@kitploit:~
python create.py
root@kitploit:~
python manager.py -o create

List Shadow Copies:

root@kitploit:~
python list.py
root@kitploit:~
python manager.py -o list

Delete Shadow Copies:

root@kitploit:~
python delete.py \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy12
root@kitploit:~
python manager.py -o delete -s \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy12

python

Download Tool