Skip to content

Instantly share code, notes, and snippets.

@wrtcoder
Forked from 7h3rAm/hexdump.py
Last active August 29, 2015 14:27
Show Gist options
  • Save wrtcoder/aa1635bae7b879e56ee8 to your computer and use it in GitHub Desktop.
Save wrtcoder/aa1635bae7b879e56ee8 to your computer and use it in GitHub Desktop.
hexdump implementation in Python
def hexdump(src, length=16, sep='.'):
FILTER = ''.join([(len(repr(chr(x))) == 3) and chr(x) or sep for x in range(256)])
lines = []
for c in xrange(0, len(src), length):
chars = src[c:c+length]
hex = ' '.join(["%02x" % ord(x) for x in chars])
if len(hex) > 24:
hex = "%s %s" % (hex[:24], hex[24:])
printable = ''.join(["%s" % ((ord(x) <= 127 and FILTER[ord(x)]) or sep) for x in chars])
lines.append("%08x: %-*s |%s|\n" % (c, length*3, hex, printable))
print ''.join(lines)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment