Created
August 19, 2013 21:06
-
-
Save jeffgeiger/6274212 to your computer and use it in GitHub Desktop.
Simple script to update nmap VSE vulnerability scanner in Homebrew.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Updating vulscan database..." | |
cd /usr/local/Cellar/nmap/6.40/share/nmap/scripts/vulscan/ | |
rm *.csv | |
wget http://www.computec.ch/projekte/vulscan/download/cve.csv | |
wget http://www.computec.ch/projekte/vulscan/download/exploitdb.csv | |
wget http://www.computec.ch/projekte/vulscan/download/openvas.csv | |
wget http://www.computec.ch/projekte/vulscan/download/osvdb.csv | |
wget http://www.computec.ch/projekte/vulscan/download/scipvuldb.csv | |
wget http://www.computec.ch/projekte/vulscan/download/securityfocus.csv | |
wget http://www.computec.ch/projekte/vulscan/download/securitytracker.csv | |
wget http://www.computec.ch/projekte/vulscan/download/xforce.csv | |
cd - | |
echo "Complete." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment