├── .gitignore ├── .vs └── ProcessInjection │ └── v14 │ └── .suo ├── CommonInjection ├── CommonInjection.vcxproj ├── CommonInjection.vcxproj.filters ├── CommonInjection.vcxproj.user ├── Debug │ ├── CommonInjection.log │ ├── CommonInjection.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── CommonInjection.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── main.obj.enc │ ├── vc140.idb │ └── vc140.pdb ├── Release │ ├── CommonInjection.log │ ├── CommonInjection.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── CommonInjection.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ └── vc140.pdb ├── main.cpp └── x64 │ ├── Debug │ └── CommonInjection.log │ └── Release │ └── CommonInjection.log ├── DLLTest ├── DLLTest.cpp ├── DLLTest.vcxproj ├── DLLTest.vcxproj.filters ├── Debug │ ├── DLLTest.Build.CppClean.log │ └── DLLTest.log ├── InjectionDLL.h ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── x64 │ ├── Debug │ └── DLLTest.log │ └── Release │ └── DLLTest.log ├── EXEPayload ├── Debug │ └── EXEPayload.log ├── EXEPayload.vcxproj ├── EXEPayload.vcxproj.filters ├── main.cpp ├── main.h └── x64 │ └── Debug │ └── EXEPayload.log ├── Gargoyle ├── Gargoyle.cpp ├── Gargoyle.vcxproj ├── Gargoyle.vcxproj.filters ├── ReadMe.txt ├── gadget.nasm ├── setup.nasm └── stdafx.h ├── HollowingDropper ├── Debug │ └── HollowingDropper.log ├── HollowingDropper.vcxproj ├── HollowingDropper.vcxproj.filters ├── HollowingProcess.cpp ├── PE.cpp ├── PE.h ├── main.cpp ├── stdafx.h └── x64 │ └── Debug │ └── HollowingDropper.log ├── Images ├── PE - Copy.jpg └── PEB.jpg ├── InjectionDLL ├── Debug │ ├── InjectionDLL.Build.CppClean.log │ └── InjectionDLL.log ├── InjectionDLL.cpp ├── InjectionDLL.def ├── InjectionDLL.h ├── InjectionDLL.vcxproj ├── InjectionDLL.vcxproj.filters ├── InjectionDLL.vcxproj.user ├── ReadMe.txt ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── x64 │ ├── Debug │ └── InjectionDLL.log │ └── Release │ └── InjectionDLL.log ├── LICENSE ├── MEMORY MODULE ├── .vs │ └── MEMORY MODULE │ │ └── v14 │ │ └── .suo ├── Debug │ ├── MEMORY MODULE.log │ └── MEMORY MODULE.tlog │ │ └── unsuccessfulbuild ├── Loader.c ├── Loader.h ├── MEMORY MODULE.vcxproj ├── MEMORY MODULE.vcxproj.filters ├── MoudleMain.cpp └── x64 │ └── Debug │ └── MEMORY MODULE.log ├── MemroyInjectionDLL ├── Debug │ └── MemroyInjectionDLL.log ├── MemroyInjectionDLL.cpp ├── MemroyInjectionDLL.h ├── MemroyInjectionDLL.vcxproj ├── MemroyInjectionDLL.vcxproj.filters ├── ReadMe.txt ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── x64 │ └── Debug │ └── MemroyInjectionDLL.log ├── ProcessInjection.VC.db ├── ProcessInjection.sln ├── README.md ├── ReflectiveDLL ├── Debug │ ├── ReflectiveDLL.log │ ├── ReflectiveDLL.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── ReflectiveDLL.lastbuildstate │ │ └── unsuccessfulbuild │ ├── vc140.idb │ └── vc140.pdb ├── ReadMe.txt ├── ReflectiveDLL.cpp ├── ReflectiveDLL.def ├── ReflectiveDLL.vcxproj ├── ReflectiveDLL.vcxproj.filters ├── ReflectiveLoader.h ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── x64 │ ├── Debug │ ├── ReflectiveDLL.Build.CppClean.log │ ├── ReflectiveDLL.log │ ├── ReflectiveDLL.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── ReflectiveDLL.lastbuildstate │ │ ├── ReflectiveDLL.write.1u.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── vc140.idb │ └── vc140.pdb │ └── Release │ └── ReflectiveDLL.log ├── ReflectiveDLLInjection ├── .vs │ └── ReflectiveDLLInjection │ │ └── v14 │ │ └── .suo ├── Debug │ └── ReflectiveDLLInjection.log ├── LoadRemoteLibraryR.cpp ├── LoadRemoteLibraryR.h ├── ReadMe.txt ├── ReflectiveDLLInjection.cpp ├── ReflectiveDLLInjection.h ├── ReflectiveDLLInjection.vcxproj ├── ReflectiveDLLInjection.vcxproj.filters ├── ReflectiveDLLInjection.vcxproj.user ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── x64 │ ├── Debug │ ├── ReflectiveDLLInjection.Build.CppClean.log │ └── ReflectiveDLLInjection.log │ └── Release │ └── ReflectiveDLLInjection.log ├── ReflectiveDLLPEForm ├── ReflectiveDLLPEForm.vcxproj ├── ReflectiveDLLPEForm.vcxproj.filters ├── ReflectiveDemo.cpp ├── ReflectiveLoader.c ├── ReflectiveLoader.h └── x64 │ ├── Debug │ ├── Reflecti.3AD41A2B.tlog │ │ └── unsuccessfulbuild │ └── ReflectiveDLLPEForm.log │ └── Release │ └── ReflectiveDLLPEForm.log └── ShellcodeInjection ├── ShellcodeInjection.vcxproj ├── ShellcodeInjection.vcxproj.filters └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/ProcessInjection/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/.vs/ProcessInjection/v14/.suo -------------------------------------------------------------------------------- /CommonInjection/CommonInjection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/CommonInjection.vcxproj -------------------------------------------------------------------------------- /CommonInjection/CommonInjection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/CommonInjection.vcxproj.filters -------------------------------------------------------------------------------- /CommonInjection/CommonInjection.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/CommonInjection.vcxproj.user -------------------------------------------------------------------------------- /CommonInjection/Debug/CommonInjection.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Debug/CommonInjection.log -------------------------------------------------------------------------------- /CommonInjection/Debug/CommonInjection.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Debug/CommonInjection.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /CommonInjection/Debug/CommonInjection.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Debug/CommonInjection.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /CommonInjection/Debug/CommonInjection.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Debug/CommonInjection.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /CommonInjection/Debug/CommonInjection.tlog/CommonInjection.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Debug/CommonInjection.tlog/CommonInjection.lastbuildstate -------------------------------------------------------------------------------- /CommonInjection/Debug/CommonInjection.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Debug/CommonInjection.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /CommonInjection/Debug/CommonInjection.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Debug/CommonInjection.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /CommonInjection/Debug/CommonInjection.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Debug/CommonInjection.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /CommonInjection/Debug/main.obj.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Debug/main.obj.enc -------------------------------------------------------------------------------- /CommonInjection/Debug/vc140.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Debug/vc140.idb -------------------------------------------------------------------------------- /CommonInjection/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Debug/vc140.pdb -------------------------------------------------------------------------------- /CommonInjection/Release/CommonInjection.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Release/CommonInjection.log -------------------------------------------------------------------------------- /CommonInjection/Release/CommonInjection.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Release/CommonInjection.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /CommonInjection/Release/CommonInjection.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Release/CommonInjection.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /CommonInjection/Release/CommonInjection.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Release/CommonInjection.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /CommonInjection/Release/CommonInjection.tlog/CommonInjection.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Release/CommonInjection.tlog/CommonInjection.lastbuildstate -------------------------------------------------------------------------------- /CommonInjection/Release/CommonInjection.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Release/CommonInjection.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /CommonInjection/Release/CommonInjection.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Release/CommonInjection.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /CommonInjection/Release/CommonInjection.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Release/CommonInjection.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /CommonInjection/Release/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/Release/vc140.pdb -------------------------------------------------------------------------------- /CommonInjection/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/CommonInjection/main.cpp -------------------------------------------------------------------------------- /CommonInjection/x64/Debug/CommonInjection.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CommonInjection/x64/Release/CommonInjection.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DLLTest/DLLTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/DLLTest/DLLTest.cpp -------------------------------------------------------------------------------- /DLLTest/DLLTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/DLLTest/DLLTest.vcxproj -------------------------------------------------------------------------------- /DLLTest/DLLTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/DLLTest/DLLTest.vcxproj.filters -------------------------------------------------------------------------------- /DLLTest/Debug/DLLTest.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/DLLTest/Debug/DLLTest.Build.CppClean.log -------------------------------------------------------------------------------- /DLLTest/Debug/DLLTest.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DLLTest/InjectionDLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/DLLTest/InjectionDLL.h -------------------------------------------------------------------------------- /DLLTest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/DLLTest/ReadMe.txt -------------------------------------------------------------------------------- /DLLTest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/DLLTest/stdafx.cpp -------------------------------------------------------------------------------- /DLLTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/DLLTest/stdafx.h -------------------------------------------------------------------------------- /DLLTest/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/DLLTest/targetver.h -------------------------------------------------------------------------------- /DLLTest/x64/Debug/DLLTest.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DLLTest/x64/Release/DLLTest.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EXEPayload/Debug/EXEPayload.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EXEPayload/EXEPayload.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/EXEPayload/EXEPayload.vcxproj -------------------------------------------------------------------------------- /EXEPayload/EXEPayload.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/EXEPayload/EXEPayload.vcxproj.filters -------------------------------------------------------------------------------- /EXEPayload/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/EXEPayload/main.cpp -------------------------------------------------------------------------------- /EXEPayload/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/EXEPayload/main.h -------------------------------------------------------------------------------- /EXEPayload/x64/Debug/EXEPayload.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gargoyle/Gargoyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/Gargoyle/Gargoyle.cpp -------------------------------------------------------------------------------- /Gargoyle/Gargoyle.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/Gargoyle/Gargoyle.vcxproj -------------------------------------------------------------------------------- /Gargoyle/Gargoyle.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/Gargoyle/Gargoyle.vcxproj.filters -------------------------------------------------------------------------------- /Gargoyle/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/Gargoyle/ReadMe.txt -------------------------------------------------------------------------------- /Gargoyle/gadget.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/Gargoyle/gadget.nasm -------------------------------------------------------------------------------- /Gargoyle/setup.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/Gargoyle/setup.nasm -------------------------------------------------------------------------------- /Gargoyle/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/Gargoyle/stdafx.h -------------------------------------------------------------------------------- /HollowingDropper/Debug/HollowingDropper.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HollowingDropper/HollowingDropper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/HollowingDropper/HollowingDropper.vcxproj -------------------------------------------------------------------------------- /HollowingDropper/HollowingDropper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/HollowingDropper/HollowingDropper.vcxproj.filters -------------------------------------------------------------------------------- /HollowingDropper/HollowingProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/HollowingDropper/HollowingProcess.cpp -------------------------------------------------------------------------------- /HollowingDropper/PE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/HollowingDropper/PE.cpp -------------------------------------------------------------------------------- /HollowingDropper/PE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/HollowingDropper/PE.h -------------------------------------------------------------------------------- /HollowingDropper/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/HollowingDropper/main.cpp -------------------------------------------------------------------------------- /HollowingDropper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/HollowingDropper/stdafx.h -------------------------------------------------------------------------------- /HollowingDropper/x64/Debug/HollowingDropper.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Images/PE - Copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/Images/PE - Copy.jpg -------------------------------------------------------------------------------- /Images/PEB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/Images/PEB.jpg -------------------------------------------------------------------------------- /InjectionDLL/Debug/InjectionDLL.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/InjectionDLL/Debug/InjectionDLL.Build.CppClean.log -------------------------------------------------------------------------------- /InjectionDLL/Debug/InjectionDLL.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InjectionDLL/InjectionDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/InjectionDLL/InjectionDLL.cpp -------------------------------------------------------------------------------- /InjectionDLL/InjectionDLL.def: -------------------------------------------------------------------------------- 1 | LIBRARY InjectionDLL 2 | EXPORTS 3 | Connect @ 1 -------------------------------------------------------------------------------- /InjectionDLL/InjectionDLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/InjectionDLL/InjectionDLL.h -------------------------------------------------------------------------------- /InjectionDLL/InjectionDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/InjectionDLL/InjectionDLL.vcxproj -------------------------------------------------------------------------------- /InjectionDLL/InjectionDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/InjectionDLL/InjectionDLL.vcxproj.filters -------------------------------------------------------------------------------- /InjectionDLL/InjectionDLL.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/InjectionDLL/InjectionDLL.vcxproj.user -------------------------------------------------------------------------------- /InjectionDLL/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/InjectionDLL/ReadMe.txt -------------------------------------------------------------------------------- /InjectionDLL/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/InjectionDLL/dllmain.cpp -------------------------------------------------------------------------------- /InjectionDLL/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/InjectionDLL/stdafx.cpp -------------------------------------------------------------------------------- /InjectionDLL/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/InjectionDLL/stdafx.h -------------------------------------------------------------------------------- /InjectionDLL/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/InjectionDLL/targetver.h -------------------------------------------------------------------------------- /InjectionDLL/x64/Debug/InjectionDLL.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InjectionDLL/x64/Release/InjectionDLL.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/LICENSE -------------------------------------------------------------------------------- /MEMORY MODULE/.vs/MEMORY MODULE/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/MEMORY MODULE/.vs/MEMORY MODULE/v14/.suo -------------------------------------------------------------------------------- /MEMORY MODULE/Debug/MEMORY MODULE.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MEMORY MODULE/Debug/MEMORY MODULE.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MEMORY MODULE/Loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/MEMORY MODULE/Loader.c -------------------------------------------------------------------------------- /MEMORY MODULE/Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/MEMORY MODULE/Loader.h -------------------------------------------------------------------------------- /MEMORY MODULE/MEMORY MODULE.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/MEMORY MODULE/MEMORY MODULE.vcxproj -------------------------------------------------------------------------------- /MEMORY MODULE/MEMORY MODULE.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/MEMORY MODULE/MEMORY MODULE.vcxproj.filters -------------------------------------------------------------------------------- /MEMORY MODULE/MoudleMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/MEMORY MODULE/MoudleMain.cpp -------------------------------------------------------------------------------- /MEMORY MODULE/x64/Debug/MEMORY MODULE.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MemroyInjectionDLL/Debug/MemroyInjectionDLL.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MemroyInjectionDLL/MemroyInjectionDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/MemroyInjectionDLL/MemroyInjectionDLL.cpp -------------------------------------------------------------------------------- /MemroyInjectionDLL/MemroyInjectionDLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/MemroyInjectionDLL/MemroyInjectionDLL.h -------------------------------------------------------------------------------- /MemroyInjectionDLL/MemroyInjectionDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/MemroyInjectionDLL/MemroyInjectionDLL.vcxproj -------------------------------------------------------------------------------- /MemroyInjectionDLL/MemroyInjectionDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/MemroyInjectionDLL/MemroyInjectionDLL.vcxproj.filters -------------------------------------------------------------------------------- /MemroyInjectionDLL/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/MemroyInjectionDLL/ReadMe.txt -------------------------------------------------------------------------------- /MemroyInjectionDLL/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/MemroyInjectionDLL/dllmain.cpp -------------------------------------------------------------------------------- /MemroyInjectionDLL/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/MemroyInjectionDLL/stdafx.cpp -------------------------------------------------------------------------------- /MemroyInjectionDLL/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/MemroyInjectionDLL/stdafx.h -------------------------------------------------------------------------------- /MemroyInjectionDLL/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/MemroyInjectionDLL/targetver.h -------------------------------------------------------------------------------- /MemroyInjectionDLL/x64/Debug/MemroyInjectionDLL.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ProcessInjection.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ProcessInjection.VC.db -------------------------------------------------------------------------------- /ProcessInjection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ProcessInjection.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/README.md -------------------------------------------------------------------------------- /ReflectiveDLL/Debug/ReflectiveDLL.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/Debug/ReflectiveDLL.log -------------------------------------------------------------------------------- /ReflectiveDLL/Debug/ReflectiveDLL.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/Debug/ReflectiveDLL.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /ReflectiveDLL/Debug/ReflectiveDLL.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/Debug/ReflectiveDLL.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /ReflectiveDLL/Debug/ReflectiveDLL.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/Debug/ReflectiveDLL.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /ReflectiveDLL/Debug/ReflectiveDLL.tlog/ReflectiveDLL.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/Debug/ReflectiveDLL.tlog/ReflectiveDLL.lastbuildstate -------------------------------------------------------------------------------- /ReflectiveDLL/Debug/ReflectiveDLL.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReflectiveDLL/Debug/vc140.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/Debug/vc140.idb -------------------------------------------------------------------------------- /ReflectiveDLL/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/Debug/vc140.pdb -------------------------------------------------------------------------------- /ReflectiveDLL/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/ReadMe.txt -------------------------------------------------------------------------------- /ReflectiveDLL/ReflectiveDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/ReflectiveDLL.cpp -------------------------------------------------------------------------------- /ReflectiveDLL/ReflectiveDLL.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/ReflectiveDLL.def -------------------------------------------------------------------------------- /ReflectiveDLL/ReflectiveDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/ReflectiveDLL.vcxproj -------------------------------------------------------------------------------- /ReflectiveDLL/ReflectiveDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/ReflectiveDLL.vcxproj.filters -------------------------------------------------------------------------------- /ReflectiveDLL/ReflectiveLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/ReflectiveLoader.h -------------------------------------------------------------------------------- /ReflectiveDLL/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/dllmain.cpp -------------------------------------------------------------------------------- /ReflectiveDLL/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/stdafx.cpp -------------------------------------------------------------------------------- /ReflectiveDLL/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/stdafx.h -------------------------------------------------------------------------------- /ReflectiveDLL/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/targetver.h -------------------------------------------------------------------------------- /ReflectiveDLL/x64/Debug/ReflectiveDLL.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/x64/Debug/ReflectiveDLL.Build.CppClean.log -------------------------------------------------------------------------------- /ReflectiveDLL/x64/Debug/ReflectiveDLL.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/x64/Debug/ReflectiveDLL.log -------------------------------------------------------------------------------- /ReflectiveDLL/x64/Debug/ReflectiveDLL.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/x64/Debug/ReflectiveDLL.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /ReflectiveDLL/x64/Debug/ReflectiveDLL.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/x64/Debug/ReflectiveDLL.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /ReflectiveDLL/x64/Debug/ReflectiveDLL.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/x64/Debug/ReflectiveDLL.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /ReflectiveDLL/x64/Debug/ReflectiveDLL.tlog/ReflectiveDLL.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/x64/Debug/ReflectiveDLL.tlog/ReflectiveDLL.lastbuildstate -------------------------------------------------------------------------------- /ReflectiveDLL/x64/Debug/ReflectiveDLL.tlog/ReflectiveDLL.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/x64/Debug/ReflectiveDLL.tlog/ReflectiveDLL.write.1u.tlog -------------------------------------------------------------------------------- /ReflectiveDLL/x64/Debug/ReflectiveDLL.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/x64/Debug/ReflectiveDLL.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /ReflectiveDLL/x64/Debug/ReflectiveDLL.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/x64/Debug/ReflectiveDLL.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /ReflectiveDLL/x64/Debug/ReflectiveDLL.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/x64/Debug/ReflectiveDLL.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /ReflectiveDLL/x64/Debug/vc140.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/x64/Debug/vc140.idb -------------------------------------------------------------------------------- /ReflectiveDLL/x64/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLL/x64/Debug/vc140.pdb -------------------------------------------------------------------------------- /ReflectiveDLL/x64/Release/ReflectiveDLL.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReflectiveDLLInjection/.vs/ReflectiveDLLInjection/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLLInjection/.vs/ReflectiveDLLInjection/v14/.suo -------------------------------------------------------------------------------- /ReflectiveDLLInjection/Debug/ReflectiveDLLInjection.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReflectiveDLLInjection/LoadRemoteLibraryR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLLInjection/LoadRemoteLibraryR.cpp -------------------------------------------------------------------------------- /ReflectiveDLLInjection/LoadRemoteLibraryR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLLInjection/LoadRemoteLibraryR.h -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLLInjection/ReadMe.txt -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveDLLInjection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLLInjection/ReflectiveDLLInjection.cpp -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveDLLInjection.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveDLLInjection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLLInjection/ReflectiveDLLInjection.vcxproj -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveDLLInjection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLLInjection/ReflectiveDLLInjection.vcxproj.filters -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveDLLInjection.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLLInjection/ReflectiveDLLInjection.vcxproj.user -------------------------------------------------------------------------------- /ReflectiveDLLInjection/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLLInjection/stdafx.cpp -------------------------------------------------------------------------------- /ReflectiveDLLInjection/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLLInjection/stdafx.h -------------------------------------------------------------------------------- /ReflectiveDLLInjection/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLLInjection/targetver.h -------------------------------------------------------------------------------- /ReflectiveDLLInjection/x64/Debug/ReflectiveDLLInjection.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLLInjection/x64/Debug/ReflectiveDLLInjection.Build.CppClean.log -------------------------------------------------------------------------------- /ReflectiveDLLInjection/x64/Debug/ReflectiveDLLInjection.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReflectiveDLLInjection/x64/Release/ReflectiveDLLInjection.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReflectiveDLLPEForm/ReflectiveDLLPEForm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLLPEForm/ReflectiveDLLPEForm.vcxproj -------------------------------------------------------------------------------- /ReflectiveDLLPEForm/ReflectiveDLLPEForm.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLLPEForm/ReflectiveDLLPEForm.vcxproj.filters -------------------------------------------------------------------------------- /ReflectiveDLLPEForm/ReflectiveDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLLPEForm/ReflectiveDemo.cpp -------------------------------------------------------------------------------- /ReflectiveDLLPEForm/ReflectiveLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLLPEForm/ReflectiveLoader.c -------------------------------------------------------------------------------- /ReflectiveDLLPEForm/ReflectiveLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ReflectiveDLLPEForm/ReflectiveLoader.h -------------------------------------------------------------------------------- /ReflectiveDLLPEForm/x64/Debug/Reflecti.3AD41A2B.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReflectiveDLLPEForm/x64/Debug/ReflectiveDLLPEForm.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReflectiveDLLPEForm/x64/Release/ReflectiveDLLPEForm.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShellcodeInjection/ShellcodeInjection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ShellcodeInjection/ShellcodeInjection.vcxproj -------------------------------------------------------------------------------- /ShellcodeInjection/ShellcodeInjection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ShellcodeInjection/ShellcodeInjection.vcxproj.filters -------------------------------------------------------------------------------- /ShellcodeInjection/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud01oo/ProcessInjection/HEAD/ShellcodeInjection/main.cpp --------------------------------------------------------------------------------