export_report
Generate structured detection reports from Java memory shell scans, including suspicious classes, risk levels, and decompiled source code for analysis.
Instructions
执行 memory-shell-detector-cli.jar 生成内存马检测报告
底层命令: java -jar memory-shell-detector-cli.jar --report <output_file> -p -f
此工具将扫描结果导出为结构化报告,包含:
扫描时间和目标进程信息
检测到的所有可疑类列表
每个可疑类的风险等级和类型判断
反编译的源代码片段
Args: pid: 目标 Java 进程的 PID output_file: 报告输出文件路径 tools_dir: 检测工具 jar 包所在目录 format: 报告格式(json/html/txt) use_ssh: 是否通过 SSH 在远程服务器执行 ssh_host/ssh_username/ssh_password/ssh_key_path/ssh_port: SSH 连接参数
Returns: 导出结果和报告文件路径
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pid | Yes | ||
| output_file | Yes | ||
| tools_dir | No | ||
| format | No | json | |
| use_ssh | No | ||
| ssh_host | No | ||
| ssh_username | No | ||
| ssh_password | No | ||
| ssh_key_path | No | ||
| ssh_port | No |