├── .gitattributes ├── .gitignore ├── Input_dll ├── Input_dll.vcxproj ├── Input_dll.vcxproj.filters ├── Input_dll.vcxproj.user └── main.cpp ├── Loader ├── Loader.vcxproj ├── Loader.vcxproj.filters ├── Loader.vcxproj.user └── loader.cpp ├── MemLoadDll.h ├── MyDll ├── MyDll.cpp ├── MyDll.vcxproj ├── MyDll.vcxproj.filters ├── MyDll.vcxproj.user ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── _global.cpp ├── _global.h ├── bin └── driver_inject_x64.sys ├── driver_inject.cpp ├── driver_inject.sln ├── driver_inject.v12.suo ├── driver_inject.vcxproj ├── driver_inject.vcxproj.filters ├── driver_inject.vcxproj.user ├── hooklib.cpp ├── hooklib.h ├── misc.cpp ├── misc.h ├── ntdll.cpp ├── ntdll.h ├── pe.cpp ├── pe.h ├── readme.md ├── snapshot1.jpg ├── ssdt.cpp ├── ssdt.h ├── undocumented.cpp └── undocumented.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/.gitignore -------------------------------------------------------------------------------- /Input_dll/Input_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/Input_dll/Input_dll.vcxproj -------------------------------------------------------------------------------- /Input_dll/Input_dll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/Input_dll/Input_dll.vcxproj.filters -------------------------------------------------------------------------------- /Input_dll/Input_dll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/Input_dll/Input_dll.vcxproj.user -------------------------------------------------------------------------------- /Input_dll/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/Input_dll/main.cpp -------------------------------------------------------------------------------- /Loader/Loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/Loader/Loader.vcxproj -------------------------------------------------------------------------------- /Loader/Loader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/Loader/Loader.vcxproj.filters -------------------------------------------------------------------------------- /Loader/Loader.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/Loader/Loader.vcxproj.user -------------------------------------------------------------------------------- /Loader/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/Loader/loader.cpp -------------------------------------------------------------------------------- /MemLoadDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/MemLoadDll.h -------------------------------------------------------------------------------- /MyDll/MyDll.cpp: -------------------------------------------------------------------------------- 1 | // MyDll.cpp : 定义 DLL 应用程序的导出函数。 2 | // 3 | 4 | #include "stdafx.h" 5 | 6 | 7 | -------------------------------------------------------------------------------- /MyDll/MyDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/MyDll/MyDll.vcxproj -------------------------------------------------------------------------------- /MyDll/MyDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/MyDll/MyDll.vcxproj.filters -------------------------------------------------------------------------------- /MyDll/MyDll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/MyDll/MyDll.vcxproj.user -------------------------------------------------------------------------------- /MyDll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/MyDll/dllmain.cpp -------------------------------------------------------------------------------- /MyDll/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /MyDll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/MyDll/stdafx.h -------------------------------------------------------------------------------- /MyDll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/MyDll/targetver.h -------------------------------------------------------------------------------- /_global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/_global.cpp -------------------------------------------------------------------------------- /_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/_global.h -------------------------------------------------------------------------------- /bin/driver_inject_x64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/bin/driver_inject_x64.sys -------------------------------------------------------------------------------- /driver_inject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/driver_inject.cpp -------------------------------------------------------------------------------- /driver_inject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/driver_inject.sln -------------------------------------------------------------------------------- /driver_inject.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/driver_inject.v12.suo -------------------------------------------------------------------------------- /driver_inject.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/driver_inject.vcxproj -------------------------------------------------------------------------------- /driver_inject.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/driver_inject.vcxproj.filters -------------------------------------------------------------------------------- /driver_inject.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/driver_inject.vcxproj.user -------------------------------------------------------------------------------- /hooklib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/hooklib.cpp -------------------------------------------------------------------------------- /hooklib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/hooklib.h -------------------------------------------------------------------------------- /misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/misc.cpp -------------------------------------------------------------------------------- /misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/misc.h -------------------------------------------------------------------------------- /ntdll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/ntdll.cpp -------------------------------------------------------------------------------- /ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/ntdll.h -------------------------------------------------------------------------------- /pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/pe.cpp -------------------------------------------------------------------------------- /pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/pe.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/readme.md -------------------------------------------------------------------------------- /snapshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/snapshot1.jpg -------------------------------------------------------------------------------- /ssdt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/ssdt.cpp -------------------------------------------------------------------------------- /ssdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/ssdt.h -------------------------------------------------------------------------------- /undocumented.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/undocumented.cpp -------------------------------------------------------------------------------- /undocumented.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/DriverInjectDll/HEAD/undocumented.h --------------------------------------------------------------------------------