Question

I was trying to build this project on my eclipse. It's using libnet library so i install the libnet-dev on my ubuntu.

However, i still got no such file or directory error in arp.h (JNI) on this line:

  #include <libnet.h>

I have also tried to compile the libnet by myself using this source and put all of the directory its generated on the libnet folder in the project.

Please help me out, Thanks for your help.

Was it helpful?

Solution

From the source repository, it seems that the arpspoof Makefile does not look for libnet from the system. Instead, the dSploit repository includes libnet as a Git submodule. Did you clone recursively? (git clone --recursive ...).

If you did not, change to the dSploit directory and run:

git submodule update

To fetch all the submodules.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top