├── Inline-PatchFinder.sln ├── Inline-PatchFinder ├── Inline-PatchFinder.cpp ├── Inline-PatchFinder.filters ├── Inline-PatchFinder.user ├── Inline-PatchFinder.vcxproj ├── Inline-PatchFinder.vcxproj.user ├── Miscellaneous │ └── Dependancies.h └── Utilities │ ├── Utilities.cpp │ └── Utilities.h ├── README.md └── Zydis ├── LICENSE ├── Zycore-x64.lib ├── Zycore-x86.lib ├── Zycore.lib ├── 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-x64.lib ├── Zydis-x86.lib ├── Zydis.lib ├── Zydis ├── Decoder.h ├── DecoderTypes.h ├── Encoder.h ├── Formatter.h ├── FormatterBuffer.h ├── Generated │ ├── EnumISAExt.h │ ├── EnumISASet.h │ ├── EnumInstructionCategory.h │ ├── EnumMnemonic.h │ └── EnumRegister.h ├── Internal │ ├── DecoderData.h │ ├── EncoderData.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 /Inline-PatchFinder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Inline-PatchFinder.sln -------------------------------------------------------------------------------- /Inline-PatchFinder/Inline-PatchFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Inline-PatchFinder/Inline-PatchFinder.cpp -------------------------------------------------------------------------------- /Inline-PatchFinder/Inline-PatchFinder.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Inline-PatchFinder/Inline-PatchFinder.filters -------------------------------------------------------------------------------- /Inline-PatchFinder/Inline-PatchFinder.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Inline-PatchFinder/Inline-PatchFinder.user -------------------------------------------------------------------------------- /Inline-PatchFinder/Inline-PatchFinder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Inline-PatchFinder/Inline-PatchFinder.vcxproj -------------------------------------------------------------------------------- /Inline-PatchFinder/Inline-PatchFinder.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Inline-PatchFinder/Inline-PatchFinder.vcxproj.user -------------------------------------------------------------------------------- /Inline-PatchFinder/Miscellaneous/Dependancies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Inline-PatchFinder/Miscellaneous/Dependancies.h -------------------------------------------------------------------------------- /Inline-PatchFinder/Utilities/Utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Inline-PatchFinder/Utilities/Utilities.cpp -------------------------------------------------------------------------------- /Inline-PatchFinder/Utilities/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Inline-PatchFinder/Utilities/Utilities.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/README.md -------------------------------------------------------------------------------- /Zydis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/LICENSE -------------------------------------------------------------------------------- /Zydis/Zycore-x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore-x64.lib -------------------------------------------------------------------------------- /Zydis/Zycore-x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore-x86.lib -------------------------------------------------------------------------------- /Zydis/Zycore.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore.lib -------------------------------------------------------------------------------- /Zydis/Zycore/API/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore/API/Memory.h -------------------------------------------------------------------------------- /Zydis/Zycore/API/Synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore/API/Synchronization.h -------------------------------------------------------------------------------- /Zydis/Zycore/API/Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore/API/Terminal.h -------------------------------------------------------------------------------- /Zydis/Zycore/API/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore/API/Thread.h -------------------------------------------------------------------------------- /Zydis/Zycore/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore/Allocator.h -------------------------------------------------------------------------------- /Zydis/Zycore/ArgParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore/ArgParse.h -------------------------------------------------------------------------------- /Zydis/Zycore/Bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore/Bitset.h -------------------------------------------------------------------------------- /Zydis/Zycore/Comparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore/Comparison.h -------------------------------------------------------------------------------- /Zydis/Zycore/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore/Defines.h -------------------------------------------------------------------------------- /Zydis/Zycore/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore/Format.h -------------------------------------------------------------------------------- /Zydis/Zycore/LibC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore/LibC.h -------------------------------------------------------------------------------- /Zydis/Zycore/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore/List.h -------------------------------------------------------------------------------- /Zydis/Zycore/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore/Object.h -------------------------------------------------------------------------------- /Zydis/Zycore/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore/Status.h -------------------------------------------------------------------------------- /Zydis/Zycore/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore/String.h -------------------------------------------------------------------------------- /Zydis/Zycore/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore/Types.h -------------------------------------------------------------------------------- /Zydis/Zycore/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore/Vector.h -------------------------------------------------------------------------------- /Zydis/Zycore/Zycore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zycore/Zycore.h -------------------------------------------------------------------------------- /Zydis/ZycoreExportConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/ZycoreExportConfig.h -------------------------------------------------------------------------------- /Zydis/Zydis-x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis-x64.lib -------------------------------------------------------------------------------- /Zydis/Zydis-x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis-x86.lib -------------------------------------------------------------------------------- /Zydis/Zydis.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis.lib -------------------------------------------------------------------------------- /Zydis/Zydis/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Decoder.h -------------------------------------------------------------------------------- /Zydis/Zydis/DecoderTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/DecoderTypes.h -------------------------------------------------------------------------------- /Zydis/Zydis/Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Encoder.h -------------------------------------------------------------------------------- /Zydis/Zydis/Formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Formatter.h -------------------------------------------------------------------------------- /Zydis/Zydis/FormatterBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/FormatterBuffer.h -------------------------------------------------------------------------------- /Zydis/Zydis/Generated/EnumISAExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Generated/EnumISAExt.h -------------------------------------------------------------------------------- /Zydis/Zydis/Generated/EnumISASet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Generated/EnumISASet.h -------------------------------------------------------------------------------- /Zydis/Zydis/Generated/EnumInstructionCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Generated/EnumInstructionCategory.h -------------------------------------------------------------------------------- /Zydis/Zydis/Generated/EnumMnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Generated/EnumMnemonic.h -------------------------------------------------------------------------------- /Zydis/Zydis/Generated/EnumRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Generated/EnumRegister.h -------------------------------------------------------------------------------- /Zydis/Zydis/Internal/DecoderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Internal/DecoderData.h -------------------------------------------------------------------------------- /Zydis/Zydis/Internal/EncoderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Internal/EncoderData.h -------------------------------------------------------------------------------- /Zydis/Zydis/Internal/FormatterATT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Internal/FormatterATT.h -------------------------------------------------------------------------------- /Zydis/Zydis/Internal/FormatterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Internal/FormatterBase.h -------------------------------------------------------------------------------- /Zydis/Zydis/Internal/FormatterIntel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Internal/FormatterIntel.h -------------------------------------------------------------------------------- /Zydis/Zydis/Internal/SharedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Internal/SharedData.h -------------------------------------------------------------------------------- /Zydis/Zydis/Internal/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Internal/String.h -------------------------------------------------------------------------------- /Zydis/Zydis/MetaInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/MetaInfo.h -------------------------------------------------------------------------------- /Zydis/Zydis/Mnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Mnemonic.h -------------------------------------------------------------------------------- /Zydis/Zydis/Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Register.h -------------------------------------------------------------------------------- /Zydis/Zydis/SharedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/SharedTypes.h -------------------------------------------------------------------------------- /Zydis/Zydis/ShortString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/ShortString.h -------------------------------------------------------------------------------- /Zydis/Zydis/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Status.h -------------------------------------------------------------------------------- /Zydis/Zydis/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Utils.h -------------------------------------------------------------------------------- /Zydis/Zydis/Zydis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/Zydis/Zydis.h -------------------------------------------------------------------------------- /Zydis/ZydisExportConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4ncellor/Inline-PatchFinder/HEAD/Zydis/ZydisExportConfig.h --------------------------------------------------------------------------------