NAME
ronin-unhexdump - Decodes a hexdump back into raw data
SYNOPSIS
ronin unhexdump [options] [FILE]`
DESCRIPTION
Un-hexdumps a hexdump back into it’s original raw data. Supports a variety of formats, bases, and encodings.
ARGUMENTS
- FILE
- The optional path to the file to un-hexdump.
OPTIONS
-o,--outputFILE- Optional path to the output file.
-f,--format[hexdump|od]- Specifies the hexdump format to parse.
-t,--typeTYPE- The binary data type to decode the data as. Must be one of the following:
int8uint8charucharbyteint16int16_leint16_beint16_neuint16uint16_leuint16_beuint16_neshortshort_leshort_beshort_neushortushort_leushort_beushort_neint32int32_leint32_beint32_neuint32uint32_leuint32_beuint32_neintlonglong_lelong_belong_neuintulongulong_leulong_beulong_neint64int64_leint64_beint64_neuint64uint64_leuint64_beuint64_nelong_longlong_long_lelong_long_belong_long_neulong_longulong_long_leulong_long_beulong_long_nefloatfloat_lefloat_befloat_nedoubledouble_ledouble_bedouble_ne
-b,--base2|8|10|16- The numeric base to print hexdumped numbers in.
-A,--address-base2|8|10|16- The numeric base to print the index addresses in.
--[no-]named-chars- Enables parsing of
od-style named characters (ex:nul). -h,--help- Prints help information.
EXAMPLES
Unhexdump a hexdump -C hexdump:
$ ronin unhexdump -o raw.bin hexdump.txt
Unhexdump a hexdump hexdump:
$ ronin unhexdump -o raw.bin -t uint16_le hexdump.txt
Unhexdump an od hexdump:
$ ronin unhexdump -o raw.bin -f od od.txt
AUTHOR
Postmodern postmodern.mod3@gmail.com