Shell Script To Update Spamhaus Lasso Spam Database for PF Firewall

#!/bin/sh
# A shell script update Spamhaus Lasso Spam Database for PF Firewall
# Put this script at /etc/periodic/daily/10.drop-lasso file.
# Tested under FreeBSD 6.x and 7.x and PF Firewall
# -------------------------------------------------------------------------
# Copyright (c) 2007 nixCraft project <http://www.cyberciti.biz/fb/>
# This script is licensed under GNU GPL version 2.0 or above
# -------------------------------------------------------------------------
# This script is part of nixCraft shell script collection (NSSC)
# Visit http://bash.cyberciti.biz/ for more information.
# ----------------------------------------------------------------------
 
FILE=/etc/pf.drop.lasso.conf
TMPO=/tmp/drop.lasso.$$
DROPURL='http://www.spamhaus.org/drop/drop.lasso'
CUT=/usr/bin/cut
SED=/usr/bin/sed
FETCH=/usr/bin/fetch
RM=/bin/rm
PF="/etc/rc.d/pf restart"
>$TMPO
$FETCH -o $TMPO $DROPURL
$CUT -d';' -f1 $TMPO | $SED -e '/^$/d' >$FILE
$RM $TMPO
$PF

Download this script and add following 3 lines to your /etc/pf.conf file:

table <droplasso> persist file "/etc/pf.drop.lasso.conf"
 
#Block DROP LASSO
#block log (all) all
# pfctl -t droplasso -T show
block drop in log (all)  quick on $ext_if from <droplasso> to any
block drop out log (all) quick on $ext_if from any to <droplasso>

See FreeBSD / OpenBSD: PF Firewall Filter Large Number Of Subnets and IP Address for further information.

Featured Articles:

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our email newsletter to make sure you don't miss a single tip/tricks.

{ 2 comments… read them below or add one }

1 Jeff Royle June 23, 2009 at 1:49 pm

I have being doing something similar for my own FreeBSD systems, highly recommend. There is a few things you may want to take into consideration here.

1) If you are going to utilize FreeBSD’s periodic system this setup should be modified to work within the framework. All custom editions to periodic scripts should be placed in ‘/usr/local/etc/periodic/*’ In this case ‘/usr/local/etc/periodic/daily’ would be suitable. You will also want to add control for the running of the script in the /etc/periodic.conf file. Below I have done a re-write of your 10.drop-lasso file.

2) Typically you want to avoid doing a restart on a firewall if it isn’t necessary. Since we are dealing with a table PF allows for a load of just the tables without a complete ruleset reload. This is accomplished by using pfctl. For example: pfctl -Tl -f /etc/pf.conf will do the reload on all tables in PF. Note: You can add -v to get more verbose output on the tables being reloaded. I have adjusted the script to use this instead of doing a full restart

#!/bin/sh
#  Filename: /usr/local/etc/periodic/daily/10.drop-Lasso
# If there is a global system configuration file, suck it in.
#
if [ -r /etc/defaults/periodic.conf ]
then
    . /etc/defaults/periodic.conf
    source_periodic_confs
fi

case "$daily_pf_droplasso_enable" in
    [Yy][Ee][Ss])

	FILE=/etc/pf.drop.lasso.conf
	TMPO=/tmp/drop.lasso.$$
	DROPURL='http://www.spamhaus.org/drop/drop.lasso'
	CUT=/usr/bin/cut
	SED=/usr/bin/sed
	FETCH=/usr/bin/fetch
	RM=/bin/rm
	PF="/sbin/pfctl -Tl -f /etc/pf.conf"
	>$TMPO
	$FETCH -o $TMPO $DROPURL
	$CUT -d';' -f1 $TMPO | $SED -e '/^$/d' >$FILE
	$RM $TMPO
	$PF && rc=1 || rc=3
	;;
    *) rc=0;;
esac

exit $rc

Add in ‘/etc/periodic.conf’ the following line:

daily_pf_droplasso_enable="YES"

Reply

2 Vivek Gite June 24, 2009 at 7:08 pm

Thanks for putting it FreeBSD frame work format.

Reply

Previous post:

Next post: