├── .gitignore ├── ExtractArray ├── ExtractArray.cpp ├── ExtractArray.vcxproj └── ExtractArray.vcxproj.filters ├── InjectDll.sln ├── InjectDll ├── InjectDll.cpp ├── InjectDll.h ├── InjectDll.vcxproj ├── InjectDll.vcxproj.filters ├── fileutils.cpp ├── loaders.h ├── process.cpp ├── readfile.cpp └── wow64.cpp ├── LICENSE ├── README.md └── Wow64Shellcode ├── ReflectiveLoader.h ├── Wow64Shellcode.cpp ├── Wow64Shellcode.vcxproj ├── Wow64Shellcode.vcxproj.filters ├── order.x64.txt └── order.x86.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/.gitignore -------------------------------------------------------------------------------- /ExtractArray/ExtractArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/ExtractArray/ExtractArray.cpp -------------------------------------------------------------------------------- /ExtractArray/ExtractArray.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/ExtractArray/ExtractArray.vcxproj -------------------------------------------------------------------------------- /ExtractArray/ExtractArray.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/ExtractArray/ExtractArray.vcxproj.filters -------------------------------------------------------------------------------- /InjectDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/InjectDll.sln -------------------------------------------------------------------------------- /InjectDll/InjectDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/InjectDll/InjectDll.cpp -------------------------------------------------------------------------------- /InjectDll/InjectDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/InjectDll/InjectDll.h -------------------------------------------------------------------------------- /InjectDll/InjectDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/InjectDll/InjectDll.vcxproj -------------------------------------------------------------------------------- /InjectDll/InjectDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/InjectDll/InjectDll.vcxproj.filters -------------------------------------------------------------------------------- /InjectDll/fileutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/InjectDll/fileutils.cpp -------------------------------------------------------------------------------- /InjectDll/loaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/InjectDll/loaders.h -------------------------------------------------------------------------------- /InjectDll/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/InjectDll/process.cpp -------------------------------------------------------------------------------- /InjectDll/readfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/InjectDll/readfile.cpp -------------------------------------------------------------------------------- /InjectDll/wow64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/InjectDll/wow64.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/README.md -------------------------------------------------------------------------------- /Wow64Shellcode/ReflectiveLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/Wow64Shellcode/ReflectiveLoader.h -------------------------------------------------------------------------------- /Wow64Shellcode/Wow64Shellcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/Wow64Shellcode/Wow64Shellcode.cpp -------------------------------------------------------------------------------- /Wow64Shellcode/Wow64Shellcode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/Wow64Shellcode/Wow64Shellcode.vcxproj -------------------------------------------------------------------------------- /Wow64Shellcode/Wow64Shellcode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UserExistsError/InjectDll/HEAD/Wow64Shellcode/Wow64Shellcode.vcxproj.filters -------------------------------------------------------------------------------- /Wow64Shellcode/order.x64.txt: -------------------------------------------------------------------------------- 1 | InjectCrt 2 | -------------------------------------------------------------------------------- /Wow64Shellcode/order.x86.txt: -------------------------------------------------------------------------------- 1 | InjectCrt@4 2 | --------------------------------------------------------------------------------