mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-03-31 00:09:29 +02:00
65 lines
1.3 KiB
YAML
65 lines
1.3 KiB
YAML
name: "hashcat"
|
||
command: "hashcat"
|
||
enabled: true
|
||
|
||
short_description: "高级密码破解工具,支持GPU加速"
|
||
|
||
description: |
|
||
Hashcat是一个高级密码恢复工具,支持多种哈希算法和攻击模式。
|
||
|
||
**主要功能:**
|
||
- 支持多种哈希算法
|
||
- GPU加速
|
||
- 多种攻击模式(字典、组合、掩码等)
|
||
- 规则引擎
|
||
|
||
**使用场景:**
|
||
- 密码恢复
|
||
- 哈希破解
|
||
- 安全测试
|
||
- 取证分析
|
||
|
||
parameters:
|
||
- name: "hash_file"
|
||
type: "string"
|
||
description: "包含哈希的文件"
|
||
required: true
|
||
position: 0
|
||
format: "positional"
|
||
|
||
- name: "hash_type"
|
||
type: "string"
|
||
description: "哈希类型编号"
|
||
required: true
|
||
flag: "-m"
|
||
format: "flag"
|
||
|
||
- name: "attack_mode"
|
||
type: "string"
|
||
description: "攻击模式(0=字典, 1=组合, 3=掩码等)"
|
||
required: false
|
||
default: "0"
|
||
flag: "-a"
|
||
format: "flag"
|
||
|
||
- name: "wordlist"
|
||
type: "string"
|
||
description: "字典文件"
|
||
required: false
|
||
default: "/usr/share/wordlists/rockyou.txt"
|
||
position: 1
|
||
format: "positional"
|
||
|
||
- name: "mask"
|
||
type: "string"
|
||
description: "掩码(用于掩码攻击)"
|
||
required: false
|
||
flag: "-a"
|
||
format: "flag"
|
||
|
||
- name: "additional_args"
|
||
type: "string"
|
||
description: "额外的Hashcat参数"
|
||
required: false
|
||
|