Files
CyberStrikeAI/tools/objdump.yaml
2025-11-09 14:57:55 +08:00

51 lines
1.1 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: "objdump"
command: "objdump"
enabled: true
short_description: "二进制文件反汇编工具"
description: |
Objdump是GNU binutils的一部分用于反汇编二进制文件。
**主要功能:**
- 反汇编
- 符号表显示
- 节信息显示
- 多种架构支持
**使用场景:**
- 二进制分析
- 逆向工程
- 程序理解
- 调试辅助
parameters:
- name: "binary"
type: "string"
description: "要分析的二进制文件路径"
required: true
position: 0
format: "positional"
- name: "disassemble"
type: "bool"
description: "反汇编二进制文件"
required: false
flag: "-d"
format: "flag"
default: true
- name: "additional_args"
type: "string"
description: |
额外的objdump参数。用于传递未在参数列表中定义的objdump选项。
**示例值:**
- 根据工具特性添加常用参数示例
**注意事项:**
- 多个参数用空格分隔
- 确保参数格式正确,避免命令注入
- 此参数会直接追加到命令末尾
required: false
format: "positional"