├── .gitignore ├── README.md ├── apex.sln ├── apex_client ├── apex_client.vcxproj ├── apex_client.vcxproj.filters └── core │ ├── dllmain.cpp │ ├── driver │ └── driver.h │ └── sdk │ ├── sdk.cpp │ └── sdk.h ├── apex_driver ├── apex_driver.vcxproj ├── apex_driver.vcxproj.filters └── core │ ├── features │ ├── esp.cpp │ ├── features.h │ └── misc.cpp │ ├── hook │ ├── hook.cpp │ └── hook.h │ ├── main.cpp │ ├── renderer │ ├── renderer.cpp │ └── renderer.h │ ├── sdk │ ├── sdk.cpp │ └── sdk.h │ └── utils │ ├── color.h │ ├── hotkeys │ ├── hotkeys.cpp │ └── hotkeys.h │ ├── imports.h │ ├── math │ ├── vectors.cpp │ └── vectors.h │ ├── memory │ ├── memory.cpp │ └── memory.h │ ├── physical │ ├── physical.cpp │ └── physical.h │ ├── utils.cpp │ └── utils.h └── apex_loader ├── apex_loader.vcxproj ├── apex_loader.vcxproj.filters └── core ├── loader ├── loader.cpp └── loader.h └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/README.md -------------------------------------------------------------------------------- /apex.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex.sln -------------------------------------------------------------------------------- /apex_client/apex_client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_client/apex_client.vcxproj -------------------------------------------------------------------------------- /apex_client/apex_client.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_client/apex_client.vcxproj.filters -------------------------------------------------------------------------------- /apex_client/core/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_client/core/dllmain.cpp -------------------------------------------------------------------------------- /apex_client/core/driver/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_client/core/driver/driver.h -------------------------------------------------------------------------------- /apex_client/core/sdk/sdk.cpp: -------------------------------------------------------------------------------- 1 | #include "sdk.h" 2 | 3 | namespace sdk { 4 | HANDLE process_id; 5 | 6 | uint64_t module_base; 7 | } -------------------------------------------------------------------------------- /apex_client/core/sdk/sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_client/core/sdk/sdk.h -------------------------------------------------------------------------------- /apex_driver/apex_driver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/apex_driver.vcxproj -------------------------------------------------------------------------------- /apex_driver/apex_driver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/apex_driver.vcxproj.filters -------------------------------------------------------------------------------- /apex_driver/core/features/esp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/features/esp.cpp -------------------------------------------------------------------------------- /apex_driver/core/features/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/features/features.h -------------------------------------------------------------------------------- /apex_driver/core/features/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/features/misc.cpp -------------------------------------------------------------------------------- /apex_driver/core/hook/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/hook/hook.cpp -------------------------------------------------------------------------------- /apex_driver/core/hook/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/hook/hook.h -------------------------------------------------------------------------------- /apex_driver/core/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/main.cpp -------------------------------------------------------------------------------- /apex_driver/core/renderer/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/renderer/renderer.cpp -------------------------------------------------------------------------------- /apex_driver/core/renderer/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/renderer/renderer.h -------------------------------------------------------------------------------- /apex_driver/core/sdk/sdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/sdk/sdk.cpp -------------------------------------------------------------------------------- /apex_driver/core/sdk/sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/sdk/sdk.h -------------------------------------------------------------------------------- /apex_driver/core/utils/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/utils/color.h -------------------------------------------------------------------------------- /apex_driver/core/utils/hotkeys/hotkeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/utils/hotkeys/hotkeys.cpp -------------------------------------------------------------------------------- /apex_driver/core/utils/hotkeys/hotkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/utils/hotkeys/hotkeys.h -------------------------------------------------------------------------------- /apex_driver/core/utils/imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/utils/imports.h -------------------------------------------------------------------------------- /apex_driver/core/utils/math/vectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/utils/math/vectors.cpp -------------------------------------------------------------------------------- /apex_driver/core/utils/math/vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/utils/math/vectors.h -------------------------------------------------------------------------------- /apex_driver/core/utils/memory/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/utils/memory/memory.cpp -------------------------------------------------------------------------------- /apex_driver/core/utils/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/utils/memory/memory.h -------------------------------------------------------------------------------- /apex_driver/core/utils/physical/physical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/utils/physical/physical.cpp -------------------------------------------------------------------------------- /apex_driver/core/utils/physical/physical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/utils/physical/physical.h -------------------------------------------------------------------------------- /apex_driver/core/utils/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/utils/utils.cpp -------------------------------------------------------------------------------- /apex_driver/core/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_driver/core/utils/utils.h -------------------------------------------------------------------------------- /apex_loader/apex_loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_loader/apex_loader.vcxproj -------------------------------------------------------------------------------- /apex_loader/apex_loader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_loader/apex_loader.vcxproj.filters -------------------------------------------------------------------------------- /apex_loader/core/loader/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_loader/core/loader/loader.cpp -------------------------------------------------------------------------------- /apex_loader/core/loader/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_loader/core/loader/loader.h -------------------------------------------------------------------------------- /apex_loader/core/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/ApexLegends_DllHijacking_Exploit/HEAD/apex_loader/core/main.cpp --------------------------------------------------------------------------------