Patch script update

Updated my patch script to cater for kernel patches.

#!/bin/bash
sudo apt-get autoclean && sudo apt-get update --fix-missing
sudo apt-get upgrade
sudo apt-get autoremove
sudo apt-get dselect-upgrade
sudo apt-get autoremove

dnsaudit.py

 Since I was on a roll with Copilot, I decided to automate DNSSEC auditing with the following Python script. import subprocess import sys im...