├── README.md ├── ShadowEye.sln ├── ShadowEye ├── ShadowEye.vcxproj ├── ShadowEye.vcxproj.filters ├── ShadowEye.vcxproj.user ├── address_info.h ├── be_spy.cpp ├── be_spy.h ├── crash_handler.cpp ├── crash_handler.h ├── dbg_symbols.cpp ├── dbg_symbols.h ├── disassembly.cpp ├── disassembly.h ├── framework.h ├── global.h ├── hook_shellcode.h ├── hooks.cpp ├── hooks.h ├── includes.h ├── on_be_entrypoint.cpp ├── pch.cpp ├── pch.h ├── portable_executable.cpp ├── portable_executable.h ├── shadow_eye.cpp ├── shadow_eye.h ├── utils.cpp ├── utils.h └── x64 │ └── Release │ ├── EacSpy.Build.CppClean.log │ ├── EacSpy.dll.recipe │ ├── EacSpy.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── EacSpy.lastbuildstate │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ └── link.write.2u.tlog │ ├── ShadowEye.Build.CppClean.log │ ├── ShadowEye.dll.recipe │ ├── ShadowEye.iobj │ ├── ShadowEye.ipdb │ ├── ShadowEye.log │ ├── ShadowEye.pch │ ├── ShadowEye.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── ShadowEye.lastbuildstate │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ └── link.write.2u.tlog │ ├── ShadowEye.vcxproj.FileListAbsolute.txt │ ├── be_spy.obj │ ├── crash_handler.obj │ ├── dbg_symbols.obj │ ├── disassembly.obj │ ├── eac_spy.Build.CppClean.log │ ├── eac_spy.log │ ├── eac_spy.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── eac_spy.lastbuildstate │ └── unsuccessfulbuild │ ├── eac_spy.vcxproj.FileListAbsolute.txt │ ├── hooks.obj │ ├── on_be_entrypoint.obj │ ├── pch.obj │ ├── portable_executable.obj │ ├── utils.obj │ ├── vc143.pdb │ └── vcpkg.applocal.log ├── ShadowEyeDriver ├── ShadowEyeDriver.inf ├── ShadowEyeDriver.vcxproj ├── ShadowEyeDriver.vcxproj.filters ├── ShadowEyeDriver.vcxproj.user ├── be_hook.cpp ├── be_hook.h ├── disassembly.cpp ├── disassembly.h ├── disk_spoof.cpp ├── hooking.h ├── hwid_spoof.h ├── hwid_structs.h ├── ia32.h ├── ia32_define.h ├── image_load_notify.cpp ├── image_load_notify.h ├── includes.h ├── ioctlhook.cpp ├── kernel_exports.h ├── kernel_structs.h ├── main.cpp ├── manual_map.cpp ├── manual_map.h ├── memory_hiding.h ├── offsets.h ├── pe_header.h ├── portable_executable.h ├── util.cpp └── util.h └── dependencies ├── ForteVisor ├── include │ ├── aethervisor.h │ └── aethervisor_kernel.h └── lib │ └── Release │ ├── AetherVisor-lib-kernel.lib │ └── AetherVisor-lib.lib └── Zydis ├── include ├── Zycore │ ├── API │ │ ├── Memory.h │ │ ├── Process.h │ │ ├── Synchronization.h │ │ ├── Terminal.h │ │ └── Thread.h │ ├── Allocator.h │ ├── ArgParse.h │ ├── Bitset.h │ ├── Comparison.h │ ├── Defines.h │ ├── Format.h │ ├── LibC.h │ ├── List.h │ ├── Object.h │ ├── Status.h │ ├── String.h │ ├── Types.h │ ├── Vector.h │ └── Zycore.h └── Zydis │ ├── Decoder.h │ ├── DecoderTypes.h │ ├── Defines.h │ ├── Encoder.h │ ├── Formatter.h │ ├── FormatterBuffer.h │ ├── Generated │ ├── EnumISAExt.h │ ├── EnumISASet.h │ ├── EnumInstructionCategory.h │ ├── EnumMnemonic.h │ └── EnumRegister.h │ ├── Internal │ ├── DecoderData.h │ ├── EncoderData.h │ ├── FormatterATT.h │ ├── FormatterBase.h │ ├── FormatterIntel.h │ ├── SharedData.h │ └── String.h │ ├── MetaInfo.h │ ├── Mnemonic.h │ ├── Register.h │ ├── SharedTypes.h │ ├── ShortString.h │ ├── Status.h │ ├── Utils.h │ └── Zydis.h └── lib ├── Debug ├── Zycore.lib └── Zydis.lib ├── DebugKernel ├── Zycore.lib └── Zydis.lib ├── Release ├── Zycore.lib └── Zydis.lib └── ReleaseKernel ├── Zycore.lib └── Zydis.lib /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/README.md -------------------------------------------------------------------------------- /ShadowEye.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye.sln -------------------------------------------------------------------------------- /ShadowEye/ShadowEye.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/ShadowEye.vcxproj -------------------------------------------------------------------------------- /ShadowEye/ShadowEye.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/ShadowEye.vcxproj.filters -------------------------------------------------------------------------------- /ShadowEye/ShadowEye.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/ShadowEye.vcxproj.user -------------------------------------------------------------------------------- /ShadowEye/address_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/address_info.h -------------------------------------------------------------------------------- /ShadowEye/be_spy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/be_spy.cpp -------------------------------------------------------------------------------- /ShadowEye/be_spy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/be_spy.h -------------------------------------------------------------------------------- /ShadowEye/crash_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/crash_handler.cpp -------------------------------------------------------------------------------- /ShadowEye/crash_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/crash_handler.h -------------------------------------------------------------------------------- /ShadowEye/dbg_symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/dbg_symbols.cpp -------------------------------------------------------------------------------- /ShadowEye/dbg_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/dbg_symbols.h -------------------------------------------------------------------------------- /ShadowEye/disassembly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/disassembly.cpp -------------------------------------------------------------------------------- /ShadowEye/disassembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/disassembly.h -------------------------------------------------------------------------------- /ShadowEye/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/framework.h -------------------------------------------------------------------------------- /ShadowEye/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/global.h -------------------------------------------------------------------------------- /ShadowEye/hook_shellcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/hook_shellcode.h -------------------------------------------------------------------------------- /ShadowEye/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/hooks.cpp -------------------------------------------------------------------------------- /ShadowEye/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/hooks.h -------------------------------------------------------------------------------- /ShadowEye/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/includes.h -------------------------------------------------------------------------------- /ShadowEye/on_be_entrypoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/on_be_entrypoint.cpp -------------------------------------------------------------------------------- /ShadowEye/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/pch.cpp -------------------------------------------------------------------------------- /ShadowEye/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/pch.h -------------------------------------------------------------------------------- /ShadowEye/portable_executable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/portable_executable.cpp -------------------------------------------------------------------------------- /ShadowEye/portable_executable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/portable_executable.h -------------------------------------------------------------------------------- /ShadowEye/shadow_eye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/shadow_eye.cpp -------------------------------------------------------------------------------- /ShadowEye/shadow_eye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/shadow_eye.h -------------------------------------------------------------------------------- /ShadowEye/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/utils.cpp -------------------------------------------------------------------------------- /ShadowEye/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/utils.h -------------------------------------------------------------------------------- /ShadowEye/x64/Release/EacSpy.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/EacSpy.Build.CppClean.log -------------------------------------------------------------------------------- /ShadowEye/x64/Release/EacSpy.dll.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/EacSpy.dll.recipe -------------------------------------------------------------------------------- /ShadowEye/x64/Release/EacSpy.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/EacSpy.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /ShadowEye/x64/Release/EacSpy.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/EacSpy.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /ShadowEye/x64/Release/EacSpy.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/EacSpy.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /ShadowEye/x64/Release/EacSpy.tlog/EacSpy.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/EacSpy.tlog/EacSpy.lastbuildstate -------------------------------------------------------------------------------- /ShadowEye/x64/Release/EacSpy.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/EacSpy.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /ShadowEye/x64/Release/EacSpy.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/EacSpy.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /ShadowEye/x64/Release/EacSpy.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/EacSpy.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /ShadowEye/x64/Release/EacSpy.tlog/link.write.2u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/EacSpy.tlog/link.write.2u.tlog -------------------------------------------------------------------------------- /ShadowEye/x64/Release/ShadowEye.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/ShadowEye.Build.CppClean.log -------------------------------------------------------------------------------- /ShadowEye/x64/Release/ShadowEye.dll.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/ShadowEye.dll.recipe -------------------------------------------------------------------------------- /ShadowEye/x64/Release/ShadowEye.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/ShadowEye.iobj -------------------------------------------------------------------------------- /ShadowEye/x64/Release/ShadowEye.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/ShadowEye.ipdb -------------------------------------------------------------------------------- /ShadowEye/x64/Release/ShadowEye.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/ShadowEye.log -------------------------------------------------------------------------------- /ShadowEye/x64/Release/ShadowEye.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/ShadowEye.pch -------------------------------------------------------------------------------- /ShadowEye/x64/Release/ShadowEye.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/ShadowEye.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /ShadowEye/x64/Release/ShadowEye.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/ShadowEye.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /ShadowEye/x64/Release/ShadowEye.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/ShadowEye.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /ShadowEye/x64/Release/ShadowEye.tlog/ShadowEye.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/ShadowEye.tlog/ShadowEye.lastbuildstate -------------------------------------------------------------------------------- /ShadowEye/x64/Release/ShadowEye.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/ShadowEye.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /ShadowEye/x64/Release/ShadowEye.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/ShadowEye.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /ShadowEye/x64/Release/ShadowEye.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/ShadowEye.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /ShadowEye/x64/Release/ShadowEye.tlog/link.write.2u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/ShadowEye.tlog/link.write.2u.tlog -------------------------------------------------------------------------------- /ShadowEye/x64/Release/ShadowEye.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShadowEye/x64/Release/be_spy.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/be_spy.obj -------------------------------------------------------------------------------- /ShadowEye/x64/Release/crash_handler.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/crash_handler.obj -------------------------------------------------------------------------------- /ShadowEye/x64/Release/dbg_symbols.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/dbg_symbols.obj -------------------------------------------------------------------------------- /ShadowEye/x64/Release/disassembly.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/disassembly.obj -------------------------------------------------------------------------------- /ShadowEye/x64/Release/eac_spy.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShadowEye/x64/Release/eac_spy.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/eac_spy.log -------------------------------------------------------------------------------- /ShadowEye/x64/Release/eac_spy.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/eac_spy.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /ShadowEye/x64/Release/eac_spy.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/eac_spy.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /ShadowEye/x64/Release/eac_spy.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/eac_spy.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /ShadowEye/x64/Release/eac_spy.tlog/eac_spy.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/eac_spy.tlog/eac_spy.lastbuildstate -------------------------------------------------------------------------------- /ShadowEye/x64/Release/eac_spy.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShadowEye/x64/Release/eac_spy.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShadowEye/x64/Release/hooks.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/hooks.obj -------------------------------------------------------------------------------- /ShadowEye/x64/Release/on_be_entrypoint.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/on_be_entrypoint.obj -------------------------------------------------------------------------------- /ShadowEye/x64/Release/pch.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/pch.obj -------------------------------------------------------------------------------- /ShadowEye/x64/Release/portable_executable.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/portable_executable.obj -------------------------------------------------------------------------------- /ShadowEye/x64/Release/utils.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/utils.obj -------------------------------------------------------------------------------- /ShadowEye/x64/Release/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEye/x64/Release/vc143.pdb -------------------------------------------------------------------------------- /ShadowEye/x64/Release/vcpkg.applocal.log: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ShadowEyeDriver/ShadowEyeDriver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/ShadowEyeDriver.inf -------------------------------------------------------------------------------- /ShadowEyeDriver/ShadowEyeDriver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/ShadowEyeDriver.vcxproj -------------------------------------------------------------------------------- /ShadowEyeDriver/ShadowEyeDriver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/ShadowEyeDriver.vcxproj.filters -------------------------------------------------------------------------------- /ShadowEyeDriver/ShadowEyeDriver.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/ShadowEyeDriver.vcxproj.user -------------------------------------------------------------------------------- /ShadowEyeDriver/be_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/be_hook.cpp -------------------------------------------------------------------------------- /ShadowEyeDriver/be_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/be_hook.h -------------------------------------------------------------------------------- /ShadowEyeDriver/disassembly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/disassembly.cpp -------------------------------------------------------------------------------- /ShadowEyeDriver/disassembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/disassembly.h -------------------------------------------------------------------------------- /ShadowEyeDriver/disk_spoof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/disk_spoof.cpp -------------------------------------------------------------------------------- /ShadowEyeDriver/hooking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/hooking.h -------------------------------------------------------------------------------- /ShadowEyeDriver/hwid_spoof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/hwid_spoof.h -------------------------------------------------------------------------------- /ShadowEyeDriver/hwid_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/hwid_structs.h -------------------------------------------------------------------------------- /ShadowEyeDriver/ia32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/ia32.h -------------------------------------------------------------------------------- /ShadowEyeDriver/ia32_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/ia32_define.h -------------------------------------------------------------------------------- /ShadowEyeDriver/image_load_notify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/image_load_notify.cpp -------------------------------------------------------------------------------- /ShadowEyeDriver/image_load_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/image_load_notify.h -------------------------------------------------------------------------------- /ShadowEyeDriver/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/includes.h -------------------------------------------------------------------------------- /ShadowEyeDriver/ioctlhook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/ioctlhook.cpp -------------------------------------------------------------------------------- /ShadowEyeDriver/kernel_exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/kernel_exports.h -------------------------------------------------------------------------------- /ShadowEyeDriver/kernel_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/kernel_structs.h -------------------------------------------------------------------------------- /ShadowEyeDriver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/main.cpp -------------------------------------------------------------------------------- /ShadowEyeDriver/manual_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/manual_map.cpp -------------------------------------------------------------------------------- /ShadowEyeDriver/manual_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/manual_map.h -------------------------------------------------------------------------------- /ShadowEyeDriver/memory_hiding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/memory_hiding.h -------------------------------------------------------------------------------- /ShadowEyeDriver/offsets.h: -------------------------------------------------------------------------------- 1 | c`p -------------------------------------------------------------------------------- /ShadowEyeDriver/pe_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/pe_header.h -------------------------------------------------------------------------------- /ShadowEyeDriver/portable_executable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/portable_executable.h -------------------------------------------------------------------------------- /ShadowEyeDriver/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/util.cpp -------------------------------------------------------------------------------- /ShadowEyeDriver/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/ShadowEyeDriver/util.h -------------------------------------------------------------------------------- /dependencies/ForteVisor/include/aethervisor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/ForteVisor/include/aethervisor.h -------------------------------------------------------------------------------- /dependencies/ForteVisor/include/aethervisor_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/ForteVisor/include/aethervisor_kernel.h -------------------------------------------------------------------------------- /dependencies/ForteVisor/lib/Release/AetherVisor-lib-kernel.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/ForteVisor/lib/Release/AetherVisor-lib-kernel.lib -------------------------------------------------------------------------------- /dependencies/ForteVisor/lib/Release/AetherVisor-lib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/ForteVisor/lib/Release/AetherVisor-lib.lib -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/API/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/API/Memory.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/API/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/API/Process.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/API/Synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/API/Synchronization.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/API/Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/API/Terminal.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/API/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/API/Thread.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/Allocator.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/ArgParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/ArgParse.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/Bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/Bitset.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/Comparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/Comparison.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/Defines.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/Format.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/LibC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/LibC.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/List.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/Object.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/Status.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/String.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/Types.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/Vector.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zycore/Zycore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zycore/Zycore.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Decoder.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/DecoderTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/DecoderTypes.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Defines.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Encoder.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Formatter.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/FormatterBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/FormatterBuffer.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Generated/EnumISAExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Generated/EnumISAExt.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Generated/EnumISASet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Generated/EnumISASet.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Generated/EnumInstructionCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Generated/EnumInstructionCategory.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Generated/EnumMnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Generated/EnumMnemonic.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Generated/EnumRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Generated/EnumRegister.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Internal/DecoderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Internal/DecoderData.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Internal/EncoderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Internal/EncoderData.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Internal/FormatterATT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Internal/FormatterATT.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Internal/FormatterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Internal/FormatterBase.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Internal/FormatterIntel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Internal/FormatterIntel.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Internal/SharedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Internal/SharedData.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Internal/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Internal/String.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/MetaInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/MetaInfo.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Mnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Mnemonic.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Register.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/SharedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/SharedTypes.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/ShortString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/ShortString.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Status.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Utils.h -------------------------------------------------------------------------------- /dependencies/Zydis/include/Zydis/Zydis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/include/Zydis/Zydis.h -------------------------------------------------------------------------------- /dependencies/Zydis/lib/Debug/Zycore.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/lib/Debug/Zycore.lib -------------------------------------------------------------------------------- /dependencies/Zydis/lib/Debug/Zydis.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/lib/Debug/Zydis.lib -------------------------------------------------------------------------------- /dependencies/Zydis/lib/DebugKernel/Zycore.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/lib/DebugKernel/Zycore.lib -------------------------------------------------------------------------------- /dependencies/Zydis/lib/DebugKernel/Zydis.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/lib/DebugKernel/Zydis.lib -------------------------------------------------------------------------------- /dependencies/Zydis/lib/Release/Zycore.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/lib/Release/Zycore.lib -------------------------------------------------------------------------------- /dependencies/Zydis/lib/Release/Zydis.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/lib/Release/Zydis.lib -------------------------------------------------------------------------------- /dependencies/Zydis/lib/ReleaseKernel/Zycore.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/lib/ReleaseKernel/Zycore.lib -------------------------------------------------------------------------------- /dependencies/Zydis/lib/ReleaseKernel/Zydis.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kqlu666/3d-Injector/HEAD/dependencies/Zydis/lib/ReleaseKernel/Zydis.lib --------------------------------------------------------------------------------