mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-03-31 16:20:28 +02:00
62 lines
1.5 KiB
YAML
62 lines
1.5 KiB
YAML
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" |