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
#!/bin/bash | |
# author: jmmmbnnn | |
# https://www.kali.org/news/kali-linux-2018-1-release/ | |
# Note that if you haven’t updated your Kali installation in some time (tsk2), you will like receive a GPG error about the repository key being expired (ED444FF07D8D0BF6). Fortunately, this issue is quickly resolved by running the following as root: | |
wget -q -O - https://archive.kali.org/archive-key.asc | apt-key add | |
# Update and upgrade | |
apt update -y | |
apt upgrade |