```
██████╗██╗ ██╗██████╗ ███████╗██████╗ ███╗ ███╗██╗███╗ ██╗██████╗
██╔════╝╚██╗ ██╔╝██╔══██╗██╔════╝██╔══██╗████╗ ████║██║████╗ ██║██╔══██╗
██║ ╚████╔╝ ██████╔╝█████╗ ██████╔╝██╔████╔██║██║██╔██╗ ██║██║ ██║
██║ ╚██╔╝ ██╔══██╗██╔══╝ ██╔══██╗██║╚██╔╝██║██║██║╚██╗██║██║ ██║
╚██████╗ ██║ ██████╔╝███████╗██║ ██║██║ ╚═╝ ██║██║██║ ╚████║██████╔╝
╚═════╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚═╝ ╚═══╝╚═════╝
```
### ⚡ AI 驱动的网络安全命令行工具
[](https://github.com/thecnical/cybermind)
[](LICENSE)
[](https://go.dev)
[](#-windows-安装)
[](#-kali-linux--ubuntu-安装)
[](#隐私
```
██████╗██╗ ██╗██████╗ ███████╗██████╗ ███╗ ███╗██╗███╗ ██╗██████╗
██╔════╝╚██╗ ██╔╝██╔══██╗██╔════╝██╔══██╗████╗ ████║██║████╗ ██║██╔══██╗
██║ ╚████╔╝ ██████╔╝█████╗ ██████╔╝██╔████╔██║██║██╔██╗ ██║██║ ██║
██║ ╚██╔╝ ██╔══██╗██╔══╝ ██╔══██╗██║╚██╔╝██║██║██║╚██╗██║██║ ██║
╚██████╗ ██║ ██████╔╝███████╗██║ ██║██║ ╚═╝ ██║██║██║ ╚████║██████╔╝
╚═════╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚═╝ ╚═══╝╚═════╝
```
### ⚡ AI 驱动的网络安全 CLI 工具
[](https://github.com/thecnical/cybermind)
[](LICENSE)
[](https://go.dev)
[](#-windows-安装)
[](#-kali-linux--ubuntu-安装)
[](#隐私与匿名)
[](https://github.com/thecnical/cybermind/stargazers)
*由 [Chandan Pandey](https://github.com/thecnical) 创建*
**CyberMind 是一个开源的 AI 网络安全助手 CLI 工具,专为 Kali Linux 和 Windows 构建,为渗透测试人员、道德黑客和漏洞赏金猎人而设计。**
## 什么是 CyberMind?
CyberMind 是一个开源的、AI 驱动的网络安全 CLI 工具,它连接到强大的多提供商 AI 后端,并在您的终端中直接提供真实、可用、可直接复制粘贴的网络安全命令和技术。无需浏览器,无需 GUI,无干扰——只有纯粹的命令行力量。
CyberMind 使用 Go 语言构建为单个二进制文件,可在 Kali Linux、Ubuntu、Parrot OS、BlackArch、Windows 和 macOS 上运行。交互式终端 UI 由 Bubble Tea 和 Lipgloss 提供支持,为您提供整洁的黑客风格界面,并带有打字动画、对话记忆和可滚动的聊天记录。
CyberMind 深入了解 100 多种 Kali Linux 工具——包括 nmap、metasploit、sqlmap、hashcat、bloodhound、impacket、aircrack-ng、burpsuite、nuclei、subfinder 等等。它会记住您的对话上下文,从不拒绝网络安全问题,并按需提供真实的 GitHub 链接和资源。
##  Windows 安装
### 步骤 1 — 安装 Go
从 [go.dev/dl](https://go.dev/dl) 下载并安装 Go——选择 `go1.xx.windows-amd64.msi`。
运行安装程序,然后打开一个新的 PowerShell 窗口并验证:
```
go version
```
您应该会看到类似 `go version go1.21.0 windows/amd64` 的输出。
### 步骤 2 — 安装 Git(如果尚未安装)
从 [git-scm.com](https://git-scm.com/download/win) 下载并使用默认设置安装。
### 步骤 3 — 克隆仓库
```
git clone https://github.com/thecnical/cybermind.git
cd cybermind\cli
```
### 步骤 4 — 构建二进制文件
```
go build -ldflags="-X main.Version=2.2.0" -o cybermind.exe .
```
这将在当前文件夹中创建 `cybermind.exe`。
### 步骤 5 — 全局安装(可在任何位置运行)
以管理员身份打开 PowerShell,然后运行:
```
Move-Item cybermind.exe C:\Windows\System32\cybermind.exe
```
现在您可以在 PowerShell 或命令提示符中的任何文件夹运行 `cybermind`。
### 步骤 6 — 启动
```
cybermind
```
或者直接提出问题:
```
cybermind "how to find subdomains"
cybermind scan 192.168.1.1 full
```
##  Kali Linux / Ubuntu 安装
### 步骤 1 — 安装 Go
```
sudo apt update && sudo apt install golang-go -y
go version
```
如果版本低于 1.21,请从 [go.dev/dl](https://go.dev/dl) 安装最新版本:
```
wget https://go.dev/dl/go1.22.0.linux-amd64.tar.gz
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf go1.22.0.linux-amd64.tar.gz
echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.bashrc
source ~/.bashrc
go version
```
### 步骤 2 — 安装 Git(如果尚未安装)
```
sudo apt install git -y
```
### 步骤 3 — 克隆仓库
```
git clone https://github.com/thecnical/cybermind.git
cd cybermind/cli
```
### 步骤 4 — 构建二进制文件
```
go build -ldflags="-X main.Version=2.2.0" -o cybermind .
```
### 步骤 5 — 全局安装
```
sudo mv cybermind /usr/local/bin/cybermind
sudo chmod +x /usr/local/bin/cybermind
```
### 步骤 6 — 启动
```
cybermind
```
或者使用一键安装程序,它会自动处理所有事情:
```
git clone https://github.com/thecnical/cybermind.git
cd cybermind
chmod +x install.sh && sudo ./install.sh
```
## 一键安装 (Linux/Kali)
```
git clone https://github.com/thecnical/cybermind.git && cd cybermind && chmod +x install.sh && sudo ./install.sh
```
## 隐私与匿名
**您的对话是完全私密的。没有人能读取您的聊天记录——无论是我们还是其他任何人。**
您的查询将通过 HTTPS 发送到 AI 后端。后端处理您的 prompt 并发回响应。服务器上不存储任何对话日志。无用户账号。无跟踪。无分析。无与您的查询关联的 IP 日志记录。
您的聊天记录仅保存在您自己的机器上——在 Linux/macOS 上位于 `~/.cybermind/history.json`,在 Windows 上位于 `C:\Users\
\.cybermind\history.json`。此文件绝不会离开您的设备。您可以随时使用 `cybermind clear` 将其清除。
为了实现最大程度的匿名性,请通过 Tor 或 VPN 进行路由:
```
# Linux — 通过 Tor
torsocks cybermind "your question"
# Linux — 通过 proxychains
proxychains cybermind scan target.com full
```
## 功能特性
```
⚡ Interactive AI Chat Fully responsive terminal UI with conversation memory
🔍 Scan Mode AI-guided network & web scanning
🕵️ Recon Mode OSINT, subdomain enum, passive/active recon
💥 Exploit Mode CVE guides, Metasploit modules, manual exploits
🎯 Payload Mode msfvenom payload generation guides
🛠️ Tool Mode Deep-dive help for any Kali Linux tool
🔗 Research Feature Real GitHub links, CVEs, exploit-db, resources
🧠 Conversation Memory AI remembers context across the full session
🚫 Zero Refusals Answers all cybersecurity questions
📜 Local Chat History Saved only on your machine, never uploaded
🔒 Zero Data Collection No logs, no accounts, no tracking
🔄 9 AI Providers Parallel execution, auto-fallback, never fails
🌐 Tor/VPN Support Full anonymity compatible
🪟 Windows Support Works natively on Windows
🐧 Linux/Kali Support Built for Kali Linux professionals
```
## 使用方法
### 交互式聊天模式
```
cybermind
```
### 扫描模式
```
cybermind scan 192.168.1.1 full
cybermind scan example.com subdomain
cybermind scan 10.0.0.0/24 network
cybermind scan target.com ad
```
扫描类型: `quick` `full` `stealth` `web` `vuln` `subdomain` `network` `ad`
### 侦察模式
```
cybermind recon target.com osint
cybermind recon example.com subdomain
cybermind recon 192.168.1.0/24 passive
```
侦察类型: `passive` `active` `subdomain` `osint` `web` `network`
### 漏洞利用模式
```
cybermind exploit CVE-2021-44228 10.0.0.1
cybermind exploit CVE-2017-0144 192.168.1.100
cybermind exploit "apache struts"
```
### Payload 模式
```
cybermind payload windows x64
cybermind payload linux x86
cybermind payload android
```
### 工具模式
```
cybermind tool sqlmap "find SQLi in login form"
cybermind tool nmap "scan for SMB vulnerabilities"
cybermind tool hashcat "crack NTLM hashes"
cybermind tool bloodhound "find paths to domain admin"
```
### 研究 — 获取链接和资源
```
cybermind "give me github links for pentesting tools"
cybermind "CVE-2021-44228 exploit links"
cybermind "best wordlists for password cracking"
```
### 直接提问
```
cybermind "how to crack WPA2 with aircrack-ng"
cybermind "kerberoasting step by step"
cybermind "bypass UAC on Windows 10"
```
### 历史记录和实用工具
```
cybermind history # view saved conversations
cybermind clear # wipe local history
cybermind help # show all commands
cybermind --version # show version
```
## 构建选项
```
make build # build for current OS
make build-linux # build for Kali Linux amd64
make build-windows # build for Windows amd64
make build-all # all platforms
make install # install to /usr/local/bin (Linux)
make clean # remove build artifacts
```
## 许可证
MIT — 详见 [LICENSE](LICENSE)。
## 免责声明
CyberMind 仅用于授权的安全研究、具有书面许可的渗透测试、CTF 比赛和网络安全教育。切勿针对您不拥有或未获得明确书面授权测试的系统使用。
由 [Chandan Pandey](https://github.com/thecnical) 用 ⚡ 打造
[GitHub](https://github.com/thecnical/cybermind) · [请我喝杯咖啡](https://buymeacoffee.com/chandanpandit)
*CyberMind — AI 网络安全 CLI | Kali Linux AI 助手 | Windows 黑客工具 | 道德黑客 AI | 渗透测试 CLI | 开源黑客工具 | AI 渗透测试助手 | 漏洞赏金 AI*
标签:AI驱动, Bug Bounty, CLI, DLL 劫持, DNS枚举, EVTX分析, Go语言, IP 地址批量处理, LLM, Unmanaged PE, WiFi技术, Windows内核, 匿名隐私, 反取证, 可自定义解析器, 大语言模型, 安全测试, 安全评估, 安全辅助, 实时处理, 密码管理, 开源安全工具, 技术栈:Go, 插件系统, 攻击性安全, 日志审计, 白帽子, 程序破解, 结构化查询, 网络安全, 网络安全审计, 网络安全工具, 自动化安全, 逆向工程平台, 隐私保护