├── Chapter6 ├── ExportDriver │ ├── ExportDriver.def │ ├── README.txt │ ├── blduser.bat │ ├── kmd.c │ ├── makefile │ ├── makefile_bak.txt │ └── sources ├── IRQL_X64 │ ├── amd64 │ │ └── lib.asm │ ├── datatype.h │ ├── dbgmsg.h │ ├── kmd.c │ ├── makefile │ └── sources └── KMD │ ├── ctrlcode.h │ ├── datatype.h │ ├── dbgmsg.h │ ├── device.h │ ├── kmd.c │ ├── makefile │ └── sources └── README.md /Chapter6/ExportDriver/ExportDriver.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/ExportDriver/ExportDriver.def -------------------------------------------------------------------------------- /Chapter6/ExportDriver/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/ExportDriver/README.txt -------------------------------------------------------------------------------- /Chapter6/ExportDriver/blduser.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/ExportDriver/blduser.bat -------------------------------------------------------------------------------- /Chapter6/ExportDriver/kmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/ExportDriver/kmd.c -------------------------------------------------------------------------------- /Chapter6/ExportDriver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/ExportDriver/makefile -------------------------------------------------------------------------------- /Chapter6/ExportDriver/makefile_bak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/ExportDriver/makefile_bak.txt -------------------------------------------------------------------------------- /Chapter6/ExportDriver/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/ExportDriver/sources -------------------------------------------------------------------------------- /Chapter6/IRQL_X64/amd64/lib.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/IRQL_X64/amd64/lib.asm -------------------------------------------------------------------------------- /Chapter6/IRQL_X64/datatype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/IRQL_X64/datatype.h -------------------------------------------------------------------------------- /Chapter6/IRQL_X64/dbgmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/IRQL_X64/dbgmsg.h -------------------------------------------------------------------------------- /Chapter6/IRQL_X64/kmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/IRQL_X64/kmd.c -------------------------------------------------------------------------------- /Chapter6/IRQL_X64/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/IRQL_X64/makefile -------------------------------------------------------------------------------- /Chapter6/IRQL_X64/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/IRQL_X64/sources -------------------------------------------------------------------------------- /Chapter6/KMD/ctrlcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/KMD/ctrlcode.h -------------------------------------------------------------------------------- /Chapter6/KMD/datatype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/KMD/datatype.h -------------------------------------------------------------------------------- /Chapter6/KMD/dbgmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/KMD/dbgmsg.h -------------------------------------------------------------------------------- /Chapter6/KMD/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/KMD/device.h -------------------------------------------------------------------------------- /Chapter6/KMD/kmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/KMD/kmd.c -------------------------------------------------------------------------------- /Chapter6/KMD/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/KMD/makefile -------------------------------------------------------------------------------- /Chapter6/KMD/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/Chapter6/KMD/sources -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsniper/Rootkit-Arsenal/HEAD/README.md --------------------------------------------------------------------------------