From eadf0256139ab6119be9dcc04df58ac4bef2918a Mon Sep 17 00:00:00 2001 From: IT Offshore Date: Sun, 10 Nov 2013 09:58:58 +0000 Subject: testing/fwsnort: new aport Application layer IDS/IPS by translating snort rules into iptables http://www.cipherdyne.org/fwsnort/ re-submitted complete patch for FWSNORT correcting: periodic.daily - now updates the SNORT rules / PSAD signatures daily. fwsnort.post-install - now just shows a message to update signatures manually (to avoid any problems with installations on tmpfs). Now uses the system terminal colours $STRONG $GREEN. fwsnort.update - update script for FWSNORT & PSAD (if PSAD exists). fwsnort.up - lives in /etc/network/if-pre-up.d/ to put the SNORT rules into iptables every time networking comes up. --- testing/fwsnort/fwsnort.post-install | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 testing/fwsnort/fwsnort.post-install (limited to 'testing/fwsnort/fwsnort.post-install') diff --git a/testing/fwsnort/fwsnort.post-install b/testing/fwsnort/fwsnort.post-install new file mode 100644 index 0000000000..b4e80d6c5c --- /dev/null +++ b/testing/fwsnort/fwsnort.post-install @@ -0,0 +1,16 @@ +#!/bin/sh +# fwsnort post install script +############################# + +NORMAL="\033[1;0m" +STRONG="\033[1;1m" +GREEN="\033[1;32m" + +print_strong() { + local prompt="${STRONG}$1 ${GREEN}$2${NORMAL}" + printf "${prompt} %s\n" +} + +print_strong "\nFWSNORT installed & daily signature updates configured.\n\nTo update now run:" "\t/usr/bin/update-fwsnort\n" +exit 0 + -- cgit v1.2.3