Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/demkeys/pythonhexdump
Simple script to create a hexdump of a file in a specific format
https://github.com/demkeys/pythonhexdump
code hexdump infosec linux programming python python3 script windows
Last synced: about 1 month ago
JSON representation
Simple script to create a hexdump of a file in a specific format
- Host: GitHub
- URL: https://github.com/demkeys/pythonhexdump
- Owner: Demkeys
- Created: 2018-08-25T06:02:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-26T10:33:05.000Z (over 6 years ago)
- Last Synced: 2024-11-12T17:48:37.463Z (3 months ago)
- Topics: code, hexdump, infosec, linux, programming, python, python3, script, windows
- Language: Python
- Size: 84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PythonHexDump
### Simple script to create a hexdump of a file in a specific format. It displays the input offset in hexadecimal, followed by sixteen space-separated hexadecimal bytes split into two columns, followed by the same sixteen bytes as printable characters, enclosed within '|' characters.* __This script produces a hexdump of the mentioned file__
* __Argument #1: Path of file.__
* __Argument #2: Number of blocks to read.__
* __NOTE: Argument #2 is not the number of bytes per block.__
* __Each block's size is 16, so the script will try to read 16 bytes per block.__
* __Use --help flag for info.____Example hexdump:__
![](https://github.com/Demkeys/PythonHexDump/blob/master/screencap3.png "Screenshot")