Linux binary diff
If you want to diff binaries, try diff’ing the hexdumps of the two binaries.
hexdump binary_a >hexdump_a
hexdump binary_b >hexdump_b
diff -urN hexdump_a hexdump_b
If you want to diff binaries, try diff’ing the hexdumps of the two binaries.
hexdump binary_a >hexdump_a
hexdump binary_b >hexdump_b
diff -urN hexdump_a hexdump_b