Files
CyberStrikeAI/tools/angr.yaml
2025-11-09 14:59:56 +08:00

62 lines
1.5 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: "angr"
command: "python3"
enabled: true
short_description: "符号执行和二进制分析框架"
description: |
Angr是一个符号执行和二进制分析框架用于自动化漏洞发现和利用。
**主要功能:**
- 符号执行
- 控制流图分析
- 静态分析
- 漏洞发现
**使用场景:**
- 二进制分析
- 漏洞发现
- 符号执行
- 安全研究
parameters:
- name: "binary"
type: "string"
description: "要分析的二进制文件路径"
required: true
- name: "script_content"
type: "string"
description: "自定义angr脚本内容"
required: false
- name: "find_address"
type: "string"
description: "符号执行中要查找的地址"
required: false
- name: "avoid_addresses"
type: "string"
description: "要避免的地址(逗号分隔)"
required: false
- name: "analysis_type"
type: "string"
description: "分析类型symbolic, cfg, static"
required: false
default: "symbolic"
- name: "additional_args"
type: "string"
description: |
额外的angr参数。用于传递未在参数列表中定义的angr选项。
**示例值:**
- 根据工具特性添加常用参数示例
**注意事项:**
- 多个参数用空格分隔
- 确保参数格式正确,避免命令注入
- 此参数会直接追加到命令末尾
required: false
format: "positional"