├── .clang-format ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakePresets.json ├── Folder.DotSettings ├── LICENSE.txt ├── README.md ├── assets ├── demo.gif ├── demo_macos.gif ├── icon.png ├── icon.psd ├── menu.png ├── progress.png └── results.png ├── ida-plugin.json ├── src ├── branch_manager.hpp ├── console.cpp ├── console.hpp ├── emulator.cpp ├── emulator.hpp ├── global.hpp ├── handler.cpp ├── handler.hpp ├── instruction_classifier.hpp ├── logger.hpp ├── plugin.cpp ├── register_mapper.hpp ├── results.cpp ├── results.hpp ├── string_result.hpp ├── strings.hpp └── vector_operations.hpp └── vcpkg.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /Folder.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/Folder.DotSettings -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /assets/demo_macos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/assets/demo_macos.gif -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/assets/icon.psd -------------------------------------------------------------------------------- /assets/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/assets/menu.png -------------------------------------------------------------------------------- /assets/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/assets/progress.png -------------------------------------------------------------------------------- /assets/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/assets/results.png -------------------------------------------------------------------------------- /ida-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/ida-plugin.json -------------------------------------------------------------------------------- /src/branch_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/src/branch_manager.hpp -------------------------------------------------------------------------------- /src/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/src/console.cpp -------------------------------------------------------------------------------- /src/console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/src/console.hpp -------------------------------------------------------------------------------- /src/emulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/src/emulator.cpp -------------------------------------------------------------------------------- /src/emulator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/src/emulator.hpp -------------------------------------------------------------------------------- /src/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/src/global.hpp -------------------------------------------------------------------------------- /src/handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/src/handler.cpp -------------------------------------------------------------------------------- /src/handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/src/handler.hpp -------------------------------------------------------------------------------- /src/instruction_classifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/src/instruction_classifier.hpp -------------------------------------------------------------------------------- /src/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/src/logger.hpp -------------------------------------------------------------------------------- /src/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/src/plugin.cpp -------------------------------------------------------------------------------- /src/register_mapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/src/register_mapper.hpp -------------------------------------------------------------------------------- /src/results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/src/results.cpp -------------------------------------------------------------------------------- /src/results.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/src/results.hpp -------------------------------------------------------------------------------- /src/string_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/src/string_result.hpp -------------------------------------------------------------------------------- /src/strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/src/strings.hpp -------------------------------------------------------------------------------- /src/vector_operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/src/vector_operations.hpp -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelTulach/unxorer/HEAD/vcpkg.json --------------------------------------------------------------------------------