run_tool
Execute malware analysis commands on REMnux to extract strings, analyze files, and investigate suspicious samples using tools like pestr and strings.
Instructions
Execute a command in REMnux. Supports piped commands (e.g., 'oledump.py sample.doc | grep VBA'). String extraction: For PE files use 'pestr'; for non-PE use 'strings' (ASCII) and 'strings -el' (Unicode).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| command | Yes | Command to execute (can include pipes, e.g., 'strings sample.exe | grep -i password') | |
| input_file | No | Input file path (relative to samples dir, or absolute path in local mode) - appended to command | |
| timeout | No | Timeout in seconds (default: 300) |