Requirements • Install • Usage • Compiling
make sure that you have installed lpcap. or use the following code to do the same.
sudo apt-get install libpcap-dev
if you are on a mac and have home brew
brew install libpcap
git clone https://github.com/vigneshsb403/ARP-Tools.git
compile the lookup.c file with the following command.
gcc lookup.c -lpcap -o lookup
to comile the arpspoofdetector.c file use the following command
gcc arpspoofdetector.c -lpcap -o arpspoofdetector
to comile the sniffer.c file use the following command
gcc sniffer.c -lpcap -o sniffer
Note
Run the programs with sudo privilages.
./lookup
sudo ./arpspoofdetector <interface>
sudo ./sniffer <interface> //make sure you change the port in the code
Made with ❤️🔥 by vigneshsb.