├── .gitignore ├── README.md └── srcs ├── linux ├── module │ ├── HIDE │ │ ├── Makefile │ │ └── hideProcess.c │ └── HOOK │ │ ├── IDT │ │ ├── Makefile │ │ ├── hookIDT.c │ │ └── hookIDT.h │ │ └── SYS │ │ ├── Makefile │ │ ├── hookSYS.c │ │ └── hookSYS.h └── test │ ├── mainIDT.c │ └── mainSYS.c └── windows ├── driver ├── BSOD │ ├── Makefile │ ├── deadlands-bsod.c │ ├── deadlands-bsod.h │ └── sources ├── DKOM │ ├── Makefile │ ├── deadlands-dkom.c │ ├── deadlands-dkom.h │ └── sources └── HOOK │ ├── IDT │ ├── Makefile │ ├── deadlands-idt.c │ ├── deadlands-idt.h │ └── sources │ └── SSDT │ ├── Makefile │ ├── deadlands-ssdt.c │ ├── deadlands-ssdt.h │ └── sources └── prgm ├── InstallService.c ├── RemoveService.c ├── SendDriverData.c ├── clean.bat ├── deadlands.dev ├── gui ├── App.xaml ├── App.xaml.cs ├── Deadlands.cs ├── Dictionary1.xaml ├── Driver │ ├── Driver.cpp │ ├── Driver.hpp │ └── Driver.vcproj ├── Images │ ├── Thumbs.db │ ├── bsod.png │ └── deadlands.ico ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Window1.xaml ├── Window1.xaml.cs ├── Wrapper │ ├── CliWrapperDriver.cpp │ ├── CliWrapperDriver.hpp │ └── Wrapper.vcproj ├── deadlands.ico └── deadlands.sln ├── main.c ├── service.h └── test ├── clean.bat ├── nInt0.c └── niNT0.dev /.gitignore: -------------------------------------------------------------------------------- 1 | *~ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/README.md -------------------------------------------------------------------------------- /srcs/linux/module/HIDE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/linux/module/HIDE/Makefile -------------------------------------------------------------------------------- /srcs/linux/module/HIDE/hideProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/linux/module/HIDE/hideProcess.c -------------------------------------------------------------------------------- /srcs/linux/module/HOOK/IDT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/linux/module/HOOK/IDT/Makefile -------------------------------------------------------------------------------- /srcs/linux/module/HOOK/IDT/hookIDT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/linux/module/HOOK/IDT/hookIDT.c -------------------------------------------------------------------------------- /srcs/linux/module/HOOK/IDT/hookIDT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/linux/module/HOOK/IDT/hookIDT.h -------------------------------------------------------------------------------- /srcs/linux/module/HOOK/SYS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/linux/module/HOOK/SYS/Makefile -------------------------------------------------------------------------------- /srcs/linux/module/HOOK/SYS/hookSYS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/linux/module/HOOK/SYS/hookSYS.c -------------------------------------------------------------------------------- /srcs/linux/module/HOOK/SYS/hookSYS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/linux/module/HOOK/SYS/hookSYS.h -------------------------------------------------------------------------------- /srcs/linux/test/mainIDT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/linux/test/mainIDT.c -------------------------------------------------------------------------------- /srcs/linux/test/mainSYS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/linux/test/mainSYS.c -------------------------------------------------------------------------------- /srcs/windows/driver/BSOD/Makefile: -------------------------------------------------------------------------------- 1 | # THIS FILE MUST NEVER BE EDITED IN ANY WAY 2 | !INCLUDE $(NTMAKEENV)\makefile.def 3 | -------------------------------------------------------------------------------- /srcs/windows/driver/BSOD/deadlands-bsod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/driver/BSOD/deadlands-bsod.c -------------------------------------------------------------------------------- /srcs/windows/driver/BSOD/deadlands-bsod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/driver/BSOD/deadlands-bsod.h -------------------------------------------------------------------------------- /srcs/windows/driver/BSOD/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/driver/BSOD/sources -------------------------------------------------------------------------------- /srcs/windows/driver/DKOM/Makefile: -------------------------------------------------------------------------------- 1 | # THIS FILE MUST NEVER BE EDITED IN ANY WAY 2 | !INCLUDE $(NTMAKEENV)\makefile.def 3 | -------------------------------------------------------------------------------- /srcs/windows/driver/DKOM/deadlands-dkom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/driver/DKOM/deadlands-dkom.c -------------------------------------------------------------------------------- /srcs/windows/driver/DKOM/deadlands-dkom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/driver/DKOM/deadlands-dkom.h -------------------------------------------------------------------------------- /srcs/windows/driver/DKOM/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/driver/DKOM/sources -------------------------------------------------------------------------------- /srcs/windows/driver/HOOK/IDT/Makefile: -------------------------------------------------------------------------------- 1 | # THIS FILE MUST NEVER BE EDITED IN ANY WAY 2 | !INCLUDE $(NTMAKEENV)\makefile.def 3 | -------------------------------------------------------------------------------- /srcs/windows/driver/HOOK/IDT/deadlands-idt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/driver/HOOK/IDT/deadlands-idt.c -------------------------------------------------------------------------------- /srcs/windows/driver/HOOK/IDT/deadlands-idt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/driver/HOOK/IDT/deadlands-idt.h -------------------------------------------------------------------------------- /srcs/windows/driver/HOOK/IDT/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/driver/HOOK/IDT/sources -------------------------------------------------------------------------------- /srcs/windows/driver/HOOK/SSDT/Makefile: -------------------------------------------------------------------------------- 1 | # THIS FILE MUST NEVER BE EDITED IN ANY WAY 2 | !INCLUDE $(NTMAKEENV)\makefile.def 3 | -------------------------------------------------------------------------------- /srcs/windows/driver/HOOK/SSDT/deadlands-ssdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/driver/HOOK/SSDT/deadlands-ssdt.c -------------------------------------------------------------------------------- /srcs/windows/driver/HOOK/SSDT/deadlands-ssdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/driver/HOOK/SSDT/deadlands-ssdt.h -------------------------------------------------------------------------------- /srcs/windows/driver/HOOK/SSDT/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/driver/HOOK/SSDT/sources -------------------------------------------------------------------------------- /srcs/windows/prgm/InstallService.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/InstallService.c -------------------------------------------------------------------------------- /srcs/windows/prgm/RemoveService.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/RemoveService.c -------------------------------------------------------------------------------- /srcs/windows/prgm/SendDriverData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/SendDriverData.c -------------------------------------------------------------------------------- /srcs/windows/prgm/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/clean.bat -------------------------------------------------------------------------------- /srcs/windows/prgm/deadlands.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/deadlands.dev -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/App.xaml -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/App.xaml.cs -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/Deadlands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/Deadlands.cs -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/Dictionary1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/Dictionary1.xaml -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/Driver/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/Driver/Driver.cpp -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/Driver/Driver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/Driver/Driver.hpp -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/Driver/Driver.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/Driver/Driver.vcproj -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/Images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/Images/Thumbs.db -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/Images/bsod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/Images/bsod.png -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/Images/deadlands.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/Images/deadlands.ico -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/Properties/Resources.resx -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/Properties/Settings.settings -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/Window1.xaml -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/Window1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/Window1.xaml.cs -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/Wrapper/CliWrapperDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/Wrapper/CliWrapperDriver.cpp -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/Wrapper/CliWrapperDriver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/Wrapper/CliWrapperDriver.hpp -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/Wrapper/Wrapper.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/Wrapper/Wrapper.vcproj -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/deadlands.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/deadlands.ico -------------------------------------------------------------------------------- /srcs/windows/prgm/gui/deadlands.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/gui/deadlands.sln -------------------------------------------------------------------------------- /srcs/windows/prgm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/main.c -------------------------------------------------------------------------------- /srcs/windows/prgm/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/service.h -------------------------------------------------------------------------------- /srcs/windows/prgm/test/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/test/clean.bat -------------------------------------------------------------------------------- /srcs/windows/prgm/test/nInt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/test/nInt0.c -------------------------------------------------------------------------------- /srcs/windows/prgm/test/niNT0.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majdi/deadlands/HEAD/srcs/windows/prgm/test/niNT0.dev --------------------------------------------------------------------------------