Skip to content

Hex Dump

Hex Dump tab

The Hex Dump tab (5) is a full hex editor with:

  • Byte category coloring — PE headers, metadata, IL bodies, and data sections are color-coded
  • Data interpretation panel — shows the value at the cursor as int8/16/32/64, float, double, and UTF-8
  • Vi-style modal editing — starts in normal mode (read-only) to prevent accidental writes
KeyAction
h j k lVim-style cursor movement
gJump to hex offset
iEnter insert mode
eToggle endianness (LE/BE)
/Search
Ctrl+TToggle text/hex search mode

Press i to enter insert mode. Type two hex digits (0-9, a-f) to overwrite one byte — the first digit sets the high nibble, the second commits the edit.

Press Esc to return to normal mode.

Press Ctrl+S in normal mode when bytes have been modified. The editor validates the PE image before writing — invalid edits are rejected.