From charlesreid1

No edit summary
Line 10: Line 10:


<pre>
<pre>
$ sudo apt-get install libssl-dev
$ apt-get update
$ sudo apt-get install libpcap0.8-dev
$ apt-get install build-essential
$ apt-get install python python-dev
$ apt-get install libssl-dev  
$ apt-get install libpcap-dev
</pre>
 
Now we're ready to install Pyrit:
 
<pre>
$ python setup.py build
$ python setup.py build
$ python setup.py install
$ python setup.py install
  </pre>
  </pre>



Revision as of 18:53, 2 August 2015

The code for Pyrit is here: https://code.google.com/p/pyrit/downloads/list

Building

Ubuntu on AWS

To build Pyrit on any AWS machine, you'll want to grab the NVidia drivers, since those are the only kinds of GPUs currently offered by AWS.

Installing on Ubuntu will require the OpenSSL and Libpcap development libraries (i.e., headers), which aren't on Ubuntu by default:

$ apt-get update
$ apt-get install build-essential
$ apt-get install python python-dev
$ apt-get install libssl-dev 
$ apt-get install libpcap-dev

Now we're ready to install Pyrit:

$ python setup.py build
$ python setup.py install