🔐 Level 5 – Dictionary Attack on WiFi (Bangla + English Guide)
📌 কী শিখবেন এই লেভেলে?
এই লেভেলে আপনি শিখবেন কীভাবে dictionary attack চালিয়ে WiFi পাসওয়ার্ড বের করা যায়। আমরা একটি বড় password list (wordlist) ব্যবহার করে captured handshake ফাইল থেকে পাসওয়ার্ড বের করবো। এটি একটি ক্লাসিক brute-force method, যা ethical hacking শেখার বেসিক ধাপগুলোর একটি।
📌 In English:
In this level, you’ll learn how to use a dictionary attack to crack WiFi passwords using a captured handshake file and a password list. This is a classic brute-force method used in ethical hacking.
🧰 Tools You'll Need:
- Kali Linux (or Parrot OS)
- External WiFi Adapter (Monitor mode supported)
- Captured handshake file (.cap or .hccapx)
- Wordlist (rockyou.txt or custom)
- aircrack-ng tool
📥 Step-by-Step Attack Process:
🔹 Step 1: Handshake Capture
প্রথমে আপনি airodump-ng ব্যবহার করে handshake ফাইল ক্যাপচার করবেন (Level 4 এ শেখানো হয়েছে)।
🔹 Step 2: Run Dictionary Attack with aircrack-ng
🧠 নিচের কমান্ডটি ব্যবহার করুন:
aircrack-ng -w /path/to/wordlist.txt -b <TARGET_BSSID> /path/to/handshake.cap
📌 Example:
aircrack-ng -w /usr/share/wordlists/rockyou.txt -b 50:D4:F7:AD:5F:55 ~/handshakes/mywifi.cap
📖 কমান্ড ব্যাখ্যা (Bangla)
- -w: আপনার wordlist ফাইলের path
- -b: WiFi রাউটার এর BSSID (MAC Address)
- .cap: যেই ফাইলে WiFi handshake সেভ করা আছে
📖 Command Breakdown (English)
- -w: Path to your wordlist file
- -b: Target router's BSSID
- .cap file: Captured handshake file
💡 Extra Tips:
- Target অনুযায়ী custom wordlist তৈরি করলে success chance বাড়ে
rockyou.txtDefault wordlist:/usr/share/wordlists/- Strong password থাকলে dictionary attack কাজ নাও করতে পারে
🧪 Practice Task:
- Level 4 অনুসরণ করে একটি handshake ফাইল (.cap) তৈরি করুন
- rockyou.txt অথবা নিজের বানানো wordlist ব্যবহার করে dictionary attack চালান
aircrack-ng -w yourlist.txt -b XX:XX:XX:XX:XX:XX handshake.cap
❓ সাধারণ প্রশ্নোত্তর:
Q: Dictionary Attack কাজ করছে না, কেন?
A: আপনার wordlist এ সঠিক password নাও থাকতে পারে। অন্য list দিয়ে চেষ্টা করুন।
Q: rockyou.txt কোথায় পাব?
A: Kali Linux এ এটি আগে থেকেই থাকে: /usr/share/wordlists/rockyou.txt.gz
gzip -d /usr/share/wordlists/rockyou.txt.gz
🔚 Conclusion:
এই লেভেল-এ আপনি শিখলেন কিভাবে WiFi handshake ফাইল এবং wordlist ব্যবহার করে ethicalভাবে Dictionary Attack করা যায়। এটি WiFi Hacking এর একটি বেসিক কিন্তু গুরুত্বপূর্ণ অংশ।
In this level, you’ve learned how to use aircrack-ng with a dictionary file to perform a brute-force attack on captured handshake files. Use this knowledge responsibly!
🏷️ Tags:
wifi-hacking, wifi-level-5, dictionary-attack, aircrack-ng, kali-linux, bangla-guide, ethical-hacking
0 Comments
“Please share your thoughts or questions below. Only Google account users can comment.”