Files
CyberStrikeAI/tools/hashcat.yaml
2025-11-21 23:20:41 +08:00

57 lines
1.3 KiB
YAML
Raw Permalink 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: "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
position: 2
format: "positional"
- name: "additional_args"
type: "string"
description: "额外的Hashcat参数"
required: false
format: "positional"