├── CMakeLists.txt ├── FAInHook.cpp ├── FAInHook.h ├── HookInfo.h ├── LICENSE ├── MemHelper.cpp ├── MemHelper.h ├── MinAndroidDef.h ├── README.md ├── elfex.h ├── instruction ├── Arm64Instruction.cpp ├── Arm64Instruction.h ├── ArmInstruction.cpp ├── ArmInstruction.h ├── IntelDisasm.cpp ├── IntelDisasm.h ├── IntelInstruction.cpp ├── IntelInstruction.h ├── Mips64Instruction.cpp ├── Mips64Instruction.h ├── MipsInstruction.cpp ├── MipsInstruction.h ├── ThumbInstruction.cpp ├── ThumbInstruction.h ├── instruction.cpp └── instruction.h └── main.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /FAInHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/FAInHook.cpp -------------------------------------------------------------------------------- /FAInHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/FAInHook.h -------------------------------------------------------------------------------- /HookInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/HookInfo.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/LICENSE -------------------------------------------------------------------------------- /MemHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/MemHelper.cpp -------------------------------------------------------------------------------- /MemHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/MemHelper.h -------------------------------------------------------------------------------- /MinAndroidDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/MinAndroidDef.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/README.md -------------------------------------------------------------------------------- /elfex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/elfex.h -------------------------------------------------------------------------------- /instruction/Arm64Instruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/instruction/Arm64Instruction.cpp -------------------------------------------------------------------------------- /instruction/Arm64Instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/instruction/Arm64Instruction.h -------------------------------------------------------------------------------- /instruction/ArmInstruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/instruction/ArmInstruction.cpp -------------------------------------------------------------------------------- /instruction/ArmInstruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/instruction/ArmInstruction.h -------------------------------------------------------------------------------- /instruction/IntelDisasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/instruction/IntelDisasm.cpp -------------------------------------------------------------------------------- /instruction/IntelDisasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/instruction/IntelDisasm.h -------------------------------------------------------------------------------- /instruction/IntelInstruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/instruction/IntelInstruction.cpp -------------------------------------------------------------------------------- /instruction/IntelInstruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/instruction/IntelInstruction.h -------------------------------------------------------------------------------- /instruction/Mips64Instruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/instruction/Mips64Instruction.cpp -------------------------------------------------------------------------------- /instruction/Mips64Instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/instruction/Mips64Instruction.h -------------------------------------------------------------------------------- /instruction/MipsInstruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/instruction/MipsInstruction.cpp -------------------------------------------------------------------------------- /instruction/MipsInstruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/instruction/MipsInstruction.h -------------------------------------------------------------------------------- /instruction/ThumbInstruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/instruction/ThumbInstruction.cpp -------------------------------------------------------------------------------- /instruction/ThumbInstruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/instruction/ThumbInstruction.h -------------------------------------------------------------------------------- /instruction/instruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/instruction/instruction.cpp -------------------------------------------------------------------------------- /instruction/instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/instruction/instruction.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F8LEFT/FAInHook/HEAD/main.cpp --------------------------------------------------------------------------------