Skip to content

Latest commit

Β 

History

1 Commit

Folders and files

NameName
Last commit message
Last commit date
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ“‘ Codnoz WiFi β€” Wireless Audit Tool

  β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ•—   β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—
 β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ•—  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•—β•šβ•β•β–ˆβ–ˆβ–ˆβ•”β•
 β–ˆβ–ˆβ•‘     β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ–ˆβ•”β•
 β–ˆβ–ˆβ•‘     β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘β•šβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ–ˆβ•”β•
 β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•‘ β•šβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—
  β•šβ•β•β•β•β•β• β•šβ•β•β•β•β•β• β•šβ•β•β•β•β•β• β•šβ•β•  β•šβ•β•β•β• β•šβ•β•β•β•β•β• β•šβ•β•β•β•β•β•β•
       C O D N O Z   W i F i   v1.0

By @ethicalcodnoz


⚠️ DISCLAIMER

This tool is for EDUCATIONAL and AUTHORIZED security testing purposes ONLY.

  • Only use on networks you own or have explicit written permission to test.
  • Unauthorized access to computer networks is illegal and punishable by law.
  • The author (@ethicalcodnoz) is NOT responsible for any misuse or damage caused.
  • By using this tool, you agree to comply with all applicable laws.

✨ Features

Feature Description
πŸ“‘ Network Scanner Scans ALL WiFi networks in your local radius β€” SSID, BSSID, channel, signal strength, security type
πŸ”“ Saved Password Dump Extracts passwords for every WiFi profile saved on your Windows machine
πŸ’£ Brute Force Attack Attempts WPA/WPA2 password cracking by injecting temporary profiles and testing real connections
🎨 Rich Terminal UI Color-coded tables, progress bars, signal strength visualizer β€” looks fire on screen
πŸ“‹ Built-in Wordlist 160 most common WiFi passwords included, or load your own (rockyou.txt, etc.)

⚑ How It Works

Scan (Phase 1)

Uses netsh wlan show networks mode=bssid to detect every wireless network in range β€” not just ones you've connected to before.

Brute Force (Phase 2)

For each candidate password from the wordlist:

  1. Generates a WPA2 profile XML with the candidate key
  2. Injects it via netsh wlan add profile
  3. Attempts netsh wlan connect
  4. Checks if the connection succeeded
  5. If yes β†’ password cracked. If no β†’ next password.

⏱️ Note: Each attempt takes ~3 seconds (real connection handshake). This method is slow compared to offline cracking tools like hashcat or aircrack-ng, but requires no special hardware β€” works with any standard WiFi adapter on Windows.

Dump (Phase 3)

Reads all saved WiFi profiles from the Windows credential store and displays their passwords in cleartext.


πŸ“¦ Installation

git clone https://github.com/ethicalcodnoz/codnoz-wifi.git
cd codnoz-wifi
pip install -r requirements.txt

πŸš€ Usage

⚠️ Must run as Administrator β€” WiFi adapter access requires elevated privileges.

# Right-click terminal β†’ Run as Administrator
python wifi_crack.py

Menu Options

Option Action
1 Scan all nearby networks
2 Scan + pick target + brute force attack
3 Dump all saved WiFi passwords
0 Exit

πŸ—‚οΈ Project Structure

codnoz-wifi/
β”œβ”€β”€ wifi_crack.py      # Main tool
β”œβ”€β”€ requirements.txt   # Dependencies (rich)
β”œβ”€β”€ LICENSE            # MIT License
└── README.md          # This file

🧰 Requirements

  • OS: Windows 10 / 11
  • Python: 3.10+
  • Privileges: Administrator
  • Dependencies: rich

πŸ“„ License

MIT License β€” free to use, modify, and distribute with attribution.


πŸ‘€ Author

@ethicalcodnoz

πŸ“Œ Follow for more cybersecurity tools, reels, and open-source projects.


Made with πŸ”₯ for the cybersecurity community. Use responsibly.

About

πŸ“‘ WiFi audit tool β€” scan nearby networks, extract saved passwords, WPA2 brute force. Python CLI for Windows. Open source. By @ethicalcodnoz

Topics

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages