├── .gitattributes ├── .gitignore ├── Capcom.sys ├── CapcomLib.sln ├── CapcomLib ├── CapcomLib.vcxproj ├── CapcomLib.vcxproj.filters ├── DriverLoader.cpp ├── DriverLoader.h ├── KernelHelp.cpp ├── KernelHelp.h ├── PEFile.cpp ├── PEFile.h ├── PELoader.cpp ├── PELoader.h ├── Util.h ├── VulnDrivers │ ├── BaseVulnDriver.cpp │ ├── BaseVulnDriver.h │ ├── CapcomDriver.cpp │ ├── CapcomDriver.h │ ├── IVulnDriver.h │ └── stdafx.h ├── Win32Kernel.h ├── Win32Util.h ├── main.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── HelloWorldPE ├── HelloWorldPE.cpp ├── HelloWorldPE.vcxproj ├── HelloWorldPE.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── README.md ├── SimpleDriver ├── Driver.c ├── SimpleDriver.inf ├── SimpleDriver.vcxproj └── SimpleDriver.vcxproj.filters └── TestDriver ├── Driver.c ├── TestDriver.inf ├── TestDriver.vcxproj └── TestDriver.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/.gitignore -------------------------------------------------------------------------------- /Capcom.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/Capcom.sys -------------------------------------------------------------------------------- /CapcomLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib.sln -------------------------------------------------------------------------------- /CapcomLib/CapcomLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/CapcomLib.vcxproj -------------------------------------------------------------------------------- /CapcomLib/CapcomLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/CapcomLib.vcxproj.filters -------------------------------------------------------------------------------- /CapcomLib/DriverLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/DriverLoader.cpp -------------------------------------------------------------------------------- /CapcomLib/DriverLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/DriverLoader.h -------------------------------------------------------------------------------- /CapcomLib/KernelHelp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/KernelHelp.cpp -------------------------------------------------------------------------------- /CapcomLib/KernelHelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/KernelHelp.h -------------------------------------------------------------------------------- /CapcomLib/PEFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/PEFile.cpp -------------------------------------------------------------------------------- /CapcomLib/PEFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/PEFile.h -------------------------------------------------------------------------------- /CapcomLib/PELoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/PELoader.cpp -------------------------------------------------------------------------------- /CapcomLib/PELoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/PELoader.h -------------------------------------------------------------------------------- /CapcomLib/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/Util.h -------------------------------------------------------------------------------- /CapcomLib/VulnDrivers/BaseVulnDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/VulnDrivers/BaseVulnDriver.cpp -------------------------------------------------------------------------------- /CapcomLib/VulnDrivers/BaseVulnDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/VulnDrivers/BaseVulnDriver.h -------------------------------------------------------------------------------- /CapcomLib/VulnDrivers/CapcomDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/VulnDrivers/CapcomDriver.cpp -------------------------------------------------------------------------------- /CapcomLib/VulnDrivers/CapcomDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/VulnDrivers/CapcomDriver.h -------------------------------------------------------------------------------- /CapcomLib/VulnDrivers/IVulnDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/VulnDrivers/IVulnDriver.h -------------------------------------------------------------------------------- /CapcomLib/VulnDrivers/stdafx.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "..\stdafx.h" -------------------------------------------------------------------------------- /CapcomLib/Win32Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/Win32Kernel.h -------------------------------------------------------------------------------- /CapcomLib/Win32Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/Win32Util.h -------------------------------------------------------------------------------- /CapcomLib/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/main.cpp -------------------------------------------------------------------------------- /CapcomLib/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/stdafx.cpp -------------------------------------------------------------------------------- /CapcomLib/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/stdafx.h -------------------------------------------------------------------------------- /CapcomLib/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/CapcomLib/targetver.h -------------------------------------------------------------------------------- /HelloWorldPE/HelloWorldPE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/HelloWorldPE/HelloWorldPE.cpp -------------------------------------------------------------------------------- /HelloWorldPE/HelloWorldPE.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/HelloWorldPE/HelloWorldPE.vcxproj -------------------------------------------------------------------------------- /HelloWorldPE/HelloWorldPE.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/HelloWorldPE/HelloWorldPE.vcxproj.filters -------------------------------------------------------------------------------- /HelloWorldPE/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/HelloWorldPE/ReadMe.txt -------------------------------------------------------------------------------- /HelloWorldPE/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/HelloWorldPE/stdafx.cpp -------------------------------------------------------------------------------- /HelloWorldPE/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/HelloWorldPE/stdafx.h -------------------------------------------------------------------------------- /HelloWorldPE/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/HelloWorldPE/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/README.md -------------------------------------------------------------------------------- /SimpleDriver/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/SimpleDriver/Driver.c -------------------------------------------------------------------------------- /SimpleDriver/SimpleDriver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/SimpleDriver/SimpleDriver.inf -------------------------------------------------------------------------------- /SimpleDriver/SimpleDriver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/SimpleDriver/SimpleDriver.vcxproj -------------------------------------------------------------------------------- /SimpleDriver/SimpleDriver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/SimpleDriver/SimpleDriver.vcxproj.filters -------------------------------------------------------------------------------- /TestDriver/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/TestDriver/Driver.c -------------------------------------------------------------------------------- /TestDriver/TestDriver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/TestDriver/TestDriver.inf -------------------------------------------------------------------------------- /TestDriver/TestDriver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/TestDriver/TestDriver.vcxproj -------------------------------------------------------------------------------- /TestDriver/TestDriver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbps/CapcomLib/HEAD/TestDriver/TestDriver.vcxproj.filters --------------------------------------------------------------------------------