CyberMind is an open-source, AI-powered cybersecurity CLI tool that connects to a powerful multi-provider AI backend and delivers real, working, copy-paste-ready cybersecurity commands and techniques directly in your terminal. No browser, no GUI, no distractions — just pure command-line power.
Built in Go as a single binary, CyberMind works on Kali Linux, Ubuntu, Parrot OS, BlackArch, Windows, and macOS. The interactive terminal UI is powered by Bubble Tea and Lipgloss, giving you a clean hacker-style interface with typing animations, conversation memory, and scrollable chat history.
CyberMind knows over 100 Kali Linux tools deeply — nmap, metasploit, sqlmap, hashcat, bloodhound, impacket, aircrack-ng, burpsuite, nuclei, subfinder, and many more. It remembers your conversation context, never refuses cybersecurity questions, and provides real GitHub links and resources on demand.
Download and install Go from go.dev/dl — choose go1.xx.windows-amd64.msi.
Run the installer, then open a new PowerShell window and verify:
go version
You should see something like go version go1.21.0 windows/amd64.
Download from git-scm.com and install with default settings.
git clone https://github.com/thecnical/cybermind.git
cd cybermind\cli
go build -ldflags="-X main.Version=2.2.0" -o cybermind.exe .
This creates cybermind.exe in the current folder.
Open PowerShell as Administrator, then:
Move-Item cybermind.exe C:\Windows\System32\cybermind.exe
Now you can run cybermind from any folder in PowerShell or Command Prompt.
cybermind
Or ask a direct question:
cybermind "how to find subdomains"
cybermind scan 192.168.1.1 full
sudo apt update && sudo apt install golang-go -y
go version
If the version is older than 1.21, install the latest from 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
sudo apt install git -y
git clone https://github.com/thecnical/cybermind.git
cd cybermind/cli
go build -ldflags="-X main.Version=2.2.0" -o cybermind .
sudo mv cybermind /usr/local/bin/cybermind
sudo chmod +x /usr/local/bin/cybermind
cybermind
Or use the one-command installer which handles everything automatically:
git clone https://github.com/thecnical/cybermind.git
cd cybermind
chmod +x install.sh && sudo ./install.sh
git clone https://github.com/thecnical/cybermind.git && cd cybermind && chmod +x install.sh && sudo ./install.sh
Your conversations are completely private. No one can read your chats — not us, not anyone.
Your queries are sent to the AI backend over HTTPS. The backend processes your prompt and sends back a response. No conversation logs are stored on the server. No user accounts. No tracking. No analytics. No IP logging tied to your queries.
Your chat history is saved only on your own machine — at ~/.cybermind/history.json on Linux/macOS and C:\Users\<you>\.cybermind\history.json on Windows. This file never leaves your device. You can wipe it anytime with cybermind clear.
For maximum anonymity, route through Tor or a VPN:
# Linux — through Tor
torsocks cybermind "your question"
# Linux — through 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
Scan types: 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
Recon types: 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"
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
See CONTRIBUTING.md.
If CyberMind helped you, consider buying me a coffee.
MIT — see LICENSE.
CyberMind is for authorized security research, penetration testing with written permission, CTF competitions, and cybersecurity education. Never use against systems you do not own or have explicit written authorization to test.