MalwareAnalyzerMCP

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

NameRequiredDescriptionDefault
bitsNoSwitch to bits (binary) dump
colsNoFormat output into specified number of columns
lengthNoNumber of bytes to display
offsetNoStarting offset in the file
optionsNoAdditional command-line options
targetYesTarget file or data to analyze

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "bits": { "description": "Switch to bits (binary) dump", "type": "boolean" }, "cols": { "description": "Format output into specified number of columns", "type": "number" }, "length": { "description": "Number of bytes to display", "type": "number" }, "offset": { "description": "Starting offset in the file", "type": "number" }, "options": { "description": "Additional command-line options", "type": "string" }, "target": { "description": "Target file or data to analyze", "minLength": 1, "type": "string" } }, "required": [ "target" ], "type": "object" }

You must be authenticated.

Other Tools from MalwareAnalyzerMCP

Related Tools

    ID: v6v1ohhw7v