hcxdumptool capturando todos os pacotes #107
ismaelsantoss
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
hcxdumptool capturing all packets, but with a problem.
I apologize for my English as I am using Google translator.
This is my adapter:
Every procedure I did:
1- I installed the drivers provided here:
sudo apt update && sudo apt upgrade
sudo reboot
apt install -y linux-headers-$(uname -r) build-essential bc dkms git libelf-dev rfkill iw
mkdir -p ~/src
cd ~/src
git clone https://github.com/morrownr/8814au.git
cd ~/src/8814au
sudo ./install-driver.sh
sudo reboot
2- I installed hcxdumptool:
git clone https://github.com/ZerBea/hcxdumptool.git
cd hcxdumptool
make
make install
make install PREFIX=/usr/local
hcxdumptool --version
Used version 6.3.0-27-g11375be
3- I stopped only the services and disabled the monitor-mode:
systemctl stop wpa_supplicant.service
systemctl stop NetworkManager.service
airmon-ng stop wlan1
4- With monitor-mode off, start the hcxdumptool scan:
hcxdumptool -i wlan1 -w captura.pcapng --beacontx=15 --rds=1
5- converting .pcapng to .hc22000
hcxpcapngtool -o teste1.hc22000 '/home/kali/captura.pcapng'
I have the necessary information to crack the password
6- Observations and Problem:
If you try to run step "4-" again you will notice that it will no longer be able to capture the necessary packets.
But if you stop the wlan monitor-mode again and do step "4-" again, all packets will be captured again.
Run the command below to switch to monitor-mode:
airmon-ng stop wlan1
Now execute step "4-" and you will be capturing all packets normally
Beta Was this translation helpful? Give feedback.
All reactions