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…

Auditing WPS/WEP networks

wifite is a piece of software included on the default Kali installation. It is designed for automated auditing of wireless networks. This quick tutorial will take you through your first wifite attack.List of materials:Kali LinuxSupported wireless network adapterNetwork you have permission to auditOpen up a new terminal window,…

DSTIKE Pocket ESP8266 Deauther

I absolutely love custom hardware projects. I don't remember how I stumbled across spacehuhn's esp8266 deauther project but I knew I had to try it. I ordered some cheap ESP8266 boards from AliExpress and then waited for them to arrive. It was fun flashing the firmware, getting the Arduino libraries…