debian/0000755000000000000000000000000012065637107007175 5ustar debian/README.Debian0000644000000000000000000000215512065637107011241 0ustar Snort rules ------------------------------------------------------------------------------ The Debian package of fwsnort does not contain any ruleset. However, you can get the latest Emerging Threats rules from http://www.emergingthreats.net by running one of the following commands: fwsnort --update-rules or dpkg-reconfigure fwsnort The new ruleset will be saved in /etc/fwsnort/snort_rules. By using dpkg-reconfigure to update the rules, your choice will be saved. Then, for each upgrade of the package the rules will be updated. If you decide you do not want this feature anymore, you can simply reconfigure fwsnort with dpkg-reconfigure, and change your choice to No. The snort-rules-default package is recommended and can provide you with more rules that you can then manage by oinkmaster. If you handle rulesets from different directories (for example to use both the rules from Emerging Threats and the ones from the snort-rules-default package) then you can run this command: fwsnort --snort-rdir /etc/snort/rules,/etc/fwsnort/snort_rules You can add as many directories as you want as a comma separated list. debian/fwsnort.docs0000644000000000000000000000002412065637107011545 0ustar README TODO CREDITS debian/watch0000644000000000000000000000014212065637107010223 0ustar version=3 http://www.cipherdyne.com/fwsnort/download/fwsnort-nodeps-(.*)\.tar\.gz debian uupdate debian/rules0000755000000000000000000000134112065637107010254 0ustar #!/usr/bin/make -f INSTALL = install INSTALL_PROGRAM = $(INSTALL) INSTALL_DATA = $(INSTALL) -m 644 PROGRAM = $(shell dh_listpackages) DESTDIR = $(CURDIR)/debian/$(PROGRAM)/ DESTDIR_SBIN = $(CURDIR)/debian/$(PROGRAM)/usr/sbin/ DESTDIR_ETC = $(CURDIR)/debian/$(PROGRAM)/etc/$(PROGRAM)/ clean: dh $@ build: build-arch build-indep build-arch: build-indep: install: install-stamp install-stamp: dh_testdir dh_testroot dh_prep dh_installdirs $(INSTALL_DATA) fwsnort.conf $(DESTDIR_ETC) $(INSTALL_PROGRAM) $(PROGRAM) $(DESTDIR_SBIN) touch $@ binary-indep: build-indep install dh $@ binary-arch: binary: binary-indep binary-arch .PHONY: clean build binary-indep binary-arch binary install build-arch build_indep debian/fwsnort.postinst0000644000000000000000000000035612065637107012510 0ustar #!/bin/sh set -e # Source debconf library . /usr/share/debconf/confmodule if [ "$1" = "configure" ]; then # Check their answer db_get fwsnort/download [ "$RET" = "true" ] && fwsnort --update-rules fi #DEBHELPER# exit 0 debian/compat0000644000000000000000000000000212065637107010373 0ustar 7 debian/copyright0000644000000000000000000000146412065637107011135 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Contact: Michael B. Rash Upstream-Name: fwsnort Source: http://www.cipherdyne.org/fwsnort/download/ Files: * Copyright: Copyright 2003-2012 by Michael B. Rash License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. You can find a copy of it in your Debian system under /usr/share/common-licenses/ Files: debian/* Copyright: Copyright 2008-2012 by Franck Joncourt License: GPL-2+ Debian packaging is licensed under the same terms as the software itself (see above). debian/fwsnort.templates0000644000000000000000000000031612065637107012617 0ustar Template: fwsnort/download Type: boolean Default: false _Description: Download the rules? The latest Snort rules can be downloaded from http://www.emergingthreats.net in order to keep fwsnort up-to-date. debian/changelog0000644000000000000000000000706112065637107011053 0ustar fwsnort (1.6.3-1) unstable; urgency=low * New po-debconf translation - Brazilian Portuguese (Closes: #693362) * Imported Upstream version 1.6.3 - Closes: #693000 - Fixed hyphens in manpage. Removed t_upstream_manpage.diff patch. -- Franck Joncourt Sun, 23 Dec 2012 18:14:04 +0100 fwsnort (1.6.2-1) unstable; urgency=low * Acknowledged NMU: 1.5-2.1 * Imported Upstream version 1.6.2 + Bug fix for 'qw(...) usage as parenthesis' warnings for perl > 5.14 (Closes: #674114) + Updated perl dependency from libnetwork-ipv4addr-perl to libnet-ip-perl in d.control. + Generated script such as fwsnort.sh as moved to /var/lib/fwsnort. We make sure to remove them in d.fwsnort.postrm when purging the package. * Bumped up Standards-Version to 3.9.3: + Refreshed copyright holders and updated d.copyright to comply with the 1.0 machine-readable copyright file specification. * Added build-arch and build-indep targets to d.rules as lintian recommends. * Added patch t_upstream_manpage.diff to fix documentation in the manpage. -- Franck Joncourt Thu, 07 Jun 2012 22:54:21 +0200 fwsnort (1.5-2.1) unstable; urgency=low * Non-maintainer upload. * Fix pending l10n issues. Debconf translations: - Dutch; (Jeroen Schot). Closes: #651834 - Polish (Michał Kułach). Closes: #667946 -- Christian Perrier Mon, 16 Apr 2012 09:12:41 +0200 fwsnort (1.5-2) unstable; urgency=low * New po-debconf translation - Danish (Closes: #627714) -- Franck Joncourt Thu, 26 May 2011 20:59:37 +0200 fwsnort (1.5-1) unstable; urgency=low * New upstream release. * d.copyright: + Updated DEP5 proposed format. + Refreshed copyright years. * Bumped up Standards-Version to 3.9.2 (no changes) in d.control. -- Franck Joncourt Wed, 18 May 2011 18:45:15 +0200 fwsnort (1.1-2) unstable; urgency=low * Added Spanish debconf template translation. * Bumped up Standards-Version to 3.8.4 (no changes). -- Franck Joncourt Sun, 21 Feb 2010 15:43:26 +0100 fwsnort (1.1-1) unstable; urgency=low * New upstream release. * Bumped up Standards-Version to 3.8.3 (no changes). * Switch to dpkg-source 3.0 (quilt) format. * Updated copyright years in d.changelog. * Updated README.Debian to explain a bit more how to handle the choice to download the snort rules. * Do not pass -e to the shell on the #! line anymore, but set it in the body of the script with set -e (Debian Policy 10.4) in the following files: + d.fwsnort.config + d.fwsnort.postinst * Updated maintainer email address in d.control and d.changelog. * fwsnort.postrm: Update the log file location. -- Franck Joncourt Sat, 09 Jan 2010 23:48:46 +0100 fwsnort (1.0.6-1) unstable; urgency=low * New Upstream Version * Use the new syntax for iptables negation (Closes: #526622) * d.control: Bumped up Standards-Version to 3.8.1 (no changes). * Switch to dh7 + Updated d.compat + Updated d.control Build Dependency + Updated d.rules -- Franck Joncourt Tue, 02 Jun 2009 20:03:44 +0200 fwsnort (1.0.5-2) unstable; urgency=low * New po-debconf translation - Japanese (Closes: #510716) * Added DM-Upload-Allowed flag. -- Franck Joncourt Sun, 04 Jan 2009 20:40:31 +0100 fwsnort (1.0.5-1) unstable; urgency=low * Initial release (Closes: #475822) -- Franck Joncourt Wed, 13 Aug 2008 12:17:46 +0200 debian/fwsnort.dirs0000644000000000000000000000007512065637107011564 0ustar etc/fwsnort etc/fwsnort/snort_rules usr/sbin var/lib/fwsnort debian/fwsnort.config0000644000000000000000000000036712065637107012074 0ustar #!/bin/sh set -e # Source debconf library . /usr/share/debconf/confmodule if [ "$1" = "configure" ] || [ "$1" = "reconfigure" ]; then # Do you want to download snort rules db_input medium fwsnort/download || true db_go fi exit 0 debian/source/0000755000000000000000000000000012065637107010475 5ustar debian/source/format0000644000000000000000000000001412065637107011703 0ustar 3.0 (quilt) debian/fwsnort.manpages0000644000000000000000000000001312065637107012406 0ustar fwsnort.8 debian/po/0000755000000000000000000000000012065637107007613 5ustar debian/po/pt_BR.po0000644000000000000000000000220712065637107011162 0ustar # fwsnort - Snort-to-iptables rule translator. # Copyright (C) 2008 # This file is distributed under the same license as the fwsnort package. # Franck Joncourt , 2008. # Adriano Rafael Gomes , 2012. # msgid "" msgstr "" "Project-Id-Version: fwsnort 1.6.2-1\n" "Report-Msgid-Bugs-To: fwsnort@packages.debian.org\n" "POT-Creation-Date: 2008-10-21 22:47+0200\n" "PO-Revision-Date: 2012-11-15 17:31-0200\n" "Last-Translator: Adriano Rafael Gomes \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "Download the rules?" msgstr "Baixar as regras?" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "" "The latest Snort rules can be downloaded from http://www.emergingthreats.net " "in order to keep fwsnort up-to-date." msgstr "" "As últimas regras do Snort podem ser baixadas de http://www.emergingthreats." "net para manter o fwsnort atualizado." debian/po/ru.po0000644000000000000000000000252012065637107010600 0ustar # translation of ru.po to Russian # fwsnort - Snort-to-iptables rule translator. # Copyright (C) 2008 # This file is distributed under the same license as the fwsnort package. # # Franck Joncourt , 2008. # Yuri Kozlov , 2008. msgid "" msgstr "" "Project-Id-Version: fwsnort 1.0.5\n" "Report-Msgid-Bugs-To: fwsnort@packages.debian.org\n" "POT-Creation-Date: 2008-10-21 22:47+0200\n" "PO-Revision-Date: 2008-10-23 20:51+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "Download the rules?" msgstr "Скачать правила?" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "" "The latest Snort rules can be downloaded from http://www.emergingthreats.net " "in order to keep fwsnort up-to-date." msgstr "" "Чтобы поддержать fwsnort в актуальном состоянии можно " "скачать правила Snort с сайта http://www.emergingthreats.net." debian/po/pl.po0000644000000000000000000000237512065637107010575 0ustar # fwsnort - Snort-to-iptables rule translator. # Copyright (C) 2008 # This file is distributed under the same license as the fwsnort package. # # Franck Joncourt , 2008. # Michał Kułach , 2012. msgid "" msgstr "" "Project-Id-Version: fwsnort 1.0.5\n" "Report-Msgid-Bugs-To: fwsnort@packages.debian.org\n" "POT-Creation-Date: 2008-10-21 22:47+0200\n" "PO-Revision-Date: 2012-04-07 18:21+0200\n" "Last-Translator: Michał Kułach \n" "Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "Download the rules?" msgstr "Pobrać reguły?" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "" "The latest Snort rules can be downloaded from http://www.emergingthreats.net " "in order to keep fwsnort up-to-date." msgstr "" "Aby utrzymać aktualność fwsnort, mogą zostać pobrane najnowsze reguły Snort " "ze strony http://www.emergingthreats.net." debian/po/cs.po0000644000000000000000000000206412065637107010562 0ustar # fwsnort - Snort-to-iptables rule translator. # Copyright (C) 2008 # This file is distributed under the same license as the fwsnort package. # Franck Joncourt , 2008. # msgid "" msgstr "" "Project-Id-Version: fwsnort 1.0.5\n" "Report-Msgid-Bugs-To: fwsnort@packages.debian.org\n" "POT-Creation-Date: 2008-10-21 22:47+0200\n" "PO-Revision-Date: 2008-10-28 09:24+0100\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "Download the rules?" msgstr "Stáhnout pravidla?" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "" "The latest Snort rules can be downloaded from http://www.emergingthreats.net " "in order to keep fwsnort up-to-date." msgstr "" "Abyste udržovali fwsnort aktuální, je možné z http://www.emergingthreats.net " "automaticky stáhnout nejnovější pravidla pro Snort." debian/po/pt.po0000644000000000000000000000231412065637107010576 0ustar # translation of fwsnort debconf to Portuguese # fwsnort - Snort-to-iptables rule translator. # Copyright (C) 2008 the fwsnort's copyright holder # This file is distributed under the same license as the fwsnort package. # # Franck Joncourt , 2008. # Américo Monteiro , 2008. msgid "" msgstr "" "Project-Id-Version: fwsnort 1.0.5\n" "Report-Msgid-Bugs-To: fwsnort@packages.debian.org\n" "POT-Creation-Date: 2008-10-21 22:47+0200\n" "PO-Revision-Date: 2008-10-22 21:13+0100\n" "Last-Translator: Américo Monteiro \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "Download the rules?" msgstr "Descarregar as regras?" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "" "The latest Snort rules can be downloaded from http://www.emergingthreats.net " "in order to keep fwsnort up-to-date." msgstr "" "De modo a manter o fwsnort actualizado, as ultimas regras do Snort podem ser " "descarregadas de http://www.emergingthreats.net." debian/po/fr.po0000644000000000000000000000225712065637107010570 0ustar # fwsnort - Snort-to-iptables rule translator. # Copyright (C) 2008 # This file is distributed under the same license as the fwsnort package. # Franck Joncourt , 2008. # msgid "" msgstr "" "Project-Id-Version: fwsnort 1.0.5\n" "Report-Msgid-Bugs-To: fwsnort@packages.debian.org\n" "POT-Creation-Date: 2008-10-21 22:47+0200\n" "PO-Revision-Date: 2008-10-21 23:15+0200\n" "Last-Translator: Franck Joncourt \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: French\n" "X-Poedit-Country: FRANCE\n" "X-Poedit-SourceCharset: utf-8\n" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "Download the rules?" msgstr "Faut-il télécharger les règles ?" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "" "The latest Snort rules can be downloaded from http://www.emergingthreats.net " "in order to keep fwsnort up-to-date." msgstr "" "Vous pouvez télécharger les règles Snort les plus récentes sur http://www." "emergingthreats.net si vous voulez garder fwsnort à jour." debian/po/es.po0000644000000000000000000000351212065637107010563 0ustar # fwsnort po-debconf translation to Spanish # Copyright (C) 2009 Software in the Public Interest # This file is distributed under the same license as the fwsnort package. # # Changes: # - Initial translation # Ricardo Fraile , 2009 # # Traductores, si no conocen el formato PO, merece la pena leer la # documentaci??n de gettext, especialmente las secciones dedicadas a este # formato, por ejemplo ejecutando: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Equipo de traducci??n al espa??ol, por favor lean antes de traducir # los siguientes documentos: # # - El proyecto de traducci??n de Debian al espa??ol # http://www.debian.org/intl/spanish/ # especialmente las notas y normas de traducci??n en # http://www.debian.org/intl/spanish/notas # # - La gu??a de traducci??n de po's de debconf: # /usr/share/doc/po-debconf/README-trans # o http://www.debian.org/intl/l10n/po-debconf/README-trans # msgid "" msgstr "" "Project-Id-Version: fwsnort 1.0.6-1\n" "Report-Msgid-Bugs-To: fwsnort@packages.debian.org\n" "POT-Creation-Date: 2008-05-27 18:36+0200\n" "PO-Revision-Date: 2009-12-29 10:52+0200\n" "Last-Translator: Ricardo Fraile \n" "Language-Team: Debian l10n Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "Download the rules?" msgstr "??Desea descargar las reglas?" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "" "The latest Snort rules can be downloaded from http://www.emergingthreats.net " "in order to keep fwsnort up-to-date." msgstr "La ??ltimas reglas de Snort se pueden descargar desde http://www.emergingthreats.net para mantener fwsnort actualizado." debian/po/templates.pot0000644000000000000000000000157712065637107012347 0ustar # fwsnort - Snort-to-iptables rule translator. # Copyright (C) 2008 # This file is distributed under the same license as the fwsnort package. # Franck Joncourt , 2008. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: fwsnort 1.0.5\n" "Report-Msgid-Bugs-To: fwsnort@packages.debian.org\n" "POT-Creation-Date: 2008-10-21 22:47+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "Download the rules?" msgstr "" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "" "The latest Snort rules can be downloaded from http://www.emergingthreats.net " "in order to keep fwsnort up-to-date." msgstr "" debian/po/ja.po0000644000000000000000000000221612065637107010546 0ustar # fwsnort - Snort-to-iptables rule translator. # Copyright (C) 2008 Franck Joncourt # This file is distributed under the same license as the fwsnort package. # Hideki Yamane (Debian-JP) , 2008. # msgid "" msgstr "" "Project-Id-Version: fwsnort 1.0.5-1\n" "Report-Msgid-Bugs-To: fwsnort@packages.debian.org\n" "POT-Creation-Date: 2008-10-21 22:47+0200\n" "PO-Revision-Date: 2008-12-28 22:26+0900\n" "Last-Translator: Hideki Yamane (Debian-JP) \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "Download the rules?" msgstr "ルールをダウンロードしますか?" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "" "The latest Snort rules can be downloaded from http://www.emergingthreats.net " "in order to keep fwsnort up-to-date." msgstr "" "fwsnort を更新するための最新の Snort のルールは http://www.emergingthreats.net " "からダウンロード出来ます。" debian/po/nl.po0000644000000000000000000000213712065637107010567 0ustar # Dutch translation of fwsnort debconf templates. # Copyright (C) 2011 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the fwsnort package. # Jeroen Schot , 2011. # msgid "" msgstr "" "Project-Id-Version: fwsnort 1.5-2\n" "Report-Msgid-Bugs-To: fwsnort@packages.debian.org\n" "POT-Creation-Date: 2008-10-21 22:47+0200\n" "PO-Revision-Date: 2011-12-12 14:49+0100\n" "Last-Translator: Jeroen Schot \n" "Language-Team: Debian l10n Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "Download the rules?" msgstr "De regels ophalen?" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "" "The latest Snort rules can be downloaded from http://www.emergingthreats.net " "in order to keep fwsnort up-to-date." msgstr "" "De nieuwste regels van Snort kunnen worden opgehaald van http://" "emergingthreats.net, om zo fwsnort bijgewerkt te houden." debian/po/de.po0000644000000000000000000000214012065637107010540 0ustar # fwsnort - Snort-to-iptables rule translator. # Copyright (C) 2008 # This file is distributed under the same license as the fwsnort package. # Franck Joncourt , 2008. # Jens Seidel , 2008. # msgid "" msgstr "" "Project-Id-Version: fwsnort 1.0.5\n" "Report-Msgid-Bugs-To: fwsnort@packages.debian.org\n" "POT-Creation-Date: 2008-10-21 22:47+0200\n" "PO-Revision-Date: 2008-10-22 11:07+0200\n" "Last-Translator: Jens Seidel \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "Download the rules?" msgstr "Die Regeln herunterladen?" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "" "The latest Snort rules can be downloaded from http://www.emergingthreats.net " "in order to keep fwsnort up-to-date." msgstr "" "Um fwsnort aktuell zu halten, können die neuesten Regeln für Snort von " "http://www.emergingthreats.net heruntergeladen werden." debian/po/it.po0000644000000000000000000000222612065637107010571 0ustar # ITALIAN TRANSLATION OF FWSNORT'S.PO-DEBCONF FILE # fwsnort - Snort-to-iptables rule translator. # Copyright (C) 2008 # This file is distributed under the same license as the fwsnort package. # # Franck Joncourt , 2008. # Vincenzo Campanella , 2008. msgid "" msgstr "" "Project-Id-Version: it\n" "Report-Msgid-Bugs-To: fwsnort@packages.debian.org\n" "POT-Creation-Date: 2008-10-21 22:47+0200\n" "PO-Revision-Date: 2008-10-22 07:21+0200\n" "Last-Translator: Vincenzo Campanella \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "Download the rules?" msgstr "Scaricare le regole?" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "" "The latest Snort rules can be downloaded from http://www.emergingthreats.net " "in order to keep fwsnort up-to-date." msgstr "" "Per mantenere fwsnort aggiornato è possibile scaricare le regole più recenti " "di Snort da http://www.emergingthreats.net." debian/po/sv.po0000644000000000000000000000221112065637107010577 0ustar # translation of fwsnort.po to swedish # fwsnort - Snort-to-iptables rule translator. # Copyright (C) 2008 # This file is distributed under the same license as the fwsnort package. # # Franck Joncourt , 2008. # Martin Bagge , 2008. msgid "" msgstr "" "Project-Id-Version: fwsnort\n" "Report-Msgid-Bugs-To: fwsnort@packages.debian.org\n" "POT-Creation-Date: 2008-10-21 22:47+0200\n" "PO-Revision-Date: 2008-10-22 10:59+0100\n" "Last-Translator: Martin Bagge \n" "Language-Team: swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "Download the rules?" msgstr "Hämta regler?" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "" "The latest Snort rules can be downloaded from http://www.emergingthreats.net " "in order to keep fwsnort up-to-date." msgstr "" "De senaste Snort-reglerna kan hämtas från http://www.emergingthreats.net för " "att hålla fwsnort uppdaterat." debian/po/da.po0000644000000000000000000000201512065637107010535 0ustar # Danish translation fwsnort. # Copyright (C) fwsnort & nedenstående oversættere. # This file is distributed under the same license as the fwsnort package. # Joe Hansen (joedalton2@yahoo.dk), 2011. # msgid "" msgstr "" "Project-Id-Version: fwsnort\n" "Report-Msgid-Bugs-To: fwsnort@packages.debian.org\n" "POT-Creation-Date: 2008-10-21 22:47+0200\n" "PO-Revision-Date: 2011-05-23 18:30+01:00\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "Download the rules?" msgstr "Hent reglerne?" #. Type: boolean #. Description #: ../fwsnort.templates:1001 msgid "" "The latest Snort rules can be downloaded from http://www.emergingthreats.net " "in order to keep fwsnort up-to-date." msgstr "" "De seneste Snortregler kan hentes fra http://www.emergingthreats.net " "for at holde fwsnort opdateret." debian/po/POTFILES.in0000644000000000000000000000005412065637107011367 0ustar [type: gettext/rfc822deb] fwsnort.templates debian/control0000644000000000000000000000163612065637107010606 0ustar Source: fwsnort Section: admin Priority: optional Build-Depends: debhelper (>= 7) Build-Depends-Indep: po-debconf Maintainer: Franck Joncourt Standards-Version: 3.9.3 Vcs-git: git://git.debian.org/git/collab-maint/fwsnort.git Vcs-Browser: http://git.debian.org/?p=collab-maint/fwsnort.git;a=summary Homepage: http://www.cipherdyne.org/fwsnort/ Package: fwsnort Architecture: all Depends: ${perl:Depends}, ${misc:Depends}, iptables, libnet-ip-perl, libiptables-parse-perl Recommends: snort-rules-default Description: Snort-to-iptables rule translator Fwsnort translates Snort rules into equivalent iptables rules and generates a shell script that implements the resulting iptables commands. . This allows network traffic that matches Snort signatures to be logged and/or dropped by iptables directly without putting any interface into promiscuous mode or queuing packets from kernel to user space. debian/fwsnort.postrm0000644000000000000000000000170612065637107012151 0ustar #!/bin/sh set -e # In case the user wants to purge the fwsnort package, we must manually remove # some files. if [ "$1" = "purge" ]; then # Remove old log files (default directory) if [ -d /var/log/fwsnort ]; then find /var/log/fwsnort/ -type f -exec rm {} \; rmdir /var/log/fwsnort fi # Every time fwsnort is used to generate an iptables script, if an old # script is found, the previous one is moved to the archives directory. # Therefore, we have to make sure we remove this directory and the default # generated scripts. if [ -d /var/lib/fwsnort/archive ]; then find /var/lib/fwsnort/archive/ -type f -exec rm {} \; rmdir /var/lib/fwsnort/archive fi if [ -d /var/lib/fwsnort/ ]; then find /var/lib/fwsnort/ -type f -exec rm {} \; fi # We take care of the default directory where users can store their rules. if [ -d /etc/fwsnort/snort_rules ]; then find /etc/fwsnort/snort_rules/ -type f -exec rm {} \; fi fi #DEBHELPER# exit 0