Skip to content

Instantly share code, notes, and snippets.

@fixploit03
Last active June 22, 2026 17:23
Show Gist options
  • Select an option

  • Save fixploit03/2b9d21a82ed7259abfc5da1f21f2fa83 to your computer and use it in GitHub Desktop.

Select an option

Save fixploit03/2b9d21a82ed7259abfc5da1f21f2fa83 to your computer and use it in GitHub Desktop.
Instal Driver TP-LINK TL-WN722N V2/V3 di Kali Linux

Instal Driver TP-LINK TL-WN722N V2/V3 di Kali Linux

Informasi Hardware

  • Chipset: Realtek RTL8188EUS
  • Vendor ID (VID): 2357
  • Product ID (PID): 010C
  • Interface: USB 2.0
  • Standar Wi-Fi: 802.11 b/g/n (2.4 GHz)
  • Antena: 4dBi
  • Kecepatan Maksimal: 150 Mbps

Instalasi

# update repositori kali linux
sudo apt update

# instal dependensi yang dibutuhkan
sudo apt install -y build-essential bc libelf-dev git dkms linux-headers-$(uname -r) realtek-rtl8188eus-dkms

# blacklist modul yang bapuk
echo 'blacklist rtl8xxxu' | sudo tee -a /etc/modprobe.d/realtek.conf

# unload modul yang bapuk
sudo rmmod rtl8xxxu

# load modul baru yang sudah diinstal
sudo modprobe 8188eu

Verifikasi

lsmod | grep "8188eu"

Testing

Aktifkan mode monitor:

sudo airmon-ng check kill
sudo airmon-ng start <interface>

Tes kemampuan packet injection:

sudo aireplay-ng --test <interface>

Scan Wi-Fi:

sudo airodump-ng <interface>

Screenshot

Masalah

Kalau ada masalah atau kendala saat proses instalasi, bisa ditanyakan di sini.

Credits

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment