hexdump
View file contents in hexadecimal format for malware analysis. Analyze specific sections by setting offsets and byte lengths, providing detailed insights into file structure and data.
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 |