xxd
Convert files or data into hexdump or binary formats for malware analysis. Customize output with length, offset, column formatting, or switch to binary mode for detailed inspection.
Instructions
Create a hexdump with ASCII representation
Example usage:
- Standard xxd dump: { "target": "suspicious.exe" }
- With length limit: { "target": "suspicious.exe", "length": 256 }
- With column formatting: { "target": "suspicious.exe", "cols": 16 }
- Binary bits mode: { "target": "suspicious.exe", "bits": true }
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bits | No | Switch to bits (binary) dump | |
cols | No | Format output into specified number of columns | |
length | No | Number of bytes to display | |
offset | No | Starting offset in the file | |
options | No | Additional command-line options | |
target | Yes | Target file or data to analyze |