mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-03-31 00:09:29 +02:00
46 lines
1.1 KiB
YAML
46 lines
1.1 KiB
YAML
name: "one-gadget"
|
||
command: "one_gadget"
|
||
enabled: true
|
||
short_description: "在libc中查找one-shot RCE gadget的工具"
|
||
description: |
|
||
One-gadget是一个用于在libc中查找one-shot RCE gadget的工具。
|
||
|
||
**主要功能:**
|
||
- One-shot gadget搜索
|
||
- 约束级别检查
|
||
- 多种libc支持
|
||
|
||
**使用场景:**
|
||
- CTF挑战
|
||
- 漏洞利用开发
|
||
- ROP链简化
|
||
- 安全研究
|
||
parameters:
|
||
- name: "libc_path"
|
||
type: "string"
|
||
description: "libc二进制文件路径"
|
||
required: true
|
||
position: 0
|
||
format: "positional"
|
||
- name: "level"
|
||
type: "int"
|
||
description: "约束级别(0, 1, 2)"
|
||
required: false
|
||
flag: "-l"
|
||
format: "flag"
|
||
default: 1
|
||
- name: "additional_args"
|
||
type: "string"
|
||
description: |
|
||
额外的one-gadget参数。用于传递未在参数列表中定义的one-gadget选项。
|
||
|
||
**示例值:**
|
||
- 根据工具特性添加常用参数示例
|
||
|
||
**注意事项:**
|
||
- 多个参数用空格分隔
|
||
- 确保参数格式正确,避免命令注入
|
||
- 此参数会直接追加到命令末尾
|
||
required: false
|
||
format: "positional"
|