A Hex Editor for Reverse Engineers, Programmers and people who value their retinas when working at 3 AM.

'Build' workflow Status Discord Server Total Downloads

## Supporting If you like my work, please consider supporting me on GitHub Sponsors, Patreon or PayPal. Thanks a lot!

GitHub donate button Patreon donate button PayPal donate button

## Screenshots ![Hex editor, patterns and data information](https://user-images.githubusercontent.com/10835354/139717326-8044769d-527b-4d88-8adf-2d4ecafdca1f.png) ![Bookmarks, disassembler and data processor](https://user-images.githubusercontent.com/10835354/139717323-1f8c9d52-f7eb-4f43-9f11-097ac728ed6c.png) ## Features - Featureful hex view - Byte patching - Patch management - Copy bytes as feature - Bytes - Hex string - C, C++, C#, Rust, Python, Java & JavaScript array - ASCII-Art hex view - HTML self-contained div - String and hex search - Colorful highlighting - Goto from start, end and current cursor position - Custom C++-like pattern language for parsing highlighting a file's content - Automatic loading based on MIME type - arrays, pointers, structs, unions, enums, bitfields, namespaces, little and big endian support, conditionals and much more! - Useful error messages, syntax highlighting and error marking - Doesn't burn out your retinas when used in late-night sessions - Dark mode by default, but a light mode is available as well - Data importing - Base64 files - IPS and IPS32 patches - Data exporting - IPS and IPS32 patches - Data inspector allowing interpretation of data as many different types (little and big endian) - Huge file support with fast and efficient loading - String search - Copying of strings - Copying of demangled strings - File hashing support - CRC16 and CRC32 with custom initial values and polynomials - MD4, MD5 - SHA-1, SHA-224, SHA-256, SHA-384, SHA-512 - Disassembler supporting many architectures (frontend for Capstone) - ARM32 (ARM, Thumb, Cortex-M, AArch32) - ARM64 - MIPS (MIPS32, MIPS64, MIPS32R6, Micro) - x86 (16-bit, 32-bit, 64-bit) - PowerPC (32-bit, 64-bit) - SPARC - IBM SystemZ - xCORE - M68K - TMS320C64X - M680X - Ethereum - RISC-V - WebAssembly - MOS65XX - Berkeley Packet Filter - Bookmarks - Region highlighting - Comments - Data Analyzer - File magic-based file parser and MIME type database - Byte distribution graph - Entropy graph - Highest and average entropy - Encrypted / Compressed file detection - Built-in Content Store - Download all files found in the database directly from within ImHex - Yara Rules support - Quickly scan a file for vulnerabilities with official yara rules - Helpful tools - Itanium and MSVC demangler - ASCII table - Regex replacer - Mathematical expression evaluator (Calculator) - Hexadecimal Color picker - Base converter - UNIX Permissions calculator - Anonfiles File upload tool - Wikipedia term definition finder - File utilities - File splitter - File combiner - File shredder ## Pattern Language The Pattern Language is the completely custom programming language developed for ImHex. It allows you to define structures and data types in a C-like syntax and then use them to parse and highlight a file's content. - Source Code: [Link](https://github.com/WerWolv/PatternLanguage/) - Documentation: [Link](https://imhex.werwolv.net/docs/) ## Database For format patterns, libraries, magic and constant files, check out the [ImHex-Patterns](https://github.com/WerWolv/ImHex-Patterns) repository. **Feel free to PR your own files there as well!** ## Requirements To use ImHex, the following minimal system requirements need to be met: - **OS**: Windows 7 or higher, macOS 10.15 (Catalina) or higher, "Modern" Linux (Ubuntu 22.04, Fedora Stable/Rawhide, and Arch Linux have official packages, other distributions can use the AppImage) - **CPU**: x86_64 (64 Bit) - **GPU**: OpenGL 3.0 or higher (preferable a dedicated GPU and not Intel HD Graphics) - **RAM**: 512MB, more may be required for more complicated analysis - **Storage**: 100MB ## Installing Information on how to install ImHex can be found in the [Install](/INSTALL.md) guide ## Compiling To compile ImHex on any platform, GCC (or Clang) is required with a version that supports C++23 or higher. On macOS, Clang is also required to compile some ObjC code. All releases are being built using latest available GCC. Many dependencies are bundled into the repository using submodules so make sure to clone it using the `--recurse-submodules` option. All dependencies that aren't bundled, can be installed using the dependency installer scripts found in the `/dist` folder. For more information, check out the [Compiling](/dist/compiling) guide. ## Plugin development To develop plugins for ImHex, use one of the following two templates projects to get started. You then have access to the entirety of libimhex as well as the ImHex API and the Content Registry to interact with ImHex or to add new content. - [C++ Plugin Template](https://github.com/WerWolv/ImHex-Cpp-Plugin-Template) - [Rust Plugin Template](https://github.com/WerWolv/ImHex-Rust-Plugin-Template) ## Credits ### Contributors - [Mary](https://github.com/Thog) for her immense help porting ImHex to MacOS and help during development - [Roblabla](https://github.com/Roblabla) for adding MSI Installer support to ImHex - [jam1garner](https://github.com/jam1garner) and [raytwo](https://github.com/raytwo) for their help with adding Rust support to plugins - [Mailaender](https://github.com/Mailaender) for getting ImHex onto Flathub - [iTrooz](https://github.com/iTrooz) for many improvements related to release packaging and the GitHub Action runners. - Everybody else who has reported issues on Discord or GitHub that I had great conversations with :) ### Dependencies - Thanks a lot to ocornut for their amazing [Dear ImGui](https://github.com/ocornut/imgui) which is used for building the entire interface - Thanks to ocornut as well for their hex editor view used as base for this project. - Thanks to BalazsJako for their incredible [ImGuiColorTextEdit](https://github.com/BalazsJako/ImGuiColorTextEdit) used for the pattern language syntax highlighting - Thanks to nlohmann for their [json](https://github.com/nlohmann/json) library used for project files - Thanks to aquynh for [capstone](https://github.com/aquynh/capstone) which is the base of the disassembly window - Thanks to vitaut for their [libfmt](https://github.com/fmtlib/fmt) library which makes formatting and logging so much better - Thanks to rxi for [microtar](https://github.com/rxi/microtar) used for extracting downloaded store assets - Thanks to btzy for [nativefiledialog-extended](https://github.com/btzy/nativefiledialog-extended) - Thanks to danyspin97 for [xdgpp](https://sr.ht/~danyspin97/xdgpp) - Thanks to all other groups and organizations whose libraries are used in ImHex