Author Archives: admin

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

Respsonsive tables

Sometimes you need to display a big table but you want it to be usable on a mobile phone.  Responsive Tables to the rescue. http://elvery.net/demo/responsive-tables/ The best one, in my opinion, is the “No More Tables” demo at the bottom … Continue reading

Posted in CSS | Comments Off on Respsonsive tables

Quickest way to get Tomcat 7 running on ubuntu 14.04

I found this excellent blog post and thought it was worth remembering, so here it is. https://www.digitalocean.com/community/tutorials/how-to-install-apache-tomcat-7-on-ubuntu-14-04-via-apt-get

Posted in Linux, Tomcat, Ubuntu | Comments Off on Quickest way to get Tomcat 7 running on ubuntu 14.04

SSL Certificate Checkers

These two are the best i have found. Qualys SSL Server Test Symantec SSL Ceritficate Checker Both are free and provide thorough analysis of your certificate to make sure it passes PCI server scans and such.

Posted in SSL | Comments Off on SSL Certificate Checkers