Files
CyberStrikeAI/tools/gdb.yaml
2025-11-21 23:20:41 +08:00

52 lines
1.2 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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"