Avatar Image
Gajendra Mahato

Jamming Wi-Fi with `mdk4`

With the mdk4 tool, you can jam Wi-Fi networks in various ways. This guide will walk you through the installation, setup, and usage of mdk4, including examples for different attacks. 1. Installation If mdk4 is not installed on your system, install it using the following command: sudo apt-get install mdk4 -y Switching to Root User If you are not the root user, switch to root: sudo su Example: kali@gajendra:~$ sudo su 2. Checking Network Interface Status Check your network interface status to see if it’s in monitor mode: ...

January 13, 2026 Β· 4 min

Table of Contents

Airmon-ng To start monitoring mode on wlan0: sudo airmon-ng start wlan0 iwconfig To enable monitor mode using iwconfig: sudo ifconfig [INTERFACE] down sudo iwconfig [INTERFACE] mode monitor sudo ifconfig [INTERFACE] up iw To enable monitor mode using iw: sudo ip link set [INTERFACE] down sudo iw [INTERFACE] set monitor control sudo ip link set [INTERFACE] up Adding a New Monitor Interface To add a new monitor interface: sudo iw [INTERFACE] interface add [NEW_INTERFACE] type monitor Aircrack-ng Installation To install aircrack-ng: sudo apt-get update sudo apt-get install aircrack-ng Airmon-ng Commands To use airmon-ng commands: ...

January 13, 2026 Β· 1 min

Wi-Fi Handshake Capture Guide using aircrack-ng Tools

πŸ” 1. Scan Available WiFi Networks 🌐 Scan all nearby WiFi networks sudo airodump-ng mon0 πŸ“Ά Scan only 2.4 GHz networks (802.11b/g) sudo airodump-ng --band bg mon0 πŸ“‘ Scan only 5 GHz networks (802.11a) sudo airodump-ng --band a mon0 πŸ“‹ Band Option Summary --band a β†’ 5 GHz (802.11a) --band b β†’ 2.4 GHz (802.11b) --band g β†’ 2.4 GHz (802.11g) --band bg β†’ All 2.4 GHz (recommended) --band abg β†’ Both 2.4 GHz and 5 GHz 🎯 2. Capture WPA/WPA2 Handshake 🎯 Start listening on target AP # Replace <channel>, <BSSID>, and <output_filename> sudo airodump-ng -c <channel> --bssid <BSSID> -w <output_filename> mon0 Example ...

January 13, 2026 Β· 2 min