Monthly Archives: August 2015

Wake on LAN script in Python

This works. #!/usr/bin/env python # wol.py import socket import struct def wake_on_lan(macaddress): “”” Switches on remote computers using WOL. “”” # Check macaddress format and try to compensate. if len(macaddress) == 12: pass elif len(macaddress) == 12 + 5: sep … Continue reading

Posted in python | Comments Off on Wake on LAN script in Python

OpenVAS vulnerability scanner

I wanted to do a quick scan of a system before I signed a security assessment consent form, so I wanted a free vulnerability scanner IĀ could use. I couldn’t find a truly free online scanner that I could “just use”, … Continue reading

Posted in Linux, Security | Comments Off on OpenVAS vulnerability scanner