wi-fi-analyzer / hcxtools

Small set of tools to capture and convert packets from wlan devices for the use with latest hashcat. The tools are 100% compatible to hashcat and recommended by hashcat.
MIT License
30 stars 14 forks source link

i have problem with ( make ) #1

Open BasimAlmatboli opened 5 years ago

BasimAlmatboli commented 5 years ago

when i try to write ( make ) or ( make install ) show me this :

gcc -O3 -Wall -Wextra -DDOACTIVE -o wlandump wlandump.c -lpcap wlandump.c:21:10: fatal error: pcap.h: No such file or directory

include

      ^~~~~~~~

compilation terminated. make: *** [Makefile:24: build] Error 1

Anonymous-8801 commented 5 years ago

I'm assuming you're using Kali Linux First you might want to update and upgrade.

apt-get update && upgrade

To install the required packages -

apt-get install libpcap-dev apt-get install openssl

apt-get install curl apt-get install libcurl3

Then try the make command in hcxtools Hope this helps.

tomdolinski commented 5 years ago

gcc -O3 -Wall -Wextra -o whoismac whoismac.c -lcurl whoismac.c:17:23: fatal error: curl/curl.h: No such file or directory compilation terminated. Makefile:24: recipe for target 'build' failed make: *** [build] Error 1 root@chrx:/home/owner/Downloads/hcxtools-master#

++++++++++++++++++++ I also have issue with make. All recommendations installed. OS = Gallium OS (Debian derivative)

bsmithday commented 5 years ago

For the curl/curl.h issue Use: apt-get install libcurl4-openssl-dev libssl-dev zlib1g-dev

instead of: apt-get install libcurl3

DrShams commented 4 years ago

I'm assuming you're using Kali Linux First you might want to update and upgrade.

apt-get update && upgrade

To install the required packages -

apt-get install libpcap-dev apt-get install openssl

apt-get install curl apt-get install libcurl3

Then try the make command in hcxtools Hope this helps.

the same problem I've done that you say but have this "pwhash.c:17:10: fatal error: openssl/sha.h: No such file or directory 17 | #include <openssl/sha.h>" How to fix it?

viswatej44 commented 4 years ago

when i try to write ( make ) or ( make install ) show me this :

whoismac.c:17:10: fatal error: curl/curl.h: No such file or directory 17 | #include <curl/curl.h> | ^~~~~

how to fix it?? help me pls

ghost commented 4 years ago

You can solve these problems by 'apt-get install libpcap-dev libcurl4-openssl-dev libssl-dev'