Skip to content

Instantly share code, notes, and snippets.

@sergeygalkin
Last active June 15, 2023 11:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sergeygalkin/a306fba855fcdcac62de57f878c30e23 to your computer and use it in GitHub Desktop.
Save sergeygalkin/a306fba855fcdcac62de57f878c30e23 to your computer and use it in GitHub Desktop.
Gentoo wifi with aircrack-ng and TP-Link Archer T2U Plus with Nvidia

System

Gentoo with 6.3.7 kernel with TP-Link Archer T2U Plus (USB) with Nvidia GeForce RTX 3070

Prepare

# Drivers
git clone https://github.com/aircrack-ng/rtl8812au.git
cd rtl8812au
make && sudo make install
modprobe 88XXau
# Tools
emerge net-wireless/aircrack-ng app-crypt/hashcat app-crypt/hashcat-utils net-analyzer/hydra
git clone https://github.com:ZerBea/hcxtools.git
cd hcxtools
make && sudo make install
git clone https://gitlab.com/kalilinux/packages/wordlists.git
gunzip -c wordlists/rockyou.txt | sort | uniq | pw-inspector -m 8 -M 63 | gzip > wifi.txt.gz

Process

airmon-ng start wlp2s0f0u8
airodump-ng wlp2s0f0u8
# Find clients
sudo airodump-ng -c [channel number] --bssid [AP BSSID] -w psk wlp2s0f0u8

https://www.aircrack-ng.org/doku.php?id=cracking_wpa

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