mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-03-31 00:09:29 +02:00
59 lines
1.4 KiB
YAML
59 lines
1.4 KiB
YAML
name: "pwninit"
|
||
command: "pwninit"
|
||
enabled: true
|
||
short_description: "CTF二进制漏洞利用设置工具"
|
||
description: |
|
||
Pwninit是一个用于CTF二进制漏洞利用设置的工具,自动配置libc和loader。
|
||
|
||
**主要功能:**
|
||
- 自动libc识别
|
||
- Loader配置
|
||
- 模板生成
|
||
- 环境设置
|
||
|
||
**使用场景:**
|
||
- CTF挑战
|
||
- 漏洞利用开发
|
||
- 环境配置
|
||
- 安全研究
|
||
parameters:
|
||
- name: "binary"
|
||
type: "string"
|
||
description: "二进制文件路径"
|
||
required: true
|
||
position: 0
|
||
format: "positional"
|
||
- name: "libc"
|
||
type: "string"
|
||
description: "libc文件路径"
|
||
required: false
|
||
flag: "--libc"
|
||
format: "flag"
|
||
- name: "ld"
|
||
type: "string"
|
||
description: "Loader文件路径"
|
||
required: false
|
||
flag: "--ld"
|
||
format: "flag"
|
||
- name: "template_type"
|
||
type: "string"
|
||
description: "模板类型(python, c)"
|
||
required: false
|
||
flag: "--template"
|
||
format: "flag"
|
||
default: "python"
|
||
- name: "additional_args"
|
||
type: "string"
|
||
description: |
|
||
额外的pwninit参数。用于传递未在参数列表中定义的pwninit选项。
|
||
|
||
**示例值:**
|
||
- 根据工具特性添加常用参数示例
|
||
|
||
**注意事项:**
|
||
- 多个参数用空格分隔
|
||
- 确保参数格式正确,避免命令注入
|
||
- 此参数会直接追加到命令末尾
|
||
required: false
|
||
format: "positional"
|