Fast-Track 4.0 and Ubuntu 10.04
Fast-Track is automated penetration testing suite developed by David Kennedy. This security suite help the penetration tester to identify and exploit servers using various techniques. Combining the power of Metasploit Framework and the automation of the attacks, all the pen test process will result effective and time saving (where it’s OK to finish under 3 minutes). On the attempt to install Fast-Track 4.0 on ubuntu 10.04 I come across a missing python package issue, the package called pymills-3.4.tar.gz isn’t available from the location configured in the setup file. The workaround is to comment the line 80 an 81 of the setup.py file, and download manually the pymills package. Here you can find the instructions to install successfully Fast-Track 4.0 .
apt-get install subversion
svn co http://svn.thepentest.com/fasttrack/
cd fasttrack/
python setup.py install
Would you like to attempt all dependancies, yes or no: yes
tar: pymills-3.4.tar.gz: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
tar: Child returned status 2
tar: Exiting with failure status due to previous errors
mv: cannot stat `pymills-3.4′: No such file or directory
cd: 1: can’t cd to pymills/
Comment out the lines 80 and 81
# subprocess.Popen(‘wget http://pypi.python.org/packages/source/p/pymills/pymills-3.4.tar.gz;tar
-zxvf pymills-3.4.tar.gz;mv pymills-3.4 pymills;cd pymills/; python setup.py install’, shell=True).wait()
# subprocess.Popen(‘rm -rf pymills; rm -rf pymills-3.4.tar.gz’, shell=True).wait()
Download manually the missing package
wget http://pypi.inqbus.de/pymills/pymills-3.4.tar.gz
Uncompress and install pymills
tar xvfz pymills-3.4.tar.gz
mv pymills-3.4 pymills
cd pymills
python setup.py install
Processing dependencies for pymills==3.4
Finished processing dependencies for pymills==3.4
Now you can rerun the Fast Track installation
python setup.py install
Would you like to attempt all dependencies, yes or no: yes
***********************************************
******* Performing dependency checks… *******
***********************************************
*** FreeTDS and PYMMSQL are installed. (Check) ***
*** PExpect is installed. (Check) ***
*** ClientForm is installed. (Check) ***
*** Beautiful Soup is installed. (Check) ***
*** PyMills is installed. (Check) ***
Run Fast Track with: python fast-track.py -i
and Lets pop a box . Video Fast-Track ShmooCon 2009
Scridb filter



No Comments on "Fast-Track 4.0 and Ubuntu 10.04"