shell_command
Execute terminal commands with configurable timeout for malware analysis, allowing background processing if the command exceeds the set duration.
Instructions
Execute a command in the terminal with timeout. Command will continue running in background if it doesn't complete within timeout.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | The command to execute in the terminal | |
timeout_ms | No | Optional timeout in milliseconds (default: 30000) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"command": {
"description": "The command to execute in the terminal",
"minLength": 1,
"type": "string"
},
"timeout_ms": {
"description": "Optional timeout in milliseconds (default: 30000)",
"type": "number"
}
},
"required": [
"command"
],
"type": "object"
}