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

58 lines
1.4 KiB
YAML
Raw Permalink 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-peda"
command: "gdb"
enabled: true
short_description: "带PEDA增强的GDB调试器"
description: |
GDB-PEDA是带有PEDAPython Exploit Development Assistance增强的GDB调试器。
**主要功能:**
- 增强的GDB功能
- 自动化分析
- 漏洞利用辅助
- 可视化显示
**使用场景:**
- 二进制调试
- 漏洞利用开发
- 逆向工程
- 安全研究
parameters:
- name: "binary"
type: "string"
description: "要调试的二进制文件"
required: false
position: 0
format: "positional"
- name: "commands"
type: "string"
description: "GDB命令分号分隔"
required: false
flag: "-ex"
format: "flag"
- name: "attach_pid"
type: "int"
description: "要附加的进程ID"
required: false
flag: "-p"
format: "flag"
- name: "core_file"
type: "string"
description: "核心转储文件路径"
required: false
flag: "-c"
format: "flag"
- name: "additional_args"
type: "string"
description: |
额外的gdb-peda参数。用于传递未在参数列表中定义的gdb-peda选项。
**示例值:**
- 根据工具特性添加常用参数示例
**注意事项:**
- 多个参数用空格分隔
- 确保参数格式正确,避免命令注入
- 此参数会直接追加到命令末尾
required: false
format: "positional"