Enable SSH on Kali

The official Kali Linux VM comes with ssh disabled. I like to have ssh available so I can run commands from Terminal on my host to the VM. I only enable ssh in testing environments. Follow the steps to enable ssh.  apt-get install ssh systemctl enable ssh service ssh start…

How to upgrade Kali packages

A quick way to make sure your packages are up to date is to run this command:apt-get update && apt-get upgradeIt runs apt-get update first, which checks for updated version. Then it runs apt-get upgrade which handles the installation. Depending on your system, this could take a minute…