Recent Posts

March 2010
M T W T F S S
« Feb    
1234567
891011121314
15161718192021
22232425262728
293031  

Mobile Barcode Tool

This is a 2D-barcode containing the address of our mobile site.If your mobile has a barcode reader, simply snap this bar code with the camera and launch the site.

Google & The China-Hack!

Hmm, imagine this – The C-HACK! of 2009
Update (2/7/2010) – it will be interesting to see ‘the facts’ for this event – A post by Bruce Schneier (1/23/2010) on the CNN web provides some additional thoughts, i.e. Are we doing this to ourselves? (Do our national policies increase the chances that these types of events [...]

Linux firewall – iptables 101b

Part 101b:  Some example rules for your Linux Firewall

Creating a custom chain
Creating a LOG rule
Creating a  DROP rule

Some basic/simple rules you should implement – blocking RFC 1918 (or similar) traffic at your gateway.
Your Internet Gateway is the connection between your internal network and the public Internet.  For many consumers and small businesses this is [...]

Linux firewall – iptables 101a

Part 101a: Where should you start with a Linux firewall?
Review your configuration (review ALL tables – save the short script below to the file /tmp/show.firewall – you must be ‘root’ or use ’sudo’)
#!/bin/bash
for TABLE in raw mangle nat filter
do
printf “\t##### Table: ${TABLE} ####\n”
iptables [...]