No Picture

Rate limit the SSH Bruteforce

September 26, 2014 Rob 0

The following iptables will help limit the bruteforce attacks on your ssh port. With the recent exploit found in BASH, there’s been renewed interest in […]

No Picture

BadUSB: Next Gen Virus Using Old Tactics

August 7, 2014 Rob 0

There’s been proof of concept work on firmware virus. This is something similar to boot sector virus’ and bios virus’ many years back pre-internet. http://arstechnica.com/security/2014/07/this-thumbdrive-hacks-computers-badusb-exploit-makes-devices-turn-evil/ […]

No Picture

Postfix emails to file.

June 13, 2014 Rob 0

I’ve been working on archiving emails. In my pursuit to find the easiest possible solution I came across smtp-sink. As posted on: http://blog.malowa.de/2011/04/postfix-as-spam-trap-server.html Also another […]

No Picture

backbone.js tutorial

March 18, 2014 Rob 0

Here is a good example introducing you to backbone.js. http://arturadib.com/hello-backbonejs/

No Picture

redirecting traffic through iptables

February 14, 2014 Rob 0

sudo sysctl net.ipv4.ip_forward=1 sudo iptables -t nat -A PREROUTING -p tcp –dport 80 -j DNAT –to-destination 10.10.10.10:80 sudo iptables -t nat -A POSTROUTING -j MASQUERADE