├── .clang-format ├── .clang-format-ignore ├── .clang-tidy ├── .github ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE ├── README.md ├── cmake ├── compiler-env.cmake ├── utils.cmake └── version.cmake ├── deps └── CMakeLists.txt ├── docs └── preview.png └── src ├── CMakeLists.txt ├── buffer_accessor.hpp ├── ida_sdk.hpp ├── patch_finder.cpp ├── patch_finder.hpp ├── pe_parser.hpp ├── plugin.cpp └── win_pefile.hpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-format-ignore: -------------------------------------------------------------------------------- 1 | **/*.hxx 2 | deps/**/* 3 | -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/README.md -------------------------------------------------------------------------------- /cmake/compiler-env.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/cmake/compiler-env.cmake -------------------------------------------------------------------------------- /cmake/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/cmake/utils.cmake -------------------------------------------------------------------------------- /cmake/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/cmake/version.cmake -------------------------------------------------------------------------------- /deps/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/docs/preview.png -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/buffer_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/src/buffer_accessor.hpp -------------------------------------------------------------------------------- /src/ida_sdk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/src/ida_sdk.hpp -------------------------------------------------------------------------------- /src/patch_finder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/src/patch_finder.cpp -------------------------------------------------------------------------------- /src/patch_finder.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace momo 4 | { 5 | void find_patches(); 6 | } 7 | -------------------------------------------------------------------------------- /src/pe_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/src/pe_parser.hpp -------------------------------------------------------------------------------- /src/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/src/plugin.cpp -------------------------------------------------------------------------------- /src/win_pefile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/patch-finder/HEAD/src/win_pefile.hpp --------------------------------------------------------------------------------