file
Identifies file types and analyzes content using target input and optional command-line options for malware investigation within the MalwareAnalyzerMCP environment.
Instructions
Analyze a file and determine its type
Example usage:
Basic file identification: { "target": "suspicious.exe" }
With options: { "target": "suspicious.exe", "options": "-b" }
Input Schema
Name | Required | Description | Default |
---|---|---|---|
options | No | Additional command-line options | |
target | Yes | Target file or data to analyze |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"options": {
"description": "Additional command-line options",
"type": "string"
},
"target": {
"description": "Target file or data to analyze",
"minLength": 1,
"type": "string"
}
},
"required": [
"target"
],
"type": "object"
}