├── .gitattributes ├── .gitignore ├── Injector ├── Injector.cpp ├── Injector.vcxproj └── Injector.vcxproj.filters ├── KDetect ├── KDetect.cpp ├── KDetect.vcxproj └── KDetect.vcxproj.filters ├── LICENSE.txt ├── README.md ├── RemoteDetect.sln └── SimpleDll ├── SimpleDll.cpp ├── SimpleDll.h ├── SimpleDll.vcxproj ├── SimpleDll.vcxproj.filters ├── cpp.hint ├── dllmain.cpp └── framework.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/RemoteThreadDetection/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/RemoteThreadDetection/HEAD/.gitignore -------------------------------------------------------------------------------- /Injector/Injector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/RemoteThreadDetection/HEAD/Injector/Injector.cpp -------------------------------------------------------------------------------- /Injector/Injector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/RemoteThreadDetection/HEAD/Injector/Injector.vcxproj -------------------------------------------------------------------------------- /Injector/Injector.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/RemoteThreadDetection/HEAD/Injector/Injector.vcxproj.filters -------------------------------------------------------------------------------- /KDetect/KDetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/RemoteThreadDetection/HEAD/KDetect/KDetect.cpp -------------------------------------------------------------------------------- /KDetect/KDetect.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/RemoteThreadDetection/HEAD/KDetect/KDetect.vcxproj -------------------------------------------------------------------------------- /KDetect/KDetect.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/RemoteThreadDetection/HEAD/KDetect/KDetect.vcxproj.filters -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/RemoteThreadDetection/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Remote Thread Detection with a Kernel Driver 2 | -------------------------------------------------------------------------------- /RemoteDetect.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/RemoteThreadDetection/HEAD/RemoteDetect.sln -------------------------------------------------------------------------------- /SimpleDll/SimpleDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/RemoteThreadDetection/HEAD/SimpleDll/SimpleDll.cpp -------------------------------------------------------------------------------- /SimpleDll/SimpleDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/RemoteThreadDetection/HEAD/SimpleDll/SimpleDll.h -------------------------------------------------------------------------------- /SimpleDll/SimpleDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/RemoteThreadDetection/HEAD/SimpleDll/SimpleDll.vcxproj -------------------------------------------------------------------------------- /SimpleDll/SimpleDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/RemoteThreadDetection/HEAD/SimpleDll/SimpleDll.vcxproj.filters -------------------------------------------------------------------------------- /SimpleDll/cpp.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/RemoteThreadDetection/HEAD/SimpleDll/cpp.hint -------------------------------------------------------------------------------- /SimpleDll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/RemoteThreadDetection/HEAD/SimpleDll/dllmain.cpp -------------------------------------------------------------------------------- /SimpleDll/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/RemoteThreadDetection/HEAD/SimpleDll/framework.h --------------------------------------------------------------------------------