├── .gitignore ├── LICENSE ├── README.md └── src ├── anticheat.sln ├── engine ├── FileModule.cpp ├── FileModule.h ├── GotIntegrity.cpp ├── GotIntegrity.h ├── HookTest.cpp ├── HookTest.h ├── InlineHooker.cpp ├── InlineHooker.h ├── InlineStatus.cpp ├── InlineStatus.h ├── Log.cpp ├── Log.h ├── MemModule.cpp ├── MemModule.h ├── MemoryScan.cpp ├── MemoryScan.h ├── Mmap.cpp ├── Mmap.h ├── Module.cpp ├── Module.h ├── MyApi.cpp ├── MyApi.h ├── SectionIntegrity.cpp ├── SectionIntegrity.h ├── Util.cpp ├── Util.h ├── engine.vcxproj ├── engine.vcxproj.filters └── main.cpp └── sample ├── sample.cpp ├── sample.vcxproj └── sample.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/README.md -------------------------------------------------------------------------------- /src/anticheat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/anticheat.sln -------------------------------------------------------------------------------- /src/engine/FileModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/FileModule.cpp -------------------------------------------------------------------------------- /src/engine/FileModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/FileModule.h -------------------------------------------------------------------------------- /src/engine/GotIntegrity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/GotIntegrity.cpp -------------------------------------------------------------------------------- /src/engine/GotIntegrity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/GotIntegrity.h -------------------------------------------------------------------------------- /src/engine/HookTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/HookTest.cpp -------------------------------------------------------------------------------- /src/engine/HookTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/HookTest.h -------------------------------------------------------------------------------- /src/engine/InlineHooker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/InlineHooker.cpp -------------------------------------------------------------------------------- /src/engine/InlineHooker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/InlineHooker.h -------------------------------------------------------------------------------- /src/engine/InlineStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/InlineStatus.cpp -------------------------------------------------------------------------------- /src/engine/InlineStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/InlineStatus.h -------------------------------------------------------------------------------- /src/engine/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/Log.cpp -------------------------------------------------------------------------------- /src/engine/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/Log.h -------------------------------------------------------------------------------- /src/engine/MemModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/MemModule.cpp -------------------------------------------------------------------------------- /src/engine/MemModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/MemModule.h -------------------------------------------------------------------------------- /src/engine/MemoryScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/MemoryScan.cpp -------------------------------------------------------------------------------- /src/engine/MemoryScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/MemoryScan.h -------------------------------------------------------------------------------- /src/engine/Mmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/Mmap.cpp -------------------------------------------------------------------------------- /src/engine/Mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/Mmap.h -------------------------------------------------------------------------------- /src/engine/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/Module.cpp -------------------------------------------------------------------------------- /src/engine/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/Module.h -------------------------------------------------------------------------------- /src/engine/MyApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/MyApi.cpp -------------------------------------------------------------------------------- /src/engine/MyApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/MyApi.h -------------------------------------------------------------------------------- /src/engine/SectionIntegrity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/SectionIntegrity.cpp -------------------------------------------------------------------------------- /src/engine/SectionIntegrity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/SectionIntegrity.h -------------------------------------------------------------------------------- /src/engine/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/Util.cpp -------------------------------------------------------------------------------- /src/engine/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/Util.h -------------------------------------------------------------------------------- /src/engine/engine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/engine.vcxproj -------------------------------------------------------------------------------- /src/engine/engine.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/engine.vcxproj.filters -------------------------------------------------------------------------------- /src/engine/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/engine/main.cpp -------------------------------------------------------------------------------- /src/sample/sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/sample/sample.cpp -------------------------------------------------------------------------------- /src/sample/sample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/sample/sample.vcxproj -------------------------------------------------------------------------------- /src/sample/sample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetronik/AndroidAntiCheat/HEAD/src/sample/sample.vcxproj.filters --------------------------------------------------------------------------------