Skip to content

Instantly share code, notes, and snippets.

@CykuTW
Forked from warecrash/makekali.sh
Created June 12, 2020 12:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CykuTW/9ae1e9b3642f91cb97b8b68387afa874 to your computer and use it in GitHub Desktop.
Save CykuTW/9ae1e9b3642f91cb97b8b68387afa874 to your computer and use it in GitHub Desktop.
Convert Debian to Kali
apt update
apt -y install wget gnupg dirmngr
wget -q -O - https://archive.kali.org/archive-key.asc | gpg --import
gpg --keyserver hkp://keys.gnupg.net --recv-key 44C6513A8E4FB3D30875F758ED444FF07D8D0BF6
echo "deb http://http.kali.org/kali kali-rolling main non-free contrib" >> /etc/apt/sources.list
gpg -a --export ED444FF07D8D0BF6 | sudo apt-key add -
apt update
apt -y upgrade
apt -y dist-upgrade
apt -y autoremove --purge
apt -y install kali-linux-everything
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment