Pyrit
From charlesreid1
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