Re: [>] Update Script for Backtrack 5.
UPDATE version: 1.1
Changes:
Code:
* Added OpenVAS update.
* Added SickFuzz update.
* Added SSLStrip update.
* Removed Nessus update (replaced by OpenVAS).
* Addapted the script for BackTrack 5 R1.
Update it using the update function from the script or:
Code:
wget http://sickness.tor.hu/wp-content/uploads/2011/06/backtrack5_update.py
AW: Re: [>] Update Script for Backtrack 5.
Thanks for the script !
I noticed, that ettercap gets removed. To block it from this I did the following:
- apt-get install wajig
- wajig hold ettercap-common
- wajig hold ettercap-gtk
hope this is usefull
Re: [>] Update Script for Backtrack 5.
Works greats great so far. Huge time saver, thanks! ;)
Re: [>] Update Script for Backtrack 5.
Thanks for this script. Makes it so easy to ensure everything is updated before going to client sites.
AW: [>] Update Script for Backtrack 5.
Re: [>] Update Script for Backtrack 5.
Sickness,
After I run the script it works great it updates aircrack-ng yes, but does not compile it also when I do compile I didn't have libssl-dev ?? I see in the script you get the wireshark dependencies and compile.
def aircrack():
print " [>] Updating Aircrack-NG and Airodump, please wait.\n"
if subprocess.Popen("cd /pentest/wireless/aircrack-ng/ && svn up",shell=True).wait() == 0:
subprocess.Popen("cd /pentest/wireless/aircrack-ng/scripts/ && chmod a+x airodump-ng-oui-update && ./airodump-ng-oui-update",shell=True).wait()
subprocess.Popen("apt-get update && apt-get install libssl-dev -y",shell=True).wait()
if subprocess.Popen("cd /pentest/wireless/aircrack-ng/aircrack-ng && make",shell=True).wait() == 0:
subprocess.Popen("cd /pentest/wireless/aircrack-ng/aircrack-ng && make install",shell=True).wait()
print "\n"
print " [>] Aircrack-NG and Airodump updated successfully!\n"
else:
print "\n"
print " [>] Failed to update aircrank-ng!\n"
Latest SVN (development) Sources
svn co http://trac.aircrack-ng.org/svn/trunk aircrack-ng
cd aircrack-ng
and as usual
make
make install
or if you want sqlite and the experimental (unstable) programs
make sqlite=true unstable=true
make sqlite=true unstable=true install
other options
Regards,
Lajjr
Re: [>] Update Script for Backtrack 5.
Sickness,
Sorry about this also found an error in script at least it gives me an error on pyrit.
errors on here. line 161 subprocess.Popen("cd pyrit_svn/pyrit && python s_e_tup.py build && python s_e_tup.py install",shell=True).wait()
the setup is not s_e_tup but,
should be subprocess.Popen("cd pyrit_svn/pyrit && python setup.py build && python setup.py install",shell=True).wait()
Regards,
Lajjr
(Leo)
Re: [>] Update Script for Backtrack 5.
@lajjr thanks for notifying me :) I will update the script and fix the issues.
Edit:
Update version 1.2 is out!
Changes:
Code:
* Fixed Aircrack-ng.
* Fixed Pyrit.
Update it using the update function from the script or:
Code:
wget http://sickness.tor.hu/wp-content/uploads/2011/06/backtrack5_update.py
Re: [>] Update Script for Backtrack 5.
Sickness,
Great news thanks! I was looking over it again, and I see small error. I might be wrong here my bad I have to download the script again, but the one I wget has
subprocess.Popen("cd pyrit_svn/pyrit && python s_e_tup.py build && python setup.py install",shell=True).wait()
Very minor sorry can you please check maybe should be this.
subprocess.Popen("cd pyrit_svn/pyrit && python setup.py build && python setup.py install",shell=True).wait()
Also on namp after the update db.
print " [>] Updating Nmap Fingerprints, please wait.\n"
if subprocess.Popen("wget http://nmap.org/svn/nmap-os-db -O /usr/local/share/nmap/nmap-os-db",shell=True).wait() == 0:
--added-> subprocess.Popen("cd /usr/local/share/nmap --script-updatedb",shell=true).wait()
I would like to help on this, but I know the answer NO! right?
Regards,
Leo
Re: [>] Update Script for Backtrack 5.
Get the new version of the script :) as for the nmap change that will have to wait a bit.