Solved! Missing the hcxdumptool & hcxpcaptool in Kali

Опубликовано: 20 Апрель 2026
на канале: CyberOffense
3,479
34

This video is to accompany the PMKID Clientless Wireless Audit Using Bettercap video and lab.
Since this lab was first published, the latest version of Kali no longer has the hcxdumptool & hcxpcaptool. There may also be issues with missing dependencies. Use the following commands to fix both issues.

apt-get update
apt-get install libcurl4-openssl-dev libssl-dev zlib1g-dev libpcap-dev

and after.......
Clone hcxtools from github and compile the binaries:
git clone https://github.com/ZerBea/hcxtools.git
cd hcxtools
sudo make && sudo make install

Clone hcxdumptool and compile the binaries:

git clone https://github.com/ZerBea/hcxdumptool...
cd hcxdumptool/
sudo make && sudo make install