VANGUARDMONITOR/CRYPTOMANAGER
GitHub: VANGUARDMONITOR/CRYPTOMANAGER
一个集成多款密码破解与字典分析工具的统一安装管理容器,通过单条命令和 CLI 入口简化工具链部署。
Stars: 0 | Forks: 0
# ⚡ CSL CRYPTOMANAGER
`
- ✅ **操作系统自动检测** (Debian/Kali/Arch/Fedora)
- ✅ 通过 chafa 在终端显示**企业 Logo**
- ✅ **DICS/ 为空**,随时准备添加您的 wordlists
- ✅ **可移植** — 随处克隆,安装即可运行
- ✅ **幂等** — 运行安装程序一千次也不会破坏任何内容
## ⚡ 安装
### 选项 1:单行命令(推荐)
```
curl -sL https://raw.githubusercontent.com/VANGUARDMONITOR/CRYPTOMANAGER/master/install.sh | bash
```
安装程序会自动检测到它是通过管道传输的,并进入非交互模式。
它只会在需要安装软件包时要求输入 `sudo` 密码。
### 选项 2:克隆 + 安装
```
git clone https://github.com/VANGUARDMONITOR/CRYPTOMANAGER.git
cd CRYPTOMANAGER
./install.sh
```
### 安装程序会做什么?
1. 🖥️ **检测您的发行版** (Debian、Ubuntu、Kali、Arch、Fedora、RHEL…)
2. 🔧 **安装系统依赖**:C 编译器、Python 3、Perl、Git、Chafa、aspell
3. 🐍 **安装 Python 软件包**:pyenchant、beautifulsoup4(作为系统软件包)
4. 🔐 **通过 pip 安装 pycryptodome**(自动虚拟环境)
5. 🏗️ **编译 29 个 hashcat-utils + princeprocessor (pp64.bin) 的 C 二进制文件**
6. 🔗 **在 `/usr/local/bin/` 中创建 wrappers** 以便立即访问
7. ✅ **验证**一切是否正常并显示摘要
## 🚀 用法
### CLI 入口点
```
cryptomanager tools # Lista todas las herramientas
cryptomanager run combinator wordlist1.txt wordlist2.txt
cryptomanager run pp64.bin --wordlist=dic.txt
cryptomanager run statsgen.py rockyou.txt
cryptomanager run rurasort.py wordlist.txt
cryptomanager run hexcat.py cracked.txt
cryptomanager update # Git pull
cryptomanager help # Ayuda completa
cryptomanager version # Versión instalada
cryptomanager install # Re-ejecuta el instalador
```
### 直接访问
安装完成后,所有工具都可以在任何目录下全局使用:
```
# hashcat-utils
combinator wordlist1.txt wordlist2.txt > combinadas.txt
rli -i wordlist.txt -o sorted.txt
keyspace --keyspace-lb=8 --keyspace-lb=12
# princeprocessor
pp64.bin --wordlist=dic.txt --rules=best64.rule
# P.A.C.K.
statsgen.py rockyou.txt -o stats.txt
maskgen.py stats.txt
policygen.py --min-len=8 --max-len=12 --min-digit=1
rulegen.py --grammar=best64.rule
# rurasort
rurasort.py wordlist.txt > sorted.txt
# Hexcat
hexcat.py cracked_hashes.txt
```
## 📦 包含的工具
| 项目 | 语言 | 工具 |
|----------|----------|--------------|
| **hashcat-utils** | C | 29 个二进制文件 (combinator、rli、keyspace、gate、morph、cutb、len、prepare…) |
| **princeprocessor** | C | pp64.bin (PRINCE 候选生成) |
| **P.A.C.K.** | Python 3 | statsgen.py、maskgen.py、policygen.py、rulegen.py |
| **rurasort** | Python 3 | rurasort.py (wordlists 的概率排序) |
| **Hexcat** | Python 3 | hexcat.py (破解后 `$HEX[]` 哈希解码器) |
## 🐧 支持的发行版
| 发行版 | 检测 | 管理器 |
|-------------|-----------|--------|
| Debian / Ubuntu / Kali / Linux Mint / Pop!_OS / Zorin | ✅ 自动 | `apt-get` |
| Arch Linux / Manjaro / EndeavourOS / Garuda | ✅ 自动 | `pacman` |
| Fedora / RHEL / CentOS / Rocky / AlmaLinux | ✅ 自动 | `dnf` |
| 其他 | ⚠️ 显示手动说明 | — |
## 🔧 故障排除
| 问题 | 解决方案 |
|----------|----------|
| `cryptomanager: command not found` | 运行 `./install.sh` 或直接使用 `./cryptomanager` |
| hashcat-utils 编译错误 | 检查是否已安装 `build-essential`。重新运行 `./install.sh` |
| `chafa` 未安装 | 非关键问题 — 所有工具在没有视觉 Logo 的情况下均可运行 |
| “sudo 不可用”错误 | 使用您发行版的包管理器手动安装软件包 |
| Logo 未显示 | 检查是否已安装 `chafa` 且 `assets/CSL_PURO.png` 是否存在 |
| `ntlmv1.py` 不工作 | 需要 `pycryptodome` → 安装程序通过虚拟环境处理此问题 |
## 🧪 安装程序模式
```
./install.sh # Instalación completa (interactiva)
./install.sh --check # Solo auditar dependencias, sin modificar
./install.sh --verify # Validar instalación existente
./install.sh --dry-run # Mostrar qué acciones se ejecutarían
./install.sh --non-interactive # Automatización (no pregunta)
./install.sh --help # Mostrar ayuda completa
```
## 📄 许可证
CRYPTOMANAGER 是一个集成了多个开源项目的容器。
每个子项目均保留其原始许可证。
| 项目 | 许可证 | 原作者 |
|----------|----------|----------------|
| hashcat-utils | MIT | hashcat |
| princeprocessor | MIT | hashcat |
| P.A.C.K. | 版权所有 | Peter Kacherginsky (iphelix) |
| rurasort | GPL-3.0 | rarecoil |
| Hexcat | — | ins1gn1a |
### 致谢
- **CSL Cryptomanager**: [VANGUARDMONITOR](https://github.com/VANGUARDMONITOR)
- **独立代码库**: [hashcat-utils](https://github.com/VANGUARDMONITOR/hashcat-utils), [princeprocessor](https://github.com/VANGUARDMONITOR/princeprocessor), [P.A.C.K.](https://github.com/VANGUARDMONITOR/P.A.C.K.), [rurasort](https://github.com/VANGUARDMONITOR/rurasort), [Hexcat](https://github.com/VANGUARDMONITOR/Hexcat)
CSL · CRYPTOMANAGER Password Cracking 实验室 · 2026
标签:客户端加密, 应用安全