├── .gitignore ├── CoWTools.sln ├── EnumAllHandles ├── EnumAllHandles.cpp ├── EnumAllHandles.vcxproj ├── EnumAllHandles.vcxproj.filters ├── EnumAllHandles.vcxproj.user ├── LICENSE ├── README.md ├── pch.cpp └── pch.h ├── LiveDump ├── LICENSE ├── LiveDump.cpp ├── LiveDump.hpp ├── LiveDump.vcxproj ├── LiveDump.vcxproj.filters ├── LiveDump.vcxproj.user └── README.md ├── NVRAM ├── LICENSE ├── NVRAM.vcxproj ├── NVRAM.vcxproj.filters ├── NVRAM.vcxproj.user ├── README.md └── main.cpp ├── README.md └── ServiceExecuter ├── LICENSE ├── README.md ├── ServiceExecuter.vcxproj ├── ServiceExecuter.vcxproj.filters ├── ServiceExecuter.vcxproj.user └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/.gitignore -------------------------------------------------------------------------------- /CoWTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/CoWTools.sln -------------------------------------------------------------------------------- /EnumAllHandles/EnumAllHandles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/EnumAllHandles/EnumAllHandles.cpp -------------------------------------------------------------------------------- /EnumAllHandles/EnumAllHandles.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/EnumAllHandles/EnumAllHandles.vcxproj -------------------------------------------------------------------------------- /EnumAllHandles/EnumAllHandles.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/EnumAllHandles/EnumAllHandles.vcxproj.filters -------------------------------------------------------------------------------- /EnumAllHandles/EnumAllHandles.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/EnumAllHandles/EnumAllHandles.vcxproj.user -------------------------------------------------------------------------------- /EnumAllHandles/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/EnumAllHandles/LICENSE -------------------------------------------------------------------------------- /EnumAllHandles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/EnumAllHandles/README.md -------------------------------------------------------------------------------- /EnumAllHandles/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/EnumAllHandles/pch.cpp -------------------------------------------------------------------------------- /EnumAllHandles/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/EnumAllHandles/pch.h -------------------------------------------------------------------------------- /LiveDump/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/LiveDump/LICENSE -------------------------------------------------------------------------------- /LiveDump/LiveDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/LiveDump/LiveDump.cpp -------------------------------------------------------------------------------- /LiveDump/LiveDump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/LiveDump/LiveDump.hpp -------------------------------------------------------------------------------- /LiveDump/LiveDump.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/LiveDump/LiveDump.vcxproj -------------------------------------------------------------------------------- /LiveDump/LiveDump.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/LiveDump/LiveDump.vcxproj.filters -------------------------------------------------------------------------------- /LiveDump/LiveDump.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/LiveDump/LiveDump.vcxproj.user -------------------------------------------------------------------------------- /LiveDump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/LiveDump/README.md -------------------------------------------------------------------------------- /NVRAM/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/NVRAM/LICENSE -------------------------------------------------------------------------------- /NVRAM/NVRAM.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/NVRAM/NVRAM.vcxproj -------------------------------------------------------------------------------- /NVRAM/NVRAM.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/NVRAM/NVRAM.vcxproj.filters -------------------------------------------------------------------------------- /NVRAM/NVRAM.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/NVRAM/NVRAM.vcxproj.user -------------------------------------------------------------------------------- /NVRAM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/NVRAM/README.md -------------------------------------------------------------------------------- /NVRAM/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/NVRAM/main.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/README.md -------------------------------------------------------------------------------- /ServiceExecuter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/ServiceExecuter/LICENSE -------------------------------------------------------------------------------- /ServiceExecuter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/ServiceExecuter/README.md -------------------------------------------------------------------------------- /ServiceExecuter/ServiceExecuter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/ServiceExecuter/ServiceExecuter.vcxproj -------------------------------------------------------------------------------- /ServiceExecuter/ServiceExecuter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/ServiceExecuter/ServiceExecuter.vcxproj.filters -------------------------------------------------------------------------------- /ServiceExecuter/ServiceExecuter.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/ServiceExecuter/ServiceExecuter.vcxproj.user -------------------------------------------------------------------------------- /ServiceExecuter/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CoWTools/HEAD/ServiceExecuter/main.cpp --------------------------------------------------------------------------------