Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #!/bin/bash
  2. # Kali Linux 1.0.5 update script
  3. # by Samiux
  4. # blog : http://samiux.blogspot.com
  5. # WARNING : it will take more than an hour to update due to the slow Kali server
  6.  
  7. # update Kali Linux
  8. apt-get update
  9. apt-get dist-upgrade
  10. apt-get --purge autoclean
  11. apt-get --purge autoremove
  12.  
  13. # update Exploit Database
  14. cd ~
  15. git clone https://github.com/offensive-security/exploit-database
  16. cd exploit-database
  17. cp files.csv /usr/share/exploitdb/
  18. cp -Ra platforms/ /usr/share/exploitdb/
  19. cd ~
  20. rm -R exploit-database