Skip to content

Instantly share code, notes, and snippets.

View TheMadTomato's full-sized avatar
🏠
At Uni

Paul TheMadTomato

🏠
At Uni
View GitHub Profile
@warecrash
warecrash / makekali.sh
Last active May 15, 2024 06:29
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