mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-03-31 16:20:28 +02:00
52 lines
1.2 KiB
YAML
52 lines
1.2 KiB
YAML
name: "gdb"
|
||
command: "gdb"
|
||
enabled: true
|
||
short_description: "GNU调试器,用于二进制分析和调试"
|
||
description: |
|
||
GDB是GNU调试器,用于调试和分析二进制程序。
|
||
|
||
**主要功能:**
|
||
- 程序调试
|
||
- 内存分析
|
||
- 反汇编
|
||
- 断点设置
|
||
|
||
**使用场景:**
|
||
- 二进制分析
|
||
- 漏洞研究
|
||
- 逆向工程
|
||
- 程序调试
|
||
parameters:
|
||
- name: "binary"
|
||
type: "string"
|
||
description: "要分析的二进制文件路径"
|
||
required: true
|
||
position: 0
|
||
format: "positional"
|
||
- name: "commands"
|
||
type: "string"
|
||
description: "要执行的GDB命令(分号分隔)"
|
||
required: false
|
||
flag: "-ex"
|
||
format: "flag"
|
||
- name: "script_file"
|
||
type: "string"
|
||
description: "GDB脚本文件路径"
|
||
required: false
|
||
flag: "-x"
|
||
format: "flag"
|
||
- name: "additional_args"
|
||
type: "string"
|
||
description: |
|
||
额外的gdb参数。用于传递未在参数列表中定义的gdb选项。
|
||
|
||
**示例值:**
|
||
- 根据工具特性添加常用参数示例
|
||
|
||
**注意事项:**
|
||
- 多个参数用空格分隔
|
||
- 确保参数格式正确,避免命令注入
|
||
- 此参数会直接追加到命令末尾
|
||
required: false
|
||
format: "positional"
|