Skip to content

Instantly share code, notes, and snippets.

@cryptosecdev
Forked from dvas0004/searchsploit-update.sh
Created September 22, 2018 04:23
Show Gist options
  • Save cryptosecdev/9bbbb4112cda08b8c32bc7276d32365d to your computer and use it in GitHub Desktop.
Save cryptosecdev/9bbbb4112cda08b8c32bc7276d32365d to your computer and use it in GitHub Desktop.
Kali Linux Searchsploit updater
echo "Updating SearchSploit... (Kali Linux)"
# move into the exploit db directory within Kali
cd /usr/share/exploitdb
echo "Downloading latest archive..."
wget http://www.exploit-db.com/archive.tar.bz2
echo "Downloaded archive, proceeding to extract..."
tar -xjvf archive.tar.bz2
echo "Removing archive..."
rm -rf archive.tar.bz2
echo "All done!!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment