-
-
Save cryptosecdev/9bbbb4112cda08b8c32bc7276d32365d to your computer and use it in GitHub Desktop.
Kali Linux Searchsploit updater
This file contains hidden or 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
| 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