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
UPDATE version: 1.1
Changes:
Update it using the update function from the script or:Code:* Added OpenVAS update. * Added SickFuzz update. * Added SSLStrip update. * Removed Nessus update (replaced by OpenVAS). * Addapted the script for BackTrack 5 R1.
Code:wget http://sickness.tor.hu/wp-content/uploads/2011/06/backtrack5_update.py
Back|track giving machine guns to monkeys since 2007 !
Do not read the Wiki, most your questions will not be answered there !
Do not take a look at the: Forum Rules !
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
Works greats great so far. Huge time saver, thanks!![]()
Thanks for this script. Makes it so easy to ensure everything is updated before going to client sites.
really good work
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
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)
@lajjr thanks for notifying meI will update the script and fix the issues.
Edit:
Update version 1.2 is out!
Changes:
Update it using the update function from the script or:Code:* Fixed Aircrack-ng. * Fixed Pyrit.
Code:wget http://sickness.tor.hu/wp-content/uploads/2011/06/backtrack5_update.py
Last edited by sickness; 08-25-2011 at 08:43 AM.
Back|track giving machine guns to monkeys since 2007 !
Do not read the Wiki, most your questions will not be answered there !
Do not take a look at the: Forum Rules !
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
Get the new version of the scriptas for the nmap change that will have to wait a bit.
Back|track giving machine guns to monkeys since 2007 !
Do not read the Wiki, most your questions will not be answered there !
Do not take a look at the: Forum Rules !