Widespread Augmented Reality

Widespread Augmented Reality
Click on the image to get the Android Augmented Reality Heads up Display

Sunday, December 30, 2018

Kali Linux WiFite missing hcxpcaptool and hcxdumptool

Resolve Warning: Recommended app hcxpcaptool hcxdumptool was not found.

Go to the hcxdumptool git hub site
Find the clone of download drop down button.
Right click on download zip and copy the link address.
Open and Kali Linux terminal and type: wget [the link address], e.g. wget https://github.com/ZerBea/hcxdumptool/archive/master.zip
Wait for download then type unzip master.zip
CD (change directory) to hcxdumptool-master
Type make
Type sudo make install

Follow these same steps for the hcxpcaptool.
For example: wget https://github.com/ZerBea/hcxtools/archive/master.zip
You may find it first necessary to run the following:
sudo apt-get update
sudo apt-get install libssl-dev
sudo apt-get install openssl
sudo apt-get install zlib1g-dev
sudo apt-get install libpcap-dev
sudo apt-get install curl
sudo apt-get install libcurl4 ( or greater )
wget https://curl.haxx.se/download/curl-7.63.0.tar.gz
 :~/tar -xvzf curl-7.48.0.tar.gz
 :~/rm *.gz
 :~/cd curl-7.48.0
 :~/./configure
 :~/sudo make
 :~/sudo make install

11 comments:

  1. ok i finish that but how i use that with wifite

    ReplyDelete
  2. many many thanx!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    ReplyDelete
  3. You downloaded curl-7.63.0.tar.gz not
    curl-7.48.0.tar.gz

    ReplyDelete
  4. Sorry, but I just include the bare minimum for a particlar task. One must rely on "DuckDuckGoing" to search for the plethora of more involved tutorials on WiFite and aircrack.

    ReplyDelete
  5. hxcpcaptool is not in master.zip. Help

    ReplyDelete
  6. after downloading open the terminal and type,
    cd hcxtools
    apt install hcxtools

    IT WILL DOWNLOAD hcxpcaptool

    ReplyDelete
  7. I downloaded it, build it with make and installed with make install ... wifite still says it cannot find it. what the hell? I manually tried posting the executables in /usr/sbin and /usr/local/sbin and /usr/local/bin ... where the hell is wifite looking for these executables?!?!?

    ReplyDelete
  8. https://s33me.blogspot.com/2018/12/kali-linux-wifite-missing-hcxpcaptool.html


    We get this error when executing # wifite -kill
    # [!] Warning: Recommended app hcxpcaptool was not found. install @ https://github.com/ZerBea/hcxtools

    Reasons cause the developer have rename the file from "hcxpcaptool" to "hcxpcapngtool"
    therefore a quick dirty fix it to do a symlink...
    # ln -s /usr/local/bin/hcxpcapngtool /usr/local/bin/hcxpcaptool


    Now it works! I guess need to notify the developter of "wifite" of the update changes...
    https://github.com/derv82/wifite2

    Have fun regards Rodney @ http://rodyeo.dyndns.org/

    ReplyDelete
  9. Oops... type correction... # wifite --kill

    ;) Rodney @ http://rodyeo.dyndns.org/

    ReplyDelete