hexdump
Analyze and display file contents in hexadecimal format for malware inspection. Customize output with length limits or offsets to examine specific file sections.
Instructions
Display file contents in hexadecimal format
Example usage:
- Standard hexdump: { "target": "suspicious.exe" }
- With length limit: { "target": "suspicious.exe", "length": 256 }
- With offset: { "target": "suspicious.exe", "offset": 1024 }
Input Schema
Name | Required | Description | Default |
---|---|---|---|
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 |