Domanda

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.

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top