├── .gitignore ├── DriverEntry.c ├── DriverEntry.h ├── KPDB.inf ├── KPDB.sln ├── KPDB.vcxproj ├── KPDB.vcxproj.filters ├── README.md ├── kpdb.c ├── kpdb.h ├── ntutils.c ├── ntutils.h ├── tpi.c └── tpi.h /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | x64 -------------------------------------------------------------------------------- /DriverEntry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetRektBoy724/KPDB/HEAD/DriverEntry.c -------------------------------------------------------------------------------- /DriverEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetRektBoy724/KPDB/HEAD/DriverEntry.h -------------------------------------------------------------------------------- /KPDB.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetRektBoy724/KPDB/HEAD/KPDB.inf -------------------------------------------------------------------------------- /KPDB.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetRektBoy724/KPDB/HEAD/KPDB.sln -------------------------------------------------------------------------------- /KPDB.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetRektBoy724/KPDB/HEAD/KPDB.vcxproj -------------------------------------------------------------------------------- /KPDB.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetRektBoy724/KPDB/HEAD/KPDB.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetRektBoy724/KPDB/HEAD/README.md -------------------------------------------------------------------------------- /kpdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetRektBoy724/KPDB/HEAD/kpdb.c -------------------------------------------------------------------------------- /kpdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetRektBoy724/KPDB/HEAD/kpdb.h -------------------------------------------------------------------------------- /ntutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetRektBoy724/KPDB/HEAD/ntutils.c -------------------------------------------------------------------------------- /ntutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetRektBoy724/KPDB/HEAD/ntutils.h -------------------------------------------------------------------------------- /tpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetRektBoy724/KPDB/HEAD/tpi.c -------------------------------------------------------------------------------- /tpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetRektBoy724/KPDB/HEAD/tpi.h --------------------------------------------------------------------------------