├── .dir-locals.el ├── .githooks ├── post-merge-checkout └── pre-commit ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── README.md ├── Write ├── extract.sh ├── gdb.sh ├── inject.sh ├── reload.sh ├── setuphooks.sh └── src ├── Interfaces.cpp ├── Interfaces.h ├── Main.cpp ├── Netvars.cpp ├── Netvars.h ├── Signatures.h ├── features ├── Aimbot.cpp ├── Aimbot.h ├── Bhop.cpp ├── Bhop.h ├── DumbExploits.cpp ├── DumbExploits.h ├── Glow.cpp └── Glow.h ├── globals.h ├── sdk ├── BaseStruct.h ├── CBaseEntity.h ├── CClientState.h ├── CGlobalVars.h ├── CInput.h ├── ClientClass.h ├── Definitions.h ├── OffPtr.h ├── QAngle.h ├── UtlMemory.h ├── Vector.h └── bf_write.h └── utils ├── Handles.cpp ├── InputSystem.cpp ├── InputSystem.h ├── Logger.cpp ├── Logger.h ├── Math.h ├── Memutils.cpp ├── Memutils.h ├── Wrappers.h └── minitrace.h /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.githooks/post-merge-checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/.githooks/post-merge-checkout -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/README.md -------------------------------------------------------------------------------- /Write: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/extract.sh -------------------------------------------------------------------------------- /gdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/gdb.sh -------------------------------------------------------------------------------- /inject.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/inject.sh -------------------------------------------------------------------------------- /reload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/reload.sh -------------------------------------------------------------------------------- /setuphooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/setuphooks.sh -------------------------------------------------------------------------------- /src/Interfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/Interfaces.cpp -------------------------------------------------------------------------------- /src/Interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/Interfaces.h -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/Netvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/Netvars.cpp -------------------------------------------------------------------------------- /src/Netvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/Netvars.h -------------------------------------------------------------------------------- /src/Signatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/Signatures.h -------------------------------------------------------------------------------- /src/features/Aimbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/features/Aimbot.cpp -------------------------------------------------------------------------------- /src/features/Aimbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/features/Aimbot.h -------------------------------------------------------------------------------- /src/features/Bhop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/features/Bhop.cpp -------------------------------------------------------------------------------- /src/features/Bhop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/features/Bhop.h -------------------------------------------------------------------------------- /src/features/DumbExploits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/features/DumbExploits.cpp -------------------------------------------------------------------------------- /src/features/DumbExploits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/features/DumbExploits.h -------------------------------------------------------------------------------- /src/features/Glow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/features/Glow.cpp -------------------------------------------------------------------------------- /src/features/Glow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/features/Glow.h -------------------------------------------------------------------------------- /src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/globals.h -------------------------------------------------------------------------------- /src/sdk/BaseStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/sdk/BaseStruct.h -------------------------------------------------------------------------------- /src/sdk/CBaseEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/sdk/CBaseEntity.h -------------------------------------------------------------------------------- /src/sdk/CClientState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/sdk/CClientState.h -------------------------------------------------------------------------------- /src/sdk/CGlobalVars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/sdk/CGlobalVars.h -------------------------------------------------------------------------------- /src/sdk/CInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/sdk/CInput.h -------------------------------------------------------------------------------- /src/sdk/ClientClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/sdk/ClientClass.h -------------------------------------------------------------------------------- /src/sdk/Definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/sdk/Definitions.h -------------------------------------------------------------------------------- /src/sdk/OffPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/sdk/OffPtr.h -------------------------------------------------------------------------------- /src/sdk/QAngle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/sdk/QAngle.h -------------------------------------------------------------------------------- /src/sdk/UtlMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/sdk/UtlMemory.h -------------------------------------------------------------------------------- /src/sdk/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/sdk/Vector.h -------------------------------------------------------------------------------- /src/sdk/bf_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/sdk/bf_write.h -------------------------------------------------------------------------------- /src/utils/Handles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/utils/Handles.cpp -------------------------------------------------------------------------------- /src/utils/InputSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/utils/InputSystem.cpp -------------------------------------------------------------------------------- /src/utils/InputSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/utils/InputSystem.h -------------------------------------------------------------------------------- /src/utils/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/utils/Logger.cpp -------------------------------------------------------------------------------- /src/utils/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/utils/Logger.h -------------------------------------------------------------------------------- /src/utils/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/utils/Math.h -------------------------------------------------------------------------------- /src/utils/Memutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/utils/Memutils.cpp -------------------------------------------------------------------------------- /src/utils/Memutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/utils/Memutils.h -------------------------------------------------------------------------------- /src/utils/Wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/utils/Wrappers.h -------------------------------------------------------------------------------- /src/utils/minitrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWSS/Ape-ex-Abominations/HEAD/src/utils/minitrace.h --------------------------------------------------------------------------------