mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-03-31 00:09:29 +02:00
43 lines
805 B
YAML
43 lines
805 B
YAML
name: "hashpump"
|
|
command: "hashpump"
|
|
enabled: true
|
|
|
|
short_description: "哈希长度扩展攻击工具"
|
|
|
|
description: |
|
|
HashPump是一个用于执行哈希长度扩展攻击的工具。
|
|
|
|
**主要功能:**
|
|
- 哈希长度扩展攻击
|
|
- 多种哈希算法支持
|
|
- 签名生成
|
|
- 数据追加
|
|
|
|
**使用场景:**
|
|
- 密码学攻击
|
|
- 哈希函数测试
|
|
- CTF挑战
|
|
- 安全研究
|
|
|
|
parameters:
|
|
- name: "signature"
|
|
type: "string"
|
|
description: "原始哈希签名"
|
|
required: true
|
|
|
|
- name: "data"
|
|
type: "string"
|
|
description: "原始数据"
|
|
required: true
|
|
|
|
- name: "key_length"
|
|
type: "string"
|
|
description: "密钥长度"
|
|
required: true
|
|
|
|
- name: "append_data"
|
|
type: "string"
|
|
description: "要追加的数据"
|
|
required: true
|
|
|