Can someone tell me how to install reaver-wps?

Here is the webpage

Can someone help me install it so I can play around with it?

1

5 Answers

You need to install libpcap*-dev first:

  • sudo apt-get install libpcap*-dev

Extract the tar file, then from the terminal:

cd /path/to/src
./configure --prefix=/usr
make
sudo make install
2

Even if you receive this error during "./configure":

error: pcap library not found!

installing libsqlite3-dev helps to solve it.

1

If you receive the "error: sqlite3 library not found!" then run the following prior to configure:

sudo apt-get install libsqlite3-dev

if permission is denied when using ./configure try sudo sh ./configure

1

Before running ./configure, I needed to install a few libraries in Ubuntu 12.04. Try:

sudo apt-get install sqlite3 libsqlite3 libsqlite3-dev libpcap-dev

You Might Also Like