├── .gitattributes ├── .gitignore ├── HooksFinder.sln ├── HooksFinder ├── HooksFinder.cpp ├── HooksFinder.vcxproj ├── HooksFinder.vcxproj.filters └── HooksFinder.vcxproj.user ├── README.md ├── img.png ├── img2.png └── include ├── Zycore ├── API │ ├── Memory.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 ├── ZycoreExportConfig.h ├── Zydis ├── Decoder.h ├── DecoderTypes.h ├── Formatter.h ├── FormatterBuffer.h ├── Generated │ ├── EnumISAExt.h │ ├── EnumISASet.h │ ├── EnumInstructionCategory.h │ ├── EnumMnemonic.h │ └── EnumRegister.h ├── Internal │ ├── DecoderData.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 └── ZydisExportConfig.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/.gitignore -------------------------------------------------------------------------------- /HooksFinder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/HooksFinder.sln -------------------------------------------------------------------------------- /HooksFinder/HooksFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/HooksFinder/HooksFinder.cpp -------------------------------------------------------------------------------- /HooksFinder/HooksFinder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/HooksFinder/HooksFinder.vcxproj -------------------------------------------------------------------------------- /HooksFinder/HooksFinder.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/HooksFinder/HooksFinder.vcxproj.filters -------------------------------------------------------------------------------- /HooksFinder/HooksFinder.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/HooksFinder/HooksFinder.vcxproj.user -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/README.md -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/img.png -------------------------------------------------------------------------------- /img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/img2.png -------------------------------------------------------------------------------- /include/Zycore/API/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zycore/API/Memory.h -------------------------------------------------------------------------------- /include/Zycore/API/Synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zycore/API/Synchronization.h -------------------------------------------------------------------------------- /include/Zycore/API/Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zycore/API/Terminal.h -------------------------------------------------------------------------------- /include/Zycore/API/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zycore/API/Thread.h -------------------------------------------------------------------------------- /include/Zycore/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zycore/Allocator.h -------------------------------------------------------------------------------- /include/Zycore/ArgParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zycore/ArgParse.h -------------------------------------------------------------------------------- /include/Zycore/Bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zycore/Bitset.h -------------------------------------------------------------------------------- /include/Zycore/Comparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zycore/Comparison.h -------------------------------------------------------------------------------- /include/Zycore/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zycore/Defines.h -------------------------------------------------------------------------------- /include/Zycore/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zycore/Format.h -------------------------------------------------------------------------------- /include/Zycore/LibC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zycore/LibC.h -------------------------------------------------------------------------------- /include/Zycore/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zycore/List.h -------------------------------------------------------------------------------- /include/Zycore/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zycore/Object.h -------------------------------------------------------------------------------- /include/Zycore/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zycore/Status.h -------------------------------------------------------------------------------- /include/Zycore/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zycore/String.h -------------------------------------------------------------------------------- /include/Zycore/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zycore/Types.h -------------------------------------------------------------------------------- /include/Zycore/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zycore/Vector.h -------------------------------------------------------------------------------- /include/Zycore/Zycore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zycore/Zycore.h -------------------------------------------------------------------------------- /include/ZycoreExportConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/ZycoreExportConfig.h -------------------------------------------------------------------------------- /include/Zydis/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/Decoder.h -------------------------------------------------------------------------------- /include/Zydis/DecoderTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/DecoderTypes.h -------------------------------------------------------------------------------- /include/Zydis/Formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/Formatter.h -------------------------------------------------------------------------------- /include/Zydis/FormatterBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/FormatterBuffer.h -------------------------------------------------------------------------------- /include/Zydis/Generated/EnumISAExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/Generated/EnumISAExt.h -------------------------------------------------------------------------------- /include/Zydis/Generated/EnumISASet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/Generated/EnumISASet.h -------------------------------------------------------------------------------- /include/Zydis/Generated/EnumInstructionCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/Generated/EnumInstructionCategory.h -------------------------------------------------------------------------------- /include/Zydis/Generated/EnumMnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/Generated/EnumMnemonic.h -------------------------------------------------------------------------------- /include/Zydis/Generated/EnumRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/Generated/EnumRegister.h -------------------------------------------------------------------------------- /include/Zydis/Internal/DecoderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/Internal/DecoderData.h -------------------------------------------------------------------------------- /include/Zydis/Internal/FormatterATT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/Internal/FormatterATT.h -------------------------------------------------------------------------------- /include/Zydis/Internal/FormatterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/Internal/FormatterBase.h -------------------------------------------------------------------------------- /include/Zydis/Internal/FormatterIntel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/Internal/FormatterIntel.h -------------------------------------------------------------------------------- /include/Zydis/Internal/SharedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/Internal/SharedData.h -------------------------------------------------------------------------------- /include/Zydis/Internal/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/Internal/String.h -------------------------------------------------------------------------------- /include/Zydis/MetaInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/MetaInfo.h -------------------------------------------------------------------------------- /include/Zydis/Mnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/Mnemonic.h -------------------------------------------------------------------------------- /include/Zydis/Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/Register.h -------------------------------------------------------------------------------- /include/Zydis/SharedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/SharedTypes.h -------------------------------------------------------------------------------- /include/Zydis/ShortString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/ShortString.h -------------------------------------------------------------------------------- /include/Zydis/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/Status.h -------------------------------------------------------------------------------- /include/Zydis/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/Utils.h -------------------------------------------------------------------------------- /include/Zydis/Zydis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/Zydis/Zydis.h -------------------------------------------------------------------------------- /include/ZydisExportConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/HooksFinder/HEAD/include/ZydisExportConfig.h --------------------------------------------------------------------------------