├── .gitattributes ├── .gitignore ├── InjectSolution.sdf ├── InjectSolution.sln ├── InjectSolution.v12.suo ├── InjectSolution ├── Debug │ ├── InjectSolution.log │ ├── InjectSolution.obj │ ├── InjectSolution.pch │ ├── InjectSolution.res │ ├── stdafx.obj │ └── vc120.idb ├── InjectSolution.cpp ├── InjectSolution.h ├── InjectSolution.ico ├── InjectSolution.rc ├── InjectSolution.vcxproj ├── InjectSolution.vcxproj.filters ├── ReadMe.txt ├── Resource.h ├── small.ico ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── InjectionDll ├── Debug │ └── vc120.idb ├── InjectionDll.cpp ├── InjectionDll.vcxproj ├── InjectionDll.vcxproj.filters ├── InjectionDll.vcxproj.user ├── ReadMe.txt ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── x64 │ └── Debug │ └── vc120.idb ├── README.txt ├── RegisterInject ├── Debug │ ├── RegisterInject.log │ ├── RegisterInject.obj │ ├── RegisterInject.pch │ ├── RegisterInject.res │ ├── stdafx.obj │ └── vc120.idb ├── ReadMe.txt ├── RegisterInject.cpp ├── RegisterInject.h ├── RegisterInject.ico ├── RegisterInject.rc ├── RegisterInject.vcxproj ├── RegisterInject.vcxproj.filters ├── Resource.h ├── small.ico ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── Release └── InjectionDll.dll ├── ReliableProcessInject ├── Debug │ └── ReliableProcessInject.res ├── ReadMe.txt ├── ReliableProcessInject.aps ├── ReliableProcessInject.cpp ├── ReliableProcessInject.h ├── ReliableProcessInject.ico ├── ReliableProcessInject.rc ├── ReliableProcessInject.vcxproj ├── ReliableProcessInject.vcxproj.filters ├── Resource.h ├── small.ico ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── ReliableProcessInjectDll ├── ReadMe.txt ├── ReliableProcessInjectDll.cpp ├── ReliableProcessInjectDll.vcxproj ├── ReliableProcessInjectDll.vcxproj.filters ├── dllmain.cpp ├── dllmain.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── RemoteThreadInject ├── Debug │ ├── RemoteThreadInject.res │ └── vc120.idb ├── ReadMe.txt ├── RemoteThreadInject.cpp ├── RemoteThreadInject.h ├── RemoteThreadInject.ico ├── RemoteThreadInject.rc ├── RemoteThreadInject.vcxproj ├── RemoteThreadInject.vcxproj.filters ├── Resource.h ├── small.ico ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── x64 │ ├── Debug │ ├── RemoteThreadInject.res │ └── vc120.idb │ └── Release │ └── RemoteThreadInject.res ├── ipch ├── injectiondll-8e0a3a0f │ ├── injectiondll-219bf8a5.ipch │ ├── injectiondll-7523506b.ipch │ └── injectiondll-d539fd29.ipch ├── injectsolution-8a73b5ba │ └── injectsolution-fb674b86.ipch ├── registerinject-2d72d435 │ └── registerinject-6a3b0dce.ipch └── remotethreadinject-bb39a53 │ ├── remotethreadinject-12948f85.ipch │ ├── remotethreadinject-1d2d990d.ipch │ └── remotethreadinject-f84e5c4b.ipch └── x64 ├── Debug ├── InjectionDll.dll ├── InjectionDll.ilk ├── RemoteThreadInject.exe └── RemoteThreadInject.ilk └── Release └── RemoteThreadInject.exe /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/.gitignore -------------------------------------------------------------------------------- /InjectSolution.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution.sdf -------------------------------------------------------------------------------- /InjectSolution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution.sln -------------------------------------------------------------------------------- /InjectSolution.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution.v12.suo -------------------------------------------------------------------------------- /InjectSolution/Debug/InjectSolution.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution/Debug/InjectSolution.log -------------------------------------------------------------------------------- /InjectSolution/Debug/InjectSolution.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution/Debug/InjectSolution.obj -------------------------------------------------------------------------------- /InjectSolution/Debug/InjectSolution.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution/Debug/InjectSolution.pch -------------------------------------------------------------------------------- /InjectSolution/Debug/InjectSolution.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution/Debug/InjectSolution.res -------------------------------------------------------------------------------- /InjectSolution/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution/Debug/stdafx.obj -------------------------------------------------------------------------------- /InjectSolution/Debug/vc120.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution/Debug/vc120.idb -------------------------------------------------------------------------------- /InjectSolution/InjectSolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution/InjectSolution.cpp -------------------------------------------------------------------------------- /InjectSolution/InjectSolution.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /InjectSolution/InjectSolution.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution/InjectSolution.ico -------------------------------------------------------------------------------- /InjectSolution/InjectSolution.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution/InjectSolution.rc -------------------------------------------------------------------------------- /InjectSolution/InjectSolution.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution/InjectSolution.vcxproj -------------------------------------------------------------------------------- /InjectSolution/InjectSolution.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution/InjectSolution.vcxproj.filters -------------------------------------------------------------------------------- /InjectSolution/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution/ReadMe.txt -------------------------------------------------------------------------------- /InjectSolution/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution/Resource.h -------------------------------------------------------------------------------- /InjectSolution/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution/small.ico -------------------------------------------------------------------------------- /InjectSolution/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution/stdafx.cpp -------------------------------------------------------------------------------- /InjectSolution/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution/stdafx.h -------------------------------------------------------------------------------- /InjectSolution/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectSolution/targetver.h -------------------------------------------------------------------------------- /InjectionDll/Debug/vc120.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectionDll/Debug/vc120.idb -------------------------------------------------------------------------------- /InjectionDll/InjectionDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectionDll/InjectionDll.cpp -------------------------------------------------------------------------------- /InjectionDll/InjectionDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectionDll/InjectionDll.vcxproj -------------------------------------------------------------------------------- /InjectionDll/InjectionDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectionDll/InjectionDll.vcxproj.filters -------------------------------------------------------------------------------- /InjectionDll/InjectionDll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectionDll/InjectionDll.vcxproj.user -------------------------------------------------------------------------------- /InjectionDll/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectionDll/ReadMe.txt -------------------------------------------------------------------------------- /InjectionDll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectionDll/dllmain.cpp -------------------------------------------------------------------------------- /InjectionDll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectionDll/stdafx.cpp -------------------------------------------------------------------------------- /InjectionDll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectionDll/stdafx.h -------------------------------------------------------------------------------- /InjectionDll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectionDll/targetver.h -------------------------------------------------------------------------------- /InjectionDll/x64/Debug/vc120.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/InjectionDll/x64/Debug/vc120.idb -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/README.txt -------------------------------------------------------------------------------- /RegisterInject/Debug/RegisterInject.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RegisterInject/Debug/RegisterInject.log -------------------------------------------------------------------------------- /RegisterInject/Debug/RegisterInject.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RegisterInject/Debug/RegisterInject.obj -------------------------------------------------------------------------------- /RegisterInject/Debug/RegisterInject.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RegisterInject/Debug/RegisterInject.pch -------------------------------------------------------------------------------- /RegisterInject/Debug/RegisterInject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RegisterInject/Debug/RegisterInject.res -------------------------------------------------------------------------------- /RegisterInject/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RegisterInject/Debug/stdafx.obj -------------------------------------------------------------------------------- /RegisterInject/Debug/vc120.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RegisterInject/Debug/vc120.idb -------------------------------------------------------------------------------- /RegisterInject/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RegisterInject/ReadMe.txt -------------------------------------------------------------------------------- /RegisterInject/RegisterInject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RegisterInject/RegisterInject.cpp -------------------------------------------------------------------------------- /RegisterInject/RegisterInject.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /RegisterInject/RegisterInject.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RegisterInject/RegisterInject.ico -------------------------------------------------------------------------------- /RegisterInject/RegisterInject.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RegisterInject/RegisterInject.rc -------------------------------------------------------------------------------- /RegisterInject/RegisterInject.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RegisterInject/RegisterInject.vcxproj -------------------------------------------------------------------------------- /RegisterInject/RegisterInject.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RegisterInject/RegisterInject.vcxproj.filters -------------------------------------------------------------------------------- /RegisterInject/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RegisterInject/Resource.h -------------------------------------------------------------------------------- /RegisterInject/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RegisterInject/small.ico -------------------------------------------------------------------------------- /RegisterInject/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RegisterInject/stdafx.cpp -------------------------------------------------------------------------------- /RegisterInject/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RegisterInject/stdafx.h -------------------------------------------------------------------------------- /RegisterInject/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RegisterInject/targetver.h -------------------------------------------------------------------------------- /Release/InjectionDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/Release/InjectionDll.dll -------------------------------------------------------------------------------- /ReliableProcessInject/Debug/ReliableProcessInject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInject/Debug/ReliableProcessInject.res -------------------------------------------------------------------------------- /ReliableProcessInject/ReadMe.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReliableProcessInject/ReliableProcessInject.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInject/ReliableProcessInject.aps -------------------------------------------------------------------------------- /ReliableProcessInject/ReliableProcessInject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInject/ReliableProcessInject.cpp -------------------------------------------------------------------------------- /ReliableProcessInject/ReliableProcessInject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInject/ReliableProcessInject.h -------------------------------------------------------------------------------- /ReliableProcessInject/ReliableProcessInject.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInject/ReliableProcessInject.ico -------------------------------------------------------------------------------- /ReliableProcessInject/ReliableProcessInject.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInject/ReliableProcessInject.rc -------------------------------------------------------------------------------- /ReliableProcessInject/ReliableProcessInject.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInject/ReliableProcessInject.vcxproj -------------------------------------------------------------------------------- /ReliableProcessInject/ReliableProcessInject.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInject/ReliableProcessInject.vcxproj.filters -------------------------------------------------------------------------------- /ReliableProcessInject/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInject/Resource.h -------------------------------------------------------------------------------- /ReliableProcessInject/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInject/small.ico -------------------------------------------------------------------------------- /ReliableProcessInject/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInject/stdafx.cpp -------------------------------------------------------------------------------- /ReliableProcessInject/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInject/stdafx.h -------------------------------------------------------------------------------- /ReliableProcessInject/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInject/targetver.h -------------------------------------------------------------------------------- /ReliableProcessInjectDll/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInjectDll/ReadMe.txt -------------------------------------------------------------------------------- /ReliableProcessInjectDll/ReliableProcessInjectDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInjectDll/ReliableProcessInjectDll.cpp -------------------------------------------------------------------------------- /ReliableProcessInjectDll/ReliableProcessInjectDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInjectDll/ReliableProcessInjectDll.vcxproj -------------------------------------------------------------------------------- /ReliableProcessInjectDll/ReliableProcessInjectDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInjectDll/ReliableProcessInjectDll.vcxproj.filters -------------------------------------------------------------------------------- /ReliableProcessInjectDll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInjectDll/dllmain.cpp -------------------------------------------------------------------------------- /ReliableProcessInjectDll/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInjectDll/dllmain.h -------------------------------------------------------------------------------- /ReliableProcessInjectDll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInjectDll/stdafx.cpp -------------------------------------------------------------------------------- /ReliableProcessInjectDll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInjectDll/stdafx.h -------------------------------------------------------------------------------- /ReliableProcessInjectDll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ReliableProcessInjectDll/targetver.h -------------------------------------------------------------------------------- /RemoteThreadInject/Debug/RemoteThreadInject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RemoteThreadInject/Debug/RemoteThreadInject.res -------------------------------------------------------------------------------- /RemoteThreadInject/Debug/vc120.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RemoteThreadInject/Debug/vc120.idb -------------------------------------------------------------------------------- /RemoteThreadInject/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RemoteThreadInject/ReadMe.txt -------------------------------------------------------------------------------- /RemoteThreadInject/RemoteThreadInject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RemoteThreadInject/RemoteThreadInject.cpp -------------------------------------------------------------------------------- /RemoteThreadInject/RemoteThreadInject.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /RemoteThreadInject/RemoteThreadInject.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RemoteThreadInject/RemoteThreadInject.ico -------------------------------------------------------------------------------- /RemoteThreadInject/RemoteThreadInject.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RemoteThreadInject/RemoteThreadInject.rc -------------------------------------------------------------------------------- /RemoteThreadInject/RemoteThreadInject.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RemoteThreadInject/RemoteThreadInject.vcxproj -------------------------------------------------------------------------------- /RemoteThreadInject/RemoteThreadInject.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RemoteThreadInject/RemoteThreadInject.vcxproj.filters -------------------------------------------------------------------------------- /RemoteThreadInject/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RemoteThreadInject/Resource.h -------------------------------------------------------------------------------- /RemoteThreadInject/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RemoteThreadInject/small.ico -------------------------------------------------------------------------------- /RemoteThreadInject/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RemoteThreadInject/stdafx.cpp -------------------------------------------------------------------------------- /RemoteThreadInject/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RemoteThreadInject/stdafx.h -------------------------------------------------------------------------------- /RemoteThreadInject/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RemoteThreadInject/targetver.h -------------------------------------------------------------------------------- /RemoteThreadInject/x64/Debug/RemoteThreadInject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RemoteThreadInject/x64/Debug/RemoteThreadInject.res -------------------------------------------------------------------------------- /RemoteThreadInject/x64/Debug/vc120.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RemoteThreadInject/x64/Debug/vc120.idb -------------------------------------------------------------------------------- /RemoteThreadInject/x64/Release/RemoteThreadInject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/RemoteThreadInject/x64/Release/RemoteThreadInject.res -------------------------------------------------------------------------------- /ipch/injectiondll-8e0a3a0f/injectiondll-219bf8a5.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ipch/injectiondll-8e0a3a0f/injectiondll-219bf8a5.ipch -------------------------------------------------------------------------------- /ipch/injectiondll-8e0a3a0f/injectiondll-7523506b.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ipch/injectiondll-8e0a3a0f/injectiondll-7523506b.ipch -------------------------------------------------------------------------------- /ipch/injectiondll-8e0a3a0f/injectiondll-d539fd29.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ipch/injectiondll-8e0a3a0f/injectiondll-d539fd29.ipch -------------------------------------------------------------------------------- /ipch/injectsolution-8a73b5ba/injectsolution-fb674b86.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ipch/injectsolution-8a73b5ba/injectsolution-fb674b86.ipch -------------------------------------------------------------------------------- /ipch/registerinject-2d72d435/registerinject-6a3b0dce.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ipch/registerinject-2d72d435/registerinject-6a3b0dce.ipch -------------------------------------------------------------------------------- /ipch/remotethreadinject-bb39a53/remotethreadinject-12948f85.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ipch/remotethreadinject-bb39a53/remotethreadinject-12948f85.ipch -------------------------------------------------------------------------------- /ipch/remotethreadinject-bb39a53/remotethreadinject-1d2d990d.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ipch/remotethreadinject-bb39a53/remotethreadinject-1d2d990d.ipch -------------------------------------------------------------------------------- /ipch/remotethreadinject-bb39a53/remotethreadinject-f84e5c4b.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/ipch/remotethreadinject-bb39a53/remotethreadinject-f84e5c4b.ipch -------------------------------------------------------------------------------- /x64/Debug/InjectionDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/x64/Debug/InjectionDll.dll -------------------------------------------------------------------------------- /x64/Debug/InjectionDll.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/x64/Debug/InjectionDll.ilk -------------------------------------------------------------------------------- /x64/Debug/RemoteThreadInject.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/x64/Debug/RemoteThreadInject.exe -------------------------------------------------------------------------------- /x64/Debug/RemoteThreadInject.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/x64/Debug/RemoteThreadInject.ilk -------------------------------------------------------------------------------- /x64/Release/RemoteThreadInject.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/after1990s/InjectSolution/HEAD/x64/Release/RemoteThreadInject.exe --------------------------------------------------------------------------------