Reputation: 791
Is there any straightforward way to modify a binary from the commandline?
Let's say I know that my binary contains 1234ABCD and I want to change it to 12FFABCD or FFFFABCD or maybe even FF34FFABC0 (you get the idea) :-)
How might I achieve that without using any special purpose tools like Swiss File Knife or similar?
It would be great to do it just from the command line with only standard Linux tools.
Or maybe even better, instead for searching for the hexadecimal string I want to replace directly writing FF at offset 0x10000, 12 at offset 0x100001 and so on.
It should be scriptable and run directly from the command line. I am looking for something like "binary-which-is-included-in-the-distro --write AB --at-offset 100000 --file thebinary.bin". I am quite sure that it is possible with dd, but I wasn't able to wrap my head around the man page.
Upvotes: 79
Views: 57277
Reputation: 11219
Regarding Josh's answer: In case you want to do it for a specific address -
hexdump -C {file location}
with some hexadecimal value you might have tried to add 0x, but it would fail:
dd: warning: ‘0x’ is a zero multiplier; use ‘00x’ if that is intended
You can achieve this by encapsulating it with $(()) that the terminal will translate as an integer value:
mybinary={file location}
printf '\x31\xc0\xc3' | dd of=$mybinary bs=1 seek=$((0x100)) count=3 conv=notrunc
Upvotes: 1
Reputation: 29335
The printf + dd
based solutions do not seem to work for writing out zeros. Here is a generic solution in Python 3 (included in all modern distributions) which should work for all byte values...
#!/usr/bin/env python3
#file: set-byte
import sys
fileName = sys.argv[1]
offset = int(sys.argv[2], 0)
byte = int(sys.argv[3], 0)
with open(fileName, "r+b") as fh:
fh.seek(offset)
fh.write(bytes([byte]))
Usage...
set-byte eeprom_bad.bin 0x7D00 0
set-byte eeprom_bad.bin 1000 0xff
Note: This code can handle input numbers both in hexadecimal (prefixed by 0x) and decimal (no prefix).
Upvotes: 14
Reputation: 6473
printf '\x31\xc0\xc3' | dd of=test_blob bs=1 seek=100 count=3 conv=notrunc
dd arguments:
One Josh looking out for another ;)
Upvotes: 136
Reputation: 9715
The xxd tool, which comes with Vim (and thus is quite likely to be available) allows to hex dump a binary file and construct a new binary file from a modified hex dump.
Upvotes: 4
Reputation: 220553
If you don't need it to be scriptable, you could try the hexedit utility. It is available in many Linux distributions (if not installed by default, it can usually be found in the distribution's package repository).
If your distribution doesn't have it, you can build and install it from source.
Upvotes: 1
Reputation: 21
Writing the same byte at two different positions in the same file with a one liner.
printf '\x00'| tee >(dd of=filename bs=1 count=1 seek=692 conv=notrunc status=none) \
>(dd of=filename bs=1 count=1 seek=624 conv=notrunc status=none)
status=none very useful when you don't want any statistics out of dd.
Upvotes: 2
Reputation: 1457
Some alternatives:
ucon64 --nbak --poke=OFF:V FILE
(meant for ROM dumps, should work with any binary file, but no inplace editing)printf '\x31' | dd of=FILE bs=1 seek=OFFSET count=1 conv=notrunc
(wrapped in a shellscript like this that also allows reading)Upvotes: 2
Reputation: 1093
Here's a Bash function replaceByte
, which takes the following parameters:
#!/bin/bash
# param 1: file
# param 2: offset
# param 3: value
function replaceByte() {
printf "$(printf '\\x%02X' $3)" | dd of="$1" bs=1 seek=$2 count=1 conv=notrunc &> /dev/null
}
# Usage:
# replaceByte 'thefile' $offset 95
Upvotes: 10