--- acidbase-1.4.5.orig/debian/config +++ acidbase-1.4.5/debian/config @@ -0,0 +1,19 @@ +#!/bin/sh -e + +# Source debconf library. +. /usr/share/debconf/confmodule + +# source dbconfig-common stuff +dbc_dbtypes="mysql, pgsql" +dbc_dbuser="snort" +dbc_dbname="snort" + +if [ -f /usr/share/dbconfig-common/dpkg/config ]; then + . /usr/share/dbconfig-common/dpkg/config + dbc_go acidbase $@ +fi + +db_input medium "acidbase/webserver" || true +db_text high "acidbase/base_advisory" || true +db_go + --- acidbase-1.4.5.orig/debian/README.Debian +++ acidbase-1.4.5/debian/README.Debian @@ -0,0 +1,30 @@ +acidbase for Debian +------------------ + +USAGE +----- + +The application should be availabe at http{s}://localhost/acidbase/ +after install. It is highly recommended that you: + + a) make it only available through HTTPs, as confidential information might + be disclosed when viewing alerts that include packet traces + + b) use some for of access control to limit access to this interface. Notice + that the application does not provide any kind of per-user access control + and anyone accessing the above URLs will be able to view the full Snort + database + +The Debian package ships with a default configuration that limits access to +acidbase to only the loopback address. Users attempting to access the BASE +application from other IP addresses will be denied. This ensures that +unauthorised users cannot access ACID and also, if a security vulnerability is +found in the code, a default Debian package installation will not be remotely +exploitable. + +Make sure to adjust the Apache configuration file provided to suit your needs. +If you are using a web browser different from Apache you will have to configure +it to make the webserver retrieve the pages for the URI /acidbase/ +from the package installation directory (/usr/share/acidbase/). + + -- Javier Fernandez-Sanguino Sat, 17 Dec 2005 18:49:11 +0100 --- acidbase-1.4.5.orig/debian/rules +++ acidbase-1.4.5/debian/rules @@ -0,0 +1,88 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +include /usr/share/dpatch/dpatch.make + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-stamp + +build-stamp: patch configure-stamp + dh_testdir + touch build-stamp + +clean: unpatch + dh_testdir + dh_testroot + debconf-updatepo + rm -f build-stamp configure-stamp + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # php pages + install -d $(CURDIR)/debian/acidbase/usr/share/acidbase/ + cp -r *.php admin/ contrib/ help/ images/ includes/ languages/ \ + setup/ scripts/ styles/ $(CURDIR)/debian/acidbase/usr/share/acidbase/ + + # configuration + install -d $(CURDIR)/debian/acidbase/etc/acidbase/ + install -m 640 -o root -g www-data $(CURDIR)/base_conf.php.dist \ + $(CURDIR)/debian/acidbase/etc/acidbase/base_conf.php + ln -sf /etc/acidbase/base_conf.php \ + $(CURDIR)/debian/acidbase/usr/share/acidbase/ + cp $(CURDIR)/debian/apache.conf \ + $(CURDIR)/debian/acidbase/etc/acidbase/ + + # sql + install -d $(CURDIR)/debian/acidbase/usr/share/doc/acidbase/sql/ + cp -r $(CURDIR)/sql $(CURDIR)/debian/acidbase/usr/share/doc/acidbase/ + + # remove snortunified LICENCE, already listed in debian/copyright + rm $(CURDIR)/debian/acidbase/usr/share/acidbase/contrib/SnortUnified/LICENSE + rm -rf $(CURDIR)/debian/acidbase/usr/share/acidbase/contrib/SnortUnified/SnortUnified/CVS + +# Build architecture-independent files here. +binary-arch: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs docs/CHANGELOG + dh_installdocs + dh_installexamples + dh_installdebconf + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_perl + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep +.PHONY: build clean binary-indep binary-arch binary install configure --- acidbase-1.4.5.orig/debian/postrm +++ acidbase-1.4.5/debian/postrm @@ -0,0 +1,48 @@ +#!/bin/sh -e + +# Source debconf library. +if [ -f /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule +fi + +# source dbconfig-common stuff +dbc_dbtypes="mysql, pgsql" + +if [ -f /usr/share/dbconfig-common/dpkg/postrm ]; then + . /usr/share/dbconfig-common/dpkg/postrm + dbc_go acidbase $@ +fi + +if [ "$1" = "purge" ]; then + rm -f /etc/acidbase/database.php + if which ucf >/dev/null 2>&1; then + ucf --purge database.php + fi +fi + +db_get acidbase/webserver || true +WEBSERVER="$RET" +case "$WEBSERVER" in + Apache) webservers="apache" ;; + Apache2) webservers="apache2" ;; + Apache-SSL) webservers="apache-ssl" ;; + All) webservers="apache apache-ssl apache2" ;; + *) webservers="" ;; +esac + +for apache in $webservers; do + if [ -f "/etc/$apache/conf.d/acidbase.conf" ]; then + rm -f /etc/$apache/conf.d/acidbase.conf + if [ -f "/var/run/$apache.pid" ]; then + invoke-rc.d $apache reload + fi + fi +done + + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + + --- acidbase-1.4.5.orig/debian/NEWS +++ acidbase-1.4.5/debian/NEWS @@ -0,0 +1,13 @@ +acidbase (1.2.7-2) unstable; urgency=low + + Since this version acidbase no longer provides the graphing functionality + (previously provided by the PEAR Image_Graph and Image_Color modules) since, + due to license issues, the Image_Color module cannot be distributed in + Debian. + + Consequentely, the graphing capabilities are no longer presented in + Acidbase's main page although the php pages are there. + + For more information please see bugs #401797 and #402406 + + -- Javier Fernandez-Sanguino Pen~a Tue, 12 Dec 2006 21:21:52 +0100 --- acidbase-1.4.5.orig/debian/gbp.conf +++ acidbase-1.4.5/debian/gbp.conf @@ -0,0 +1,10 @@ +[DEFAULT] +pristine-tar = True + +[git-buildpackage] +sign-tags = True + +[git-dch] +meta = True +git-author = True + --- acidbase-1.4.5.orig/debian/apache.conf +++ acidbase-1.4.5/debian/apache.conf @@ -0,0 +1,17 @@ + + Alias /acidbase "/usr/share/acidbase" + + + + Options +FollowSymLinks + AllowOverride None + order deny,allow + deny from all + allow from 127.0.0.0/255.0.0.0 + + php_flag magic_quotes_gpc Off + php_flag track_vars On + php_value include_path .:/usr/share/php + + + --- acidbase-1.4.5.orig/debian/templates +++ acidbase-1.4.5/debian/templates @@ -0,0 +1,19 @@ +Template: acidbase/webserver +Type: select +#flag:translate:4,5 +__Choices: Apache, Apache2, Apache-SSL, All, None +Default: All +_Description: Version(s) of Apache to configure automatically: + BASE requires a few things to be set up in your web server configuration. + . + The Debian packaged version can usually automatically configure apache by + dropping a symlink into the /etc/APACHE-SERVER/conf.d directory. + Select "None" if you aren't running apache or you would prefer to set up + the web server yourself. If you select a version to configure, all + configuration changes will also be removed when the package is purged. + +Template: acidbase/base_advisory +Type: note +_Description: NOTE: Manual configuration required + You will need to go to http://localhost/acidbase first to force the + database modifications for BASE. --- acidbase-1.4.5.orig/debian/prerm +++ acidbase-1.4.5/debian/prerm @@ -0,0 +1,14 @@ +#!/bin/sh -e + +# source debconf stuff +. /usr/share/debconf/confmodule +# source dbconfig-common stuff +dbc_dbtypes="mysql, pgsql" +. /usr/share/dbconfig-common/dpkg/prerm +dbc_go acidbase $@ + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + --- acidbase-1.4.5.orig/debian/README.source +++ acidbase-1.4.5/debian/README.source @@ -0,0 +1,27 @@ +This package uses dpatch to manage all modifications to the upstream +source. Changes are stored in the source package as diffs in +debian/patches and applied during the build. + +To get the fully patched source after unpacking the source package, cd +to the root level of the source package and run: + + debian/rules patch + +Removing a patch is as simple as removing its entry from the +debian/patches/00list file, and please also remove the patch file +itself. + +Creating a new patch is done with "dpatch-edit-patch patch XX_patchname" +where you should replace XX with a new number and patchname with a +descriptive shortname of the patch. You can then simply edit all the +files your patch wants to edit, and then simply "exit 0" from the shell +to actually create the patch file. + +To tweak an already existing patch, call "dpatch-edit-patch XX_patchname" +and replace XX_patchname with the actual filename from debian/patches +you want to use. + +To clean up afterwards again, "debian/rules unpatch" will do the +work for you - or you can of course choose to call +"fakeroot debian/rules clean" all together. + --- acidbase-1.4.5.orig/debian/changelog +++ acidbase-1.4.5/debian/changelog @@ -0,0 +1,387 @@ +acidbase (1.4.5-1) unstable; urgency=low + + * New upstream version - + - fixes undefined method errors in php 5.3 (Closes: #577570) + - addresses XSS vulnerabilities in CVE-2009-4839 (Closes: #587819) + * updated 02_update_external_links.dpatch for new version + + -- Jeremy T. Bouse Sat, 03 Jul 2010 02:01:54 -0400 + +acidbase (1.4.4-3) unstable; urgency=medium + + * debian/control: Dependencies for php-mail and php-mail-mime (Closes: + #561321) - thanks to Thomas Mueller + + -- Jeremy T. Bouse Wed, 16 Dec 2009 08:53:24 -0500 + +acidbase (1.4.4-2) unstable; urgency=low + + * debian/control: Update depends against mysql & postgresql (LP: + #223405) + * debian/control: Add Vcs-* headers + * debian/gbp.conf: Add GBP config settings + + -- Jeremy T. Bouse Sun, 13 Dec 2009 11:24:06 -0500 + +acidbase (1.4.4-1) unstable; urgency=low + + * Imported Upstream version 1.4.4 (Closes: #501644, #552235) + * debian/control: Remove David Gil as maintainer (Closes: #551636) + * debian/control: Bump Standards-Version to 3.8.3 and change + Maintainer/Uploaders. + * debian/rules: Change to build in binary-indep to close lintian + warnings. + * debian/README.source: Added README.source to clear lintian warning. + * debian/patches/02_update_external_links.dpatch: Snort ID webdatabase + changed (Closes: #542770) - thanks to Robert Sander + + * debian/patches/08_update_whois_servers.dpatch: Removed as no longer + needed + * debian/patches/11_use_trim_to_avoid_signature_problems.dpatch: fix + patch against new version + * debian/po/fi.po: Initial Finnish debconf translation (Closes: + #535118) - thanks to Esko Arajärvi + * debian/po/ja.po: Initial Japanese debconf translation (Closes: + #556612) - thanks to Hideki Yamane (Debian-JP) + + * Updated debconf translations to change Report-Msgid-Bugs-To to + jbouse@debian.org + * debian/patches/12_remove_php_image_graph.dpatch: Update patch for + new version + * debian/patches/CVE-2007-6156.dpatch: Removed patch accepted by + upstream + + -- Jeremy T. Bouse Fri, 27 Nov 2009 15:26:00 -0500 + +acidbase (1.3.9-2) unstable; urgency=low + + * debian/control: Bump Standards-Version to 3.8.0 with no changes. + * debian/watch: fixed watch file (Closes: #450227) + * debian/po/sv.po: Updated Swedish debconf translation (Closes: #492192) + * debian/patches/CVE-2007-6156.dpatch: describe the patch purpose and + mention the CVE id and the bug closed. + * debian/templates: Use "All" as default choice for web server, + to ensure that all available versions of apache are configured. + * debian/NEWS: reformat news file due to systax errors, following the + Developers Reference, section 6.3.4. + * debian/rules: don't install snortunified license + (contrib/SnortUnified/LICENSE), already listed in debian/copyright. + * debian/prerm: set -e flag to maintainer script, which ensures that + the script's execution is aborted when any executed command fails. + + -- David Gil Thu, 16 Oct 2008 11:03:57 +0200 + +acidbase (1.3.9-1) unstable; urgency=medium + + * New upstream release. + * Changes in source package: + + Renamed from base to acidbase + + Removed contrib/docs/CVS directory + * debian/patches/CVE-2007-6156.dpatch: Fixed XSS bug in index.php + Thanks to Nico Golde for his patch (CVE-2007-6156; Closes: #453838) + * debian/patches/15_update_spanish_lang.dpatch: dropped, included upstream. + * debian/patches/00list: updated. + * Initial Dutch debconf translation (Closes: #436866) + * Added Homepage control field + * Added Vcs-{Cvs,Browser} fields + + -- David Gil Sun, 02 Dec 2007 16:40:23 +0100 + +acidbase (1.3.8-1) unstable; urgency=low + + * New upstream release. + * Updated spanish language translation: + + debian/patches/00list: updated. + + debian/patches/15_update_spanish_lang.dpatch: added. + * debian/copyright: don't include the fpdf license anymore since the + library has been removed from the source. + * Removed DH_COMPAT environment variable in debian/rules. Created + a debian/compat file instead. + + -- David Gil Wed, 11 Jul 2007 13:49:43 +0200 + +acidbase (1.3.6-1) unstable; urgency=low + + * New upstream release. + * Depends on 'postgresql-client' dummy package, which will always + point to the latest version. Removed dependencies on specific + postgresql-client-X.Y packages (Closes: #422019). + * Updated 12_remove_php_image_graph patch. + + -- David Gil Mon, 28 May 2007 11:16:30 +0200 + +acidbase (1.3.5-1) unstable; urgency=low + + * New upstream release. + * Merged 13_fix_postgresql.dpatch into 01_default_config.dpatch + + debian/patches/00list: Updated + + debian/patches/01_default_config.dpatch: Updated + + debian/patches/13_fix_postgresql.dpatch: Removed + + -- David Gil Sun, 04 Mar 2007 13:38:54 +0100 + +acidbase (1.2.7-4) unstable; urgency=low + + * Initial debconf translations: + - Portuguese (pt), thanks Traduz ML (Closes: #409201) + - German (de), thanks Matthias Julius (Closes: #408204) + - Russian (ru), thanks Yuri Kozlov (Closes: #408142) + - Norwegian (nb), thanks Bjørn Steensru(Closes: #408999) + * Updated debconf translations: + - Czech (cs), thanks Miroslav Kure (Closes: #408629) + + -- David Gil Mon, 05 Feb 2007 14:18:21 +0100 + +acidbase (1.2.7-3) unstable; urgency=low + + * Complete the list of database clients dependencies needed by + dbconfig-common. + * Removed not needed php4-gd | php5-gd dependencies since php-image-graph + was removed in the last upload. + + -- David Gil Mon, 25 Dec 2006 14:25:30 +0100 + +acidbase (1.2.7-2) unstable; urgency=high + + * Urgency high, prevents this package from being removed from sid and + fixes an RC bug. + * Remove the dependency on php-image-color (Closes: #402406) + - remove the link from base_main.php to base_graph_main.php + - do not include base_graph_form.php in base_main.php + - modify base_graph_common.php so that it does not complain so loudly when + Image/Graph is not found. Just say that the functionality is currently + not available in Debian (due to license issues, point to the Bug + report) and say that users that need it will have to install the PEAR + modules. + - document in NEWS.Debian why the graphs have been removed and when will + they be reenabled in the front page. + * Workaround for the name change in dbconfig-common, the base_conf.php + script will substitute 'pgsql' with 'postgres'. This makes it possible + to setup a PostgreSQL configuration properly. (Closes: #402868) + * Introduce a space before the Homepage + + -- Javier Fernandez-Sanguino Pen~a Tue, 12 Dec 2006 20:16:25 +0100 + +acidbase (1.2.7-1) unstable; urgency=high + + * New upstream release. + [ David Gil ] + * Depend on all database clients supported by the package until a better + solution is adopted. See bugs #353617,#398634 for the discussion. + Thanks to Lucas Nussbaum, Andreas Henriksson, Steinar H. Gunderson and + Sean Finney for their work on this. (Closes: #398619) + * Updated French debconf template translation (Closes: #395055). + * RC bug fixed, urgency high. + [ Javier Fernandez-Sanguino ] + * Remove extra space in debian/control before the Homepage + * Add the license and author of the new contrib modules (for using + snort unified files) included in this base release in debian/copyright + + -- David Gil Sat, 25 Nov 2006 13:31:27 +0100 + +acidbase (1.2.6-1) unstable; urgency=low + + * New upstream release. + + * Acknowledge NMU, thanks to Steinar H. Gunderson (Closes: #389544). + + * Updated translations: + - debian/templates: Don't mark all choices as traslatables. + Applied a patch from Thomas Huriaux, thanks! (Closes: #377636) + - debian/po/sv.po: Updated Swedish debconf translation. + Thanks to Daniel Nylander (Closes: #375746). + - debian/po/es.po: Updated Spanish debconf translation. + - debian/po/cs.po: Updated Czech debconf translation. + Thanks to Miroslav Kure (Closes: #389202). + (This was applied in the last NMU but not commented in the changelog) + * debian/control: Add extra space before Homepage at package description. + + -- David Gil Wed, 27 Sep 2006 12:10:29 +0200 + +acidbase (1.2.5-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Make config and postrm scripts check for the existence of dbconfig-common + before attempting to use it. (Closes: #388219) + + -- Steinar H. Gunderson Tue, 26 Sep 2006 12:59:07 +0200 + +acidbase (1.2.5-1) unstable; urgency=high + + * New upstream release, wich includes the following security improvements: + + Added XSSPrintSafe() (array safe htmlspecilchars() function) and made + filterSql() use ADOdb qmagic() + + Filtered all unfiltred (mainly auth system stuff) $_POST and $_GET + variables using filterSql() + + Santized all $_SERVER variables to be protected against XSS attacks + These improvements fix the following security bugs: + + Cross-site scripting (XSS) vulnerability (CVE-2006-1590) + (Closes: #363548). + + Remote File Inclusion Vulnerabilities (CVE-2006-2685) + (Closes: #370576). + + * debian/patches/02_update_external_links.dpatch : updated. + + * Applied part of the patch from Paul Wise : + + Remove short description from long description + + Update copyright file with more information + + * Bump Standards-Version to 3.7.2 (no policy-related changes needed). + + * Fix an annoying dbconfig-common error: Add dbc_dbtypes variable in + mantainer scripts, not only in config file. + This is related to bug #372948 (dbconfig-common: can not determine the + database type). + + * Remove ucf file under /etc/acidbase on package purge. + + -- David Gil Mon, 12 Jun 2006 21:20:37 +0200 + +acidbase (1.2.4-1) unstable; urgency=high + + * New upstream release, which fixes many bugs including the following security bug: + - base_maintenance.php in BASE before 1.2.4 (melissa), when running in + standalone mode, allows remote attackers to bypass authentication, + possibly by setting the standalone parameter to "yes". + This fixes CVE-2006-1505 (Closes: #361139.) + * Added patch to fix a warning replacing strings in CleanVariable: + - debian/patches/03_fix_warning_in_CleanVariable.dpatch: added. + - debian/patches/00list: updated. + * Now base_conf.php has all its strings quoted with ' instead of ": + - debian/patches/01_default_config.dpatch: updated. + - debian/patches/02_update_external_links.dpatch: updated. + + [ Javier Fernandez-Sanguino ] + * Po-debconf translation updates: + - Swedish by Daniel Nylander (Closes: #348881) + - Portuguese by Miguel Figueiredo (Closes: #349597) + - French by "Steve" (Closes: #351230, #366432) + + -- David Gil Mon, 03 Apr 2006 12:16:33 +0200 + +acidbase (1.2.2-1) unstable; urgency=low + + * New upstream release: + + Fixed issue with signature names (Closes: #352246). + + Fixed auto-refresh ignored for stat pages. + + Fixed Sort order issues. + + Added Portscan Information. + * First attempt at dbconfig-common support (Closes: #350376). + * Some templates have been rewritten in order to follow the developers + reference (Closes: #344052). + * patches/04_fix_sql_injection.dpatch: dropped, included upstream. + [ Javier Fernandez-Sanguino ] + * Update Spanish po-debconf translation + + -- Javier Fernandez-Sanguino Pen~a Sun, 5 Mar 2006 20:04:58 +0100 + +acidbase (1.2.1-4) unstable; urgency=low + + * Use dpatch system. Split .diff.gz into the following patches: + (See patches descriptions for more details) + - 01_default_config.dpatch + - 02_update_external_links.dpatch + - 04_fix_sql_injection.dpatch + - 08_update_whois_servers.dpatch + - 11_use_trim_to_avoid_signature_problems.dpatch + * Use debhelper compat level 5 and update build-dependencies accordingly. + * Initial Czech debconf translation, thanks Miroslav Kure! (Closes: #345309) + * Fixed "Wrong $DBtype setup" bug: Use 'postgres' instead of 'postgresql' in + db_type template (Closes: #347291) + * Updated watch file. + + -- David Gil Thu, 12 Jan 2006 22:33:16 +0100 + +acidbase (1.2.1-3) unstable; urgency=low + + * Fixed bug "Can't delete alerts". + Don't filter action_chk_lst and action_lst http variables + since they are arrays, not strings. (Closes: #341180) + * I missed a colon in the last changelog entry, now really Closes: #338301. + * Added debconf templates translation. + + New spanish po file. + * Added watch file + [ Javier Fernandez-Sanguino Pen~a ] + * Reformatted debian/README.Debian and fix names that were pointing + to ACID + + -- David Gil Fri, 02 Dec 2005 00:23:51 +0100 + +acidbase (1.2.1-2) unstable; urgency=low + + * Fixed broken searching and graph plotting (Closes #338301) + * Removed debconf dependencies, ${misc:Depends} takes charge of them. + * Always ask for webserver configuration in postinst. + + -- David Gil Sat, 12 Nov 2005 16:03:02 +0100 + +acidbase (1.2.1-1) unstable; urgency=low + + [ David Gil ] + * New upstream release. + + [ Javier Fernandez-Sanguino Pen~a ] + * SECURITY FIX: + Add proper filtering in all ImportHTTP variables using either the new + functions to check for numeric/alphanumeric chars or the filterSql() + function to prevent SQL injection attacks. This patch fixes CVE-2005-3325 + but also other attack vectors not mentioned in the initial advisory + (http://www.frsirt.com/english/advisories/2005/2188) + (Closes: #336788) + * To reduce the risk of possible vulnerabilities in the code, made the + default apache.conf allow access only from localhost and document this + in the (new) README.Debian file + * Added dependency on "debconf | debconf-2.0" + * Added alternative DNS lookups at Sam Spade + * Changed default alert database in debconf prompt to 'snort_log' + + -- David Gil Mon, 31 Oct 2005 15:41:55 +0100 + +acidbase (1.2-2) unstable; urgency=low + + * SECURITY FIX: + SQL injection vulnerability (CVE-2005-3325) (Closes: #335998) + * Install Apache configuration file if it is not present. + + -- David Gil Sat, 29 Oct 2005 12:19:10 +0200 + +acidbase (1.2-1) unstable; urgency=low + + * New upstream release. + * debian/copyright: Updated fsf's address. + * debian/postinst: Fixed bashism (Used [] && [] instead of [ -a ]). + + -- David Gil Mon, 17 Oct 2005 08:33:44 +0200 + +acidbase (1.1.4-2) unstable; urgency=low + + * Add /usr/share/php to apache configuration so that the + Image_Graph libraries are included too + * Fixed FSF address + * Removed bashism from maintainer script + + -- Javier Fernandez-Sanguino Pen~a Tue, 11 Oct 2005 23:49:58 +0200 + +acidbase (1.1.4-1) unstable; urgency=low + + [ David Gil ] + * Initial release (Closes: #323923, #319389). + * Add an Apache configuration file to Alias /acidbase. + * Package configuration through debconf. + * Modify sources so that they use a configuration file which is + installed at /etc/acidbase/base_conf.php (owned by root, group + www-data and mode 0640 since it contains sensitive information) + + [ Javier Fernandez-Sanguino Pen~a ] + * Applied patches included in the acidlab package that apply to this + package too: + - acidlab.011.diff: Added trim() to GetSingleSignatureReference in + order to avoid problems when signatures contain spaces (this + happens with snortcenter) + - acidlab.008.diff: update Whois servers' IP addresses (was Debian + Bug #183623) + * Fixed location of signatures for Nessus (although the previous link + works) and for ICAT (it is now the NVD - National Vulnerability Database) + + -- David Gil Wed, 24 Aug 2005 17:07:16 +0200 + --- acidbase-1.4.5.orig/debian/watch +++ acidbase-1.4.5/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/secureideas/ base-?_?([\d+\.]+|\d+)\.tar.gz debian uupdate --- acidbase-1.4.5.orig/debian/postinst +++ acidbase-1.4.5/debian/postinst @@ -0,0 +1,72 @@ +#!/bin/sh -e + +# debconf +. /usr/share/debconf/confmodule + +# source dbconfig-common stuff +dbc_dbtypes="mysql, pgsql" +. /usr/share/dbconfig-common/dpkg/postinst +dbc_generate_include="php:/etc/acidbase/database.php" +dbc_generate_include_owner="root:www-data" +dbc_generate_include_perms="0640" +dbc_generate_include_args="--dbname=alert_dbname --dbpass=alert_password --dbuser=alert_user --dbserver=alert_host --dbport=alert_port --dbtype=DBtype" +dbc_go acidbase $@ + +CONF=/etc/acidbase/base_conf.php +[ -f $CONF ] || exit + +case "$1" in + configure) + + # Automatic apache configuration + db_get acidbase/webserver || true + WEBSERVER="$RET" + case "$WEBSERVER" in + Apache) webservers="apache" ;; + Apache2) webservers="apache2" ;; + Apache-SSL) webservers="apache-ssl" ;; + All) webservers="apache apache-ssl apache2" ;; + *) webservers="" ;; + esac + + for apache in $webservers; do + if [ -d "/etc/$apache/conf.d" ] && \ + [ -x "/etc/init.d/$apache" ] && \ + [ ! -e "/etc/$apache/conf.d/acidbase.conf" ] + then + ln -sf /etc/acidbase/apache.conf \ + /etc/$apache/conf.d/acidbase.conf + if [ -f "/var/run/$apache.pid" ]; then + invoke-rc.d $apache reload + fi + fi + done + + ;; + upgrade) + ;; + abort-upgrade|abort-remove|abort-deconfigure) + ;; + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +# Ensure the config file is readable by root.www-data and mode 640 +# since it stores the database password +if [ ! -x /usr/sbin/dpkg-statoverride ] || \ + ! dpkg-statoverride --list $CONF > /dev/null +then + chown root:www-data $CONF + chmod 640 $CONF +fi + + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + --- acidbase-1.4.5.orig/debian/copyright +++ acidbase-1.4.5/debian/copyright @@ -0,0 +1,66 @@ +This package was debianized by David Gil on +Sun, 14 Aug 2005 15:46:41 +0200. + +It was downloaded from http://secureideas.sourceforge.net/ + +Authors: + + Kevin Johnson + The BASE Project Team (see the CREDITS file) + Built upon work by Roman Danyliw , + +Copyright: + + Copyright (C) 2004 Kevin Johnson + Copyright (C) 2004 BASE Project Team + Copyright (C) 2000, 2001, 2002 Carnegie Mellon University + Copyright (C) 2001 Iowa National Guard + +License: + + 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. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + +On Debian systems, the complete text of the GNU General Public +License, version 2, can be found in /usr/share/common-licenses/GPL-2. + + +This distribution also provides 'SnortUnified' (under contrib/SnortUnified/), a +Perl module to make easier the handling of snort unified files. This program is +(c) 2006 Jason Brvenik and is also distributed under the GNU General Public +License. + +This is the license of that module: + +# +# The intellectual property rights in this program are owned by +# Mr. Jason Brvenik. This program may be copied, distributed and/or +# modified only in accordance with the terms and conditions of +# Version 2 of the GNU General Public License (dated June 1991). By +# accessing, using, modifying and/or copying this program, you are +# agreeing to be bound by the terms and conditions of Version 2 of +# the GNU General Public License (dated June 1991). +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the +# Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, +# Boston, MA 02110-1301 USA +# + + --- acidbase-1.4.5.orig/debian/compat +++ acidbase-1.4.5/debian/compat @@ -0,0 +1 @@ +5 --- acidbase-1.4.5.orig/debian/control +++ acidbase-1.4.5/debian/control @@ -0,0 +1,25 @@ +Source: acidbase +Section: web +Priority: optional +Maintainer: Jeremy T. Bouse +Uploaders: Javier Fernandez-Sanguino Pen~a +Build-Depends: debhelper (>= 5.0.0), po-debconf, dpatch +Standards-Version: 3.9.0 +Homepage: http://secureideas.sourceforge.net/ +Vcs-Git: git://git.debian.org/collab-maint/acidbase.git +Vcs-Browser: http://git.debian.org/?p=collab-maint/acidbase.git + +Package: acidbase +Architecture: all +Depends: ${misc:Depends}, dbconfig-common, mysql-client | virtual-mysql-client | postgresql-client, php5, libphp-adodb (>= 4.62), libwww-perl, php-mail, php-mail-mime +Suggests: snort-mysql | snort-pgsql +Description: Basic Analysis and Security Engine + BASE is based on the code from the Analysis Console for Intrusion Databases + (ACID) project. This application provides a web front-end to query and analyze + the alerts coming from a SNORT IDS system. + . + BASE is a web interface to perform analysis of intrusions that snort has + detected on your network. It uses a user authentication and role-base system, + so that you as the security admin can decide what and how much information + each user can see. + --- acidbase-1.4.5.orig/debian/docs +++ acidbase-1.4.5/debian/docs @@ -0,0 +1,6 @@ +docs/base_faq.rtf +docs/CREDITS +docs/README +docs/README.mssql +docs/TODO +docs/UPGRADE --- acidbase-1.4.5.orig/debian/patches/03_fix_warning_in_CleanVariable.dpatch +++ acidbase-1.4.5/debian/patches/03_fix_warning_in_CleanVariable.dpatch @@ -0,0 +1,19 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 03_fix_warning_in_CleanVariable.dpatch by David Gil +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Fixed an ugly warning displayed when the function argument +## DP: '$valid_data' is not set (with E_ALL turned on). + +@DPATCH@ +--- acidbase-1.2.4/includes/base_state_common.inc.php.orig 2006-04-03 16:50:24.000000000 +0200 ++++ acidbase-1.2.4/includes/base_state_common.inc.php 2006-04-03 16:52:38.000000000 +0200 +@@ -181,7 +181,7 @@ + if ( ($valid_data & VAR_SCORE) > 0 ) + $regex_mask = $regex_mask . "\-"; + +- return ereg_replace("[^".$regex_mask."]", "", $item); ++ return $regex_mask? ereg_replace("[^".$regex_mask."]", "", $item) : $item; + } + + /* *********************************************************************** --- acidbase-1.4.5.orig/debian/patches/01_default_config.dpatch +++ acidbase-1.4.5/debian/patches/01_default_config.dpatch @@ -0,0 +1,65 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 01_default_config.dpatch" by David Gil +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Debian modifications to the configuration file. + +@DPATCH@ +--- base-1.3.5.orig/base_conf.php.dist 2007-02-20 01:48:24.000000000 +0000 ++++ base-1.3.5/base_conf.php.dist 2007-03-04 12:30:30.000000000 +0000 +@@ -45,7 +45,7 @@ + But also put the preceding slash. e.g. Your URL is http://127.0.0.1/base + set this to /base + */ +-$BASE_urlpath = ''; ++$BASE_urlpath = '/acidbase'; + + /* Unique BASE ID. The below variable, if set, will append its value to the + * title bar of the browser. This is for people who manage multiple installs +@@ -67,7 +67,7 @@ + * $foo = 'c:\tmp' [OK] + * $foo = 'c:\tmp\' [WRONG] + */ +-$DBlib_path = ''; ++$DBlib_path = '/usr/share/php/adodb'; + + + /* The type of underlying alert database +@@ -77,7 +77,6 @@ + * MS SQL Server : 'mssql' + * Oracle : 'oci8' + */ +-$DBtype = 'mysql'; + + /* Alert DB connection parameters + * - $alert_dbname : MySQL database name of Snort alert DB +@@ -89,11 +88,15 @@ + * This information can be gleaned from the Snort database + * output plugin configuration. + */ +-$alert_dbname = 'snort_log'; +-$alert_host = 'localhost'; +-$alert_port = ''; +-$alert_user = 'snort'; +-$alert_password = 'mypassword'; ++ ++###### Begin of variables configured through dbconfig-common ++ ++require('/etc/acidbase/database.php'); ++# Adjust dbconfig-common names ++if ($DBtype =='pgsql') ++ $DBtype = 'postgres'; ++ ++###### End of variables configured through dbconfig-common + + /* Archive DB connection parameters */ + $archive_exists = 0; # Set this to 1 if you have an archive DB +@@ -373,7 +376,7 @@ + /* + The below line should not be changed! + */ +-$BASE_path = dirname(__FILE__); ++$BASE_path = '/usr/share/acidbase'; + + // _BASE_INC is a variable set to prevent direct access to certain include files.... + define( "_BASE_INC", 1 ); --- acidbase-1.4.5.orig/debian/patches/00list +++ acidbase-1.4.5/debian/patches/00list @@ -0,0 +1,5 @@ +01_default_config.dpatch +02_update_external_links.dpatch +03_fix_warning_in_CleanVariable.dpatch +11_use_trim_to_avoid_signature_problems.dpatch +12_remove_php_image_graph.dpatch --- acidbase-1.4.5.orig/debian/patches/12_remove_php_image_graph.dpatch +++ acidbase-1.4.5/debian/patches/12_remove_php_image_graph.dpatch @@ -0,0 +1,105 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 12_remove_php_image_graph.dpatch by +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Remove php image graph dependancies + +@DPATCH@ +diff -urNad acidbase~/base_graph_common.php acidbase/base_graph_common.php +--- acidbase~/base_graph_common.php 2009-11-27 14:27:39.000000000 -0500 ++++ acidbase/base_graph_common.php 2009-11-27 14:49:34.000000000 -0500 +@@ -55,6 +55,21 @@ + + + ++function FindGraphingLib($libfile) ++{ ++ $found = false; ++ // Will search in Path ++ $paths = explode(PATH_SEPARATOR, ini_get('include_path')); ++ foreach ($paths as $path) { ++ $fullpath = $path . DIRECTORY_SEPARATOR . $libfile; ++ if (file_exists($fullpath)) { ++ $found = true; ++ break; ++ } ++ } ++ return $found; ++} ++ + function VerifyGraphingLib() + { + GLOBAL $debug_mode; +@@ -76,38 +91,33 @@ + + // We have to locate Image/Graph.php -- Alejandro + if (!$fileIncluded) { // Will search in Path +- $found = false; +- $paths = explode(PATH_SEPARATOR, ini_get('include_path')); +- foreach ($paths as $path) { +- $fullpath = $path . DIRECTORY_SEPARATOR . $file; +- if (file_exists($fullpath)) { +- $found = true; +- break; +- } +- } +- +- if ( $found ) { ++ // We have to locate Image/Color.php too -- Javier ++ if ( FindGraphingLib("Image/Graph.php") && FindGraphingLib("Image/Color.php") ) { + // Cool, file was found, so you have Image_Graph installed. -- Alejandro + include_once($file); + return true; + } else { +- // Sorry dude, you haven't finished your home work. -- Alejandro +- echo "

Error loading the Graphing library: ". +- "

Check your Pear::Image_Graph installation!". +- "

    ". +- "
  • Image_Graph can be found here:". +- "at http://pear.veggerby.dk/. Without this ". +- "library no graphing operations can be performed.
    " . +- "
  • Make sure PEAR libraries can be found by php at all:
    " . +- "
    " .
    +-              "pear config-show | grep "PEAR directory"
    " . +- "PEAR directory php_dir /usr/share/pear" . +- "
    " . +- "This path must be part of the include path of php (cf. /etc/php.ini):
    " . +- "
    " .
    +-              "php -i | grep "include_path"
    " . +- "include_path => .:/usr/share/pear:/usr/share/php => .:/usr/share/pear:/usr/share/php" . +- "

    "; ++ // Sorry dude, you haven't finished your home work. -- Alejandro ++ echo "

    Error loading the Graphing libraries: ". ++ "

    You have to manually install Pear::Image_Graph and Pear::Image_Color if you want graphics. ". ++ "In Debian it is not sufficient to install the php-image-graph package ". ++ "since, due to license issues ". ++ "(see Bug #401797 and Bug #402406) ". ++ "the Image_Color functionality is not available and will not be ". ++ "available until the PEAR modules change their license.". ++ "

    A workaround is available: you can install the ". ++ "pear modules manually with: pear install php-image-color and ". ++ "pear install php-image-graph.". ++ "If you do this, however, the modules will not be handled in Debian's ". ++ "package management system.". ++ "

    Image_Graph can be found here:". ++ "at http://pear.veggerby.dk/.". ++ "or at http://pear.php.net/package/Image_Graph/.". ++ "

    Image_Color can be found here:". ++ "at http://pear.php.net/package/Image_Color/.". ++ "

    Without these ". ++ "libraries no graphing operations can be performed."; ++ + $rv = ini_get("safe_mode"); + if ($rv == 1) + { +diff -urNad acidbase~/base_main.php acidbase/base_main.php +--- acidbase~/base_main.php 2009-11-27 14:27:39.000000000 -0500 ++++ acidbase/base_main.php 2009-11-27 14:34:23.000000000 -0500 +@@ -295,7 +295,6 @@ + + +
    +-
    +

    + + --- acidbase-1.4.5.orig/debian/patches/11_use_trim_to_avoid_signature_problems.dpatch +++ acidbase-1.4.5/debian/patches/11_use_trim_to_avoid_signature_problems.dpatch @@ -0,0 +1,20 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 11_use_trim_to_avoid_signature_problems.dpatch by David Gil +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Added trim() to GetSingleSignatureReference in order to avoid +## DP: problems when signatures contain spaces (this happens with snortcenter) + +@DPATCH@ +diff -urNad acidbase~/includes/base_signature.inc.php acidbase/includes/base_signature.inc.php +--- acidbase~/includes/base_signature.inc.php 2009-11-27 14:10:00.000000000 -0500 ++++ acidbase/includes/base_signature.inc.php 2009-11-27 14:13:48.000000000 -0500 +@@ -108,7 +108,7 @@ + + + +- $tmp_ref_system_name = strtolower($ref_system); ++ $tmp_ref_system_name = trim(strtolower($ref_system)); + if ( in_array($tmp_ref_system_name, array_keys($GLOBALS['external_sig_link'])) ) + { + if ($tmp_ref_system_name == "local_rules_dir") --- acidbase-1.4.5.orig/debian/patches/02_update_external_links.dpatch +++ acidbase-1.4.5/debian/patches/02_update_external_links.dpatch @@ -0,0 +1,44 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 02_update_external_links.dpatch by David Gil +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Fixed location of signatures for Nessus (although the previous link +## DP: works) and for ICAT (it is now the NVD - National Vulnerability +## DP: Database) + +@DPATCH@ +diff -urNad acidbase~/base_conf.php.dist acidbase/base_conf.php.dist +--- acidbase~/base_conf.php.dist 2010-07-03 01:41:42.000000000 -0400 ++++ acidbase/base_conf.php.dist 2010-07-03 01:45:45.000000000 -0400 +@@ -357,6 +357,8 @@ + + /* Whois query */ + $external_whois_link = 'http://www.dnsstuff.com/tools/whois.ch?ip='; ++/* Alternative query */ ++// $external_whois_link = 'http://www.samspade.org/t/ipwhois?a='; + + + /* Local whois */ +@@ -385,6 +387,8 @@ + + /* DNS query */ + $external_dns_link = 'http://www.dnsstuff.com/tools/ptr.ch?ip='; ++/* Alternative query */ ++// $external_dns_link = 'http://www.samspade.org/t/dns?a='; + + /* SamSpade 'all' query */ + $external_all_link = 'http://www.whois.sc/'; +@@ -396,11 +400,10 @@ + + /* Signature references */ + $external_sig_link = array('bugtraq' => array('http://www.securityfocus.com/bid/', ''), +- 'snort' => array('http://www.snort.org/search/sid/', ''), ++ 'snort' => array('http://www.snortid.com/snortid.asp?QueryId=', ''), + 'cve' => array('http://cve.mitre.org/cgi-bin/cvename.cgi?name=', ''), +- 'arachnids' => array('http://www.whitehats.com/info/ids', ''), + 'mcafee' => array('http://vil.nai.com/vil/content/v_', '.htm'), +- 'icat' => array('http://icat.nist.gov/icat.cfm?cvename=CAN-', ''), ++ 'icat' => array('http://nvd.nist.gov/nvd.cfm?cvename=CAN-', ''), + 'nessus' => array('http://www.nessus.org/plugins/index.php?view=single&id=', ''), + 'url' => array('http://', ''), + 'local' => array('signatures/', '.txt'), --- acidbase-1.4.5.orig/debian/po/de.po +++ acidbase-1.4.5/debian/po/de.po @@ -0,0 +1,78 @@ +# translation of po-debconf template to German +# Copyright (C) 2007, Matthias Julius +# This file is distributed under the same license as the acidbase package. +# +# Matthias Julius , 2007. +msgid "" +msgstr "" +"Project-Id-Version: acidbase 1.2.7-2\n" +"Report-Msgid-Bugs-To: jbouse@debian.org\n" +"POT-Creation-Date: 2006-09-03 11:24+0200\n" +"PO-Revision-Date: 2007-01-23 22:55-0500\n" +"Last-Translator: Matthias Julius \n" +"Language-Team: German \n" +"Language: de\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: select +#. Choices +#: ../templates:1001 +msgid "All" +msgstr "Alle" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "None" +msgstr "Keine" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "Version(s) of Apache to configure automatically:" +msgstr "Automatische einzurichtende Version(en) von Apache:" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"BASE requires a few things to be set up in your web server configuration." +msgstr "" +"BASE erfordert, dass einige Dinge in Ihrer Webserver-Konfiguration " +"eingerichtet werden." + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"The Debian packaged version can usually automatically configure apache by " +"dropping a symlink into the /etc/APACHE-SERVER/conf.d directory. Select " +"\"None\" if you aren't running apache or you would prefer to set up the web " +"server yourself. If you select a version to configure, all configuration " +"changes will also be removed when the package is purged." +msgstr "" +"Dieses Debian-Paket kann Apache normalerweise automatisch einrichten, indem " +"es einen symbolischen Link in das Verzeichnis /etc/APACHE-SERVER/conf.d " +"platziert. Wählen Sie »Keine«, falls Sie keinen Apache verwenden oder falls " +"Sie es vorziehen, den Webserver selbst einzurichten. Falls Sie eine Version " +"zur Konfiguration auswählen, werden alle Konfigurationsänderungen entfernt, " +"wenn das Paket vollständig gelöscht wird." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "NOTE: Manual configuration required" +msgstr "Hinweis: Manuelle Konfiguration erforderlich" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"You will need to go to http://localhost/acidbase first to force the database " +"modifications for BASE." +msgstr "" +"Sie müssen zuerst http://localhost/acidbase aufrufen, um die " +"Datenbankänderungen für BASE zu erzwingen." --- acidbase-1.4.5.orig/debian/po/fr.po +++ acidbase-1.4.5/debian/po/fr.po @@ -0,0 +1,145 @@ +# Paquet acidbase +# Copyright (C) 2006 +# This file is distributed under the same license as the acidbase package. +# David Gil , 2006 +# +msgid "" +msgstr "" +"Project-Id-Version: acidbase 1.2.2-1\n" +"Report-Msgid-Bugs-To: jbouse@debian.org\n" +"POT-Creation-Date: 2006-09-03 11:24+0200\n" +"PO-Revision-Date: 2006-10-21 09:39+0100\n" +"Last-Translator: Steve Petruzzello \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: French\n" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "All" +msgstr "Tous" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "None" +msgstr "Aucun" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "Version(s) of Apache to configure automatically:" +msgstr "Version(s) d'Apache configurer automatiquement:" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"BASE requires a few things to be set up in your web server configuration." +msgstr "" +"BASE a besoin de certains rglages spcifiques dans le fichier de " +"configuration du serveur web." + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"The Debian packaged version can usually automatically configure apache by " +"dropping a symlink into the /etc/APACHE-SERVER/conf.d directory. Select " +"\"None\" if you aren't running apache or you would prefer to set up the web " +"server yourself. If you select a version to configure, all configuration " +"changes will also be removed when the package is purged." +msgstr "" +"La version de ce paquet permet de configurer automatiquement Apache en " +"crant un lien symbolique dans le rpertoire /etc/APACHE-SERVEUR/conf.d. " +"Veuillez choisir Aucun si vous n'utilisez pas Apache ou si vous prfrez " +"mettre en place le serveur web vous-mme. Si vous choisissez de configurer " +"une version prcise, tous les changements de la configuration seront retirs " +"lors de la purge du paquet." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "NOTE: Manual configuration required" +msgstr "NOTE: intervention manuelle indispensable" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"You will need to go to http://localhost/acidbase first to force the database " +"modifications for BASE." +msgstr "" +"Vous devez d'abord vous rendre sur http://localhost/acidbase afin de forcer " +"les modifications de la base de donnes de BASE." + +#~ msgid "Apache, Apache2, Apache-SSL, All, None" +#~ msgstr "Apache, Apache2, Apache-SSL, Tous, Aucune" + +#~ msgid "" +#~ "Since there is no special Apache2-SSL, 'both' means Apache and Apache-SSL." +#~ msgstr "" +#~ "Puisqu'il n'existe pas de paquet Apache2-SSL, Les deux signifie " +#~ "Apache et Apache-SSL. " + +#~ msgid "Which database would you like to use?" +#~ msgstr "Serveur de bases de donnes utiliser:" + +#~ msgid "" +#~ "BASE supports MySQL, PostgreSQL and MS-SQL to retrieve event alerts from. " +#~ "This will be used for both alert and archive database setting as they " +#~ "both must reside in the same database type." +#~ msgstr "" +#~ "BASE gre la rcupration d'vnements d'alerte depuis MySQL, PostgreSQL " +#~ "et MS-SQL. Cette base sera utilise pour les alertes ainsi que pour les " +#~ "rglages de l'archive de la base de donnes, les deux devant rsider dans " +#~ "le mme type de base de donnes." + +#~ msgid "Alert database name" +#~ msgstr "Nom de la base de donnes d'alerte:" + +#~ msgid "" +#~ "What is the name of your alert database name? This should already have " +#~ "been setup as per snort's configuration documentation." +#~ msgstr "" +#~ "Veuillez indiquer le nom de la base de donnes d'alerte. Cette " +#~ "information devrait dj avoir t fournie comme mentionn dans la " +#~ "documentation de la configuration de snort." + +#~ msgid "Alert database hostname" +#~ msgstr "Nom d'hte du serveur de bases de donnes pour la base d'alerte:" + +#~ msgid "Which host does your alert database reside on?" +#~ msgstr "" +#~ "Veuillez indiquer le nom de l'hte sur lequel rside la base de donnes " +#~ "d'alerte." + +#~ msgid "Alert database port number" +#~ msgstr "Numro de port du serveur de bases de donnes:" + +#~ msgid "" +#~ "What port is your alert database listening on? You do not need to provide " +#~ "this if it is running on a standard port." +#~ msgstr "" +#~ "Veuillez indiquer le port d'coute du serveur de bases de donnes pour la " +#~ "base d'alerte. N'indiquez rien s'il utilise le port standard." + +#~ msgid "Alert database user" +#~ msgstr "Utilisateur de la base de donnes d'alerte:" + +#~ msgid "Which user does BASE need to connect to the alert database as?" +#~ msgstr "" +#~ "Veuillez indiquer l'identifiant qu'utilisera BASE pour se connecter au " +#~ "serveur de bases de donnes." + +#~ msgid "Alert database password" +#~ msgstr "Mot de passe de la base de donnes d'alerte:" + +#~ msgid "What password should be used when connecting to the alert database?" +#~ msgstr "" +#~ "Veuillez indiquer le mot de passe de connexion la base de donnes " +#~ "d'alerte." --- acidbase-1.4.5.orig/debian/po/es.po +++ acidbase-1.4.5/debian/po/es.po @@ -0,0 +1,163 @@ +# acidbase debconf translation to Spanish +# Copyright (C) 2005 Software in the Public Interest +# This file is distributed under the same license as the acidbase package. +# +# Changes: +# - Initial translation +# David Gil , 2005 +# - Revision +# Jaiver Fernandez-Sanguino , 2005 +# +# +# Traductores, si no conoce el formato PO, merece la pena leer la +# documentacin de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Equipo de traduccin al espaol, por favor, lean antes de traducir +# los siguientes documentos: +# +# - El proyecto de traduccin de Debian al espaol +# http://www.debian.org/intl/spanish/coordinacion +# especialmente las notas de traduccin en +# http://www.debian.org/intl/spanish/notas +# +# - La gua de traduccin 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: acidbase debconf 1.2.1-3\n" +"Report-Msgid-Bugs-To: jbouse@debian.org\n" +"POT-Creation-Date: 2006-09-03 11:24+0200\n" +"PO-Revision-Date: 2006-03-05 20:04+0100\n" +"Last-Translator: David Gil \n" +"Language-Team: Debian Spanish \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "All" +msgstr "Todas" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "None" +msgstr "Ninguna" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "Version(s) of Apache to configure automatically:" +msgstr "Versin/es de Apache a configurar automticamente:" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"BASE requires a few things to be set up in your web server configuration." +msgstr "" +"BASE necesita modificar algunas cosas de la configuracin de su servidor web." + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"The Debian packaged version can usually automatically configure apache by " +"dropping a symlink into the /etc/APACHE-SERVER/conf.d directory. Select " +"\"None\" if you aren't running apache or you would prefer to set up the web " +"server yourself. If you select a version to configure, all configuration " +"changes will also be removed when the package is purged." +msgstr "" +"Normalmente, la versin del paquete Debian puede configurar automticamente " +"apache creando un enlace simblico en el directorio /etc/SERVIDOR-APACHE/" +"conf.d. Responda Ninguno si usted no est usando apache o si prefiere " +"configurar el servidor web por usted mismo. Si indica una versin a " +"configurar en respuesta a esta pregunta, se eliminarn los cambios que se " +"realicen cuando se purge el paquete." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "NOTE: Manual configuration required" +msgstr "NOTA: Es necesario actualizar manualmente la configuracin." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"You will need to go to http://localhost/acidbase first to force the database " +"modifications for BASE." +msgstr "" +"Tiene que visitar primero la pgina http://localhost/acidbase para aplicar " +"los cambios a la base de datos de BASE." + +#~ msgid "Apache, Apache2, Apache-SSL, All, None" +#~ msgstr "Apache, Apache2, Apache-SSL, Todos, Ninguno" + +#~ msgid "" +#~ "Since there is no special Apache2-SSL, 'both' means Apache and Apache-SSL." +#~ msgstr "" +#~ "Ya que no existe Apache2-SSL, Ambos se refiere a Apache y Apache-SSL." + +#~ msgid "Which database would you like to use?" +#~ msgstr "Qu base de datos quiere usar?" + +#~ msgid "" +#~ "BASE supports MySQL, PostgreSQL and MS-SQL to retrieve event alerts from. " +#~ "This will be used for both alert and archive database setting as they " +#~ "both must reside in the same database type." +#~ msgstr "" +#~ "BASE puede recuperar eventos de bases de datos MySQL, PostgreSQL y MS-" +#~ "SQL. Se utilizar el tipo que elija tanto para la base de datos de " +#~ "alertas como para la de archivo, ya que ambas deben ser almacenadas en el " +#~ "mismo tipo de base de datos." + +#~ msgid "Alert database name" +#~ msgstr "Nombre de la base de datos de alertas" + +#~ msgid "" +#~ "What is the name of your alert database name? This should already have " +#~ "been setup as per snort's configuration documentation." +#~ msgstr "" +#~ "Cul es el nombre de la base de datos de alertas? Ya debera haber " +#~ "utilizado un nombre al realizar la configuracin de snort." + +#~ msgid "Alert database hostname" +#~ msgstr "Nombre de la mquina de la base de datos de alertas" + +#~ msgid "Which host does your alert database reside on?" +#~ msgstr "En qu mquina reside su base de datos de alertas?" + +#~ msgid "Alert database port number" +#~ msgstr "Nmero de puerto de la base de datos de alertas" + +#~ msgid "" +#~ "What port is your alert database listening on? You do not need to provide " +#~ "this if it is running on a standard port." +#~ msgstr "" +#~ "En qu puerto est escuchando la base de datos de alertas? No necesita " +#~ "configurarlo si su base de datos est escuchando en el puerto habitual." + +#~ msgid "Alert database user" +#~ msgstr "Usuario de la base de datos de alertas" + +#~ msgid "Which user does BASE need to connect to the alert database as?" +#~ msgstr "" +#~ "Qu usuario debe utilizar BASE para conectarse a la base de datos de " +#~ "alertas?" + +#~ msgid "Alert database password" +#~ msgstr "Contrasea de la base de datos de alertas" + +#~ msgid "What password should be used when connecting to the alert database?" +#~ msgstr "" +#~ "Qu contrasea debe utilizarse para conectarse a la base de datos de " +#~ "alertas?" --- acidbase-1.4.5.orig/debian/po/sv.po +++ acidbase-1.4.5/debian/po/sv.po @@ -0,0 +1,134 @@ +# Swedish translation of acidbase debconf template +# Copyright (C) 2006 Free Software Foundation, Inc. +# This file is distributed under the same license as the acidbase package. +# Daniel Nylander , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: acidbase 1.2.5-1\n" +"Report-Msgid-Bugs-To: jbouse@debian.org\n" +"POT-Creation-Date: 2006-09-03 11:24+0200\n" +"PO-Revision-Date: 2008-07-24 11:55+0100\n" +"Last-Translator: Martin Bagge \n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "All" +msgstr "Alla" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "None" +msgstr "Inga" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "Version(s) of Apache to configure automatically:" +msgstr "Version(er) av Apache som du vill konfigurera automatiskt:" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"BASE requires a few things to be set up in your web server configuration." +msgstr "" +"BASE krver att ett ftal saker stlls in i din webbserverkonfiguration." + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"The Debian packaged version can usually automatically configure apache by " +"dropping a symlink into the /etc/APACHE-SERVER/conf.d directory. Select " +"\"None\" if you aren't running apache or you would prefer to set up the web " +"server yourself. If you select a version to configure, all configuration " +"changes will also be removed when the package is purged." +msgstr "" +"Den paketerade Debianversionen kan normalt sett konfigurera Apache " +"automatiskt genom att slppa en symbolisk lnk i katalogen /etc/APACHE-" +"SERVER/conf.d. Vlj \"Ingen\" om du inte kr Apache eller om du fredrar att " +"stlla in webbservern p egen hand. Om du vljer en version att konfigurera, " +"kommer alla konfigurationsndringar ocks att tas bort nr paketet tas bort." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "NOTE: Manual configuration required" +msgstr "NOTERA: Manuell konfiguration krvs" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"You will need to go to http://localhost/acidbase first to force the database " +"modifications for BASE." +msgstr "" +"Du behver frst g till http://localhost/acidbase fr att tvinga igenom " +"databasndringarna fr BASE." + +#~ msgid "Apache, Apache2, Apache-SSL, All, None" +#~ msgstr "Apache, Apache2, Apache-SSL, Alla, Ingen" + +#~ msgid "" +#~ "Since there is no special Apache2-SSL, 'both' means Apache and Apache-SSL." +#~ msgstr "" +#~ "Eftersom det inte finns ngon speciell Apache2-SSL, betyder \"bda\" " +#~ "Apache och Apache-SSL." + +#~ msgid "Which database would you like to use?" +#~ msgstr "Vilken databas vill du anvnda?" + +#~ msgid "" +#~ "BASE supports MySQL, PostgreSQL and MS-SQL to retrieve event alerts from. " +#~ "This will be used for both alert and archive database setting as they " +#~ "both must reside in the same database type." +#~ msgstr "" +#~ "BASE har std fr MySQL, PostgreSQL och MS-SQL fr att hmta hndelselarm " +#~ "frn. Denna kommer att anvndas fr bde larm och arkivera " +#~ "databasinstllningar eftersom de bda mste finns i samma databastyp." + +#~ msgid "Alert database name" +#~ msgstr "Namn p larmdatabas" + +#~ msgid "" +#~ "What is the name of your alert database name? This should already have " +#~ "been setup as per snort's configuration documentation." +#~ msgstr "" +#~ "Vad r namnet p din larmdatabas? Detta br redan vara instllt enligt " +#~ "dokumentationen fr snorts konfiguration." + +#~ msgid "Alert database hostname" +#~ msgstr "Vrdnamnet fr larmdatabasen" + +#~ msgid "Which host does your alert database reside on?" +#~ msgstr "P vilken vrd finns din larmdatabas p?" + +#~ msgid "Alert database port number" +#~ msgstr "Portnummer fr larmdatabas" + +#~ msgid "" +#~ "What port is your alert database listening on? You do not need to provide " +#~ "this if it is running on a standard port." +#~ msgstr "" +#~ "Vilken port lyssnar din larmdatabas p? Du behver inte ange detta om den " +#~ "krs p en standardport." + +#~ msgid "Alert database user" +#~ msgstr "Anvndare fr larmdatabas" + +#~ msgid "Which user does BASE need to connect to the alert database as?" +#~ msgstr "Vilken anvndare behver BASE ansluta som till larmdatabasen?" + +#~ msgid "Alert database password" +#~ msgstr "Lsenord fr larmdatabas" + +#~ msgid "What password should be used when connecting to the alert database?" +#~ msgstr "Vilket lsenord ska anvndas vid anslutning mot larmdatabasen?" --- acidbase-1.4.5.orig/debian/po/templates.pot +++ acidbase-1.4.5/debian/po/templates.pot @@ -0,0 +1,67 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: jbouse@debian.org\n" +"POT-Creation-Date: 2006-09-03 11:24+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=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "All" +msgstr "" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "None" +msgstr "" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "Version(s) of Apache to configure automatically:" +msgstr "" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"BASE requires a few things to be set up in your web server configuration." +msgstr "" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"The Debian packaged version can usually automatically configure apache by " +"dropping a symlink into the /etc/APACHE-SERVER/conf.d directory. Select " +"\"None\" if you aren't running apache or you would prefer to set up the web " +"server yourself. If you select a version to configure, all configuration " +"changes will also be removed when the package is purged." +msgstr "" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "NOTE: Manual configuration required" +msgstr "" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"You will need to go to http://localhost/acidbase first to force the database " +"modifications for BASE." +msgstr "" --- acidbase-1.4.5.orig/debian/po/nb.po +++ acidbase-1.4.5/debian/po/nb.po @@ -0,0 +1,75 @@ +# translation of acidbase_1.2.7-3_templates.po to Norwegian Bokmål +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Bjørn Steensrud , 2007. +msgid "" +msgstr "" +"Project-Id-Version: acidbase_1.2.7-3_templates\n" +"Report-Msgid-Bugs-To: jbouse@debian.org\n" +"POT-Creation-Date: 2006-09-03 11:24+0200\n" +"PO-Revision-Date: 2007-01-29 22:07+0100\n" +"Last-Translator: Bjørn Steensrud \n" +"Language-Team: Norwegian Bokmål \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.2\n" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "All" +msgstr "Alle" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "None" +msgstr "Ingen" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "Version(s) of Apache to configure automatically:" +msgstr "Versjon(er) av Apache som skal settes opp automatisk:" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"BASE requires a few things to be set up in your web server configuration." +msgstr "BASE trenger noen innstillinger i oppsettet til nett-tjeneren." + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"The Debian packaged version can usually automatically configure apache by " +"dropping a symlink into the /etc/APACHE-SERVER/conf.d directory. Select " +"\"None\" if you aren't running apache or you would prefer to set up the web " +"server yourself. If you select a version to configure, all configuration " +"changes will also be removed when the package is purged." +msgstr "" +"Versjonen som er pakket i Debian kan som regel sette opp apache ved å " +"plassere en symbolsk lenke i mappa /etc/APACHE-SERVER/conf.d- Velg «Ingen» " +"hvis du ikke kjører apache eller foretrekker å sette opp nett-tjeneren selv. " +"Hvis du velger en versjon som skal settes opp, så blir alle endringer i " +"oppsettet også fjernet når pakka fjernes." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "NOTE: Manual configuration required" +msgstr "MERK: Manuelt oppsett nødvendig" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"You will need to go to http://localhost/acidbase first to force the database " +"modifications for BASE." +msgstr "" +"Du vil måtte gå til http://localhost/acidbase først for å tvinge fram " +"database-endringene for BASE." --- acidbase-1.4.5.orig/debian/po/cs.po +++ acidbase-1.4.5/debian/po/cs.po @@ -0,0 +1,126 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: acidbase\n" +"Report-Msgid-Bugs-To: jbouse@debian.org\n" +"POT-Creation-Date: 2006-09-03 11:24+0200\n" +"PO-Revision-Date: 2007-01-27 15:11+0100\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "All" +msgstr "Všechny" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "None" +msgstr "Žádné" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "Version(s) of Apache to configure automatically:" +msgstr "Verze Apache, které se mají nastavit automaticky:" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"BASE requires a few things to be set up in your web server configuration." +msgstr "" +"BASE vyžaduje nastavení několika parametrů v konfiguraci vašeho webového " +"serveru." + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"The Debian packaged version can usually automatically configure apache by " +"dropping a symlink into the /etc/APACHE-SERVER/conf.d directory. Select " +"\"None\" if you aren't running apache or you would prefer to set up the web " +"server yourself. If you select a version to configure, all configuration " +"changes will also be removed when the package is purged." +msgstr "" +"Verze zabalená v Debianu umí automaticky nastavit varianty Apache tak, že do " +"adresáře /etc/KONKRETNI-APACHE-SERVER/conf.d přidá symbolický odkaz. Pokud " +"nepoužíváte Apache, nebo pokud chcete webový server nastavit ručně, zvolte " +"\"Žádné\". Zvolíte-li nastavení některé z verzí, veškeré změny, které se " +"nyní provedou, budou zase při vyčištění balíku vráceny zpět." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "NOTE: Manual configuration required" +msgstr "Poznámka: vyžadováno ruční nastavení" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"You will need to go to http://localhost/acidbase first to force the database " +"modifications for BASE." +msgstr "" +"Abyste vynutili změny v databázi BASE, musíte nejprve navštívit http://" +"localhost/acidbase." + +#~ msgid "Which database would you like to use?" +#~ msgstr "Kterou databázi chcete použít?" + +#~ msgid "" +#~ "BASE supports MySQL, PostgreSQL and MS-SQL to retrieve event alerts from. " +#~ "This will be used for both alert and archive database setting as they " +#~ "both must reside in the same database type." +#~ msgstr "" +#~ "BASE umí získávat výstražné události z databází MySQL, PostgreSQL a MS-" +#~ "SQL. Toto se použije jak pro nastavení archivu, tak pro události, protože " +#~ "oboje musí být uloženo v databázi stejného typu." + +#~ msgid "Alert database name" +#~ msgstr "Jméno databáze s výstrahami" + +#~ msgid "" +#~ "What is the name of your alert database name? This should already have " +#~ "been setup as per snort's configuration documentation." +#~ msgstr "" +#~ "Jaké je jméno databáze s výstrahami? Ta by již měla být nastavena dle " +#~ "dokumentace k nástroji snort." + +#~ msgid "Alert database hostname" +#~ msgstr "Jméno počítače s databází výstrah" + +#~ msgid "Which host does your alert database reside on?" +#~ msgstr "Na kterém počítači je umístěna vaše databáze s výstrahami?" + +#~ msgid "Alert database port number" +#~ msgstr "Číslo portu databáze výstrah" + +#~ msgid "" +#~ "What port is your alert database listening on? You do not need to provide " +#~ "this if it is running on a standard port." +#~ msgstr "" +#~ "Na kterém portu naslouchá vaše databáze s výstrahami? Pokud běží na " +#~ "standardním portu, nemusíte zadávat nic." + +#~ msgid "Alert database user" +#~ msgstr "Uživatel databáze výstrah" + +#~ msgid "Which user does BASE need to connect to the alert database as?" +#~ msgstr "Pod jakým uživatelem se má BASE připojovat k databázi výstrah?" + +#~ msgid "Alert database password" +#~ msgstr "Heslo k databázi výstrah" + +#~ msgid "What password should be used when connecting to the alert database?" +#~ msgstr "Jaké heslo se má používat pro připojení k databázi s výstrahami?" --- acidbase-1.4.5.orig/debian/po/fi.po +++ acidbase-1.4.5/debian/po/fi.po @@ -0,0 +1,75 @@ +# Copyright (C) 2009 +# This file is distributed under the same license as the acidbase package. +# +# Esko Arajärvi , 2009. +msgid "" +msgstr "" +"Project-Id-Version: acidbase\n" +"Report-Msgid-Bugs-To: jbouse@debian.org\n" +"POT-Creation-Date: 2006-09-03 11:24+0200\n" +"PO-Revision-Date: 2009-06-29 23:07+0300\n" +"Last-Translator: Esko Arajärvi \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 0.3\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "All" +msgstr "Kaikki" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "None" +msgstr "Ei mitään" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "Version(s) of Apache to configure automatically:" +msgstr "Apachen versiot, joiden asetuksia muokataan automaattisesti:" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"BASE requires a few things to be set up in your web server configuration." +msgstr "BASE vaatii joitain asetuksia WWW-palvelimen asetuksiin." + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"The Debian packaged version can usually automatically configure apache by " +"dropping a symlink into the /etc/APACHE-SERVER/conf.d directory. Select " +"\"None\" if you aren't running apache or you would prefer to set up the web " +"server yourself. If you select a version to configure, all configuration " +"changes will also be removed when the package is purged." +msgstr "" +"Nämä asetukset voidaan yleensä tehdä Apacheen automaattisesti lisäämällä " +"symbolinen linki hakemistoon /etc//conf.d. Valitse ”Ei " +"mitään\", jos et käytä Apachea tai haluat tehdä asetukset käsin. Jos " +"valitset jonkin version muokattavaksi, kaikki muokkaukset myös poistetaan, " +"kun paketti siivotaan." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "NOTE: Manual configuration required" +msgstr "Asetuksia täytyy muokata käsin" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"You will need to go to http://localhost/acidbase first to force the database " +"modifications for BASE." +msgstr "" +"BASEn tietokantaan täytyy pakottaa muutoksia osoitteen http://localhost/" +"acidbase kautta ennen käyttöä." --- acidbase-1.4.5.orig/debian/po/nl.po +++ acidbase-1.4.5/debian/po/nl.po @@ -0,0 +1,75 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: acidbase\n" +"Report-Msgid-Bugs-To: jbouse@debian.org\n" +"POT-Creation-Date: 2006-09-03 11:24+0200\n" +"PO-Revision-Date: 2007-05-18 15:36+0100\n" +"Last-Translator: Bart Cornelis \n" +"Language-Team: debian-l10n-dutch \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Dutch\n" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "All" +msgstr "Alle" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "None" +msgstr "Geen" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "Version(s) of Apache to configure automatically:" +msgstr "Automatisch te configureren versie(s) van Apache:" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"BASE requires a few things to be set up in your web server configuration." +msgstr "BASE vereist bepaalde instellingen in uw webserverconfiguratie." + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"The Debian packaged version can usually automatically configure apache by " +"dropping a symlink into the /etc/APACHE-SERVER/conf.d directory. Select " +"\"None\" if you aren't running apache or you would prefer to set up the web " +"server yourself. If you select a version to configure, all configuration " +"changes will also be removed when the package is purged." +msgstr "" +"Dit Debian-pakket kan de apache-configuratie gewoonlijk automatisch " +"aanpassen door een symbolische link in de map '/etc/APACHE-SERVER/conf.d' te " +"plaatsen. Als u geen apache draait of verkiest de webserver handmatig in te " +"stellen kies dan 'Geen'. Als u een apache-versie laat configureren worden " +"alle configuratie-aanpassingen verwijderd wanneer dit pakket gewist wordt." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "NOTE: Manual configuration required" +msgstr "OPGELET: Handmatige configuratie is vereist" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"You will need to go to http://localhost/acidbase first to force the database " +"modifications for BASE." +msgstr "" +"Om de database-aanpassingen voor BASE door te voeren dient u naar http://" +"localhost/acidbase te gaan." --- acidbase-1.4.5.orig/debian/po/ru.po +++ acidbase-1.4.5/debian/po/ru.po @@ -0,0 +1,88 @@ +# translation of 1.po to Russian +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Yuri Kozlov , 2007. +msgid "" +msgstr "" +"Project-Id-Version: 0.9.6b20-16\n" +"Report-Msgid-Bugs-To: jbouse@debian.org\n" +"POT-Creation-Date: 2006-09-03 11:24+0200\n" +"PO-Revision-Date: 2007-01-23 21:59+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\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: select +#. Choices +#: ../templates:1001 +msgid "All" +msgstr "Все" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "None" +msgstr "Ни одного" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "Version(s) of Apache to configure automatically:" +msgstr "Версия(и) Apache, который нужно настроить автоматически:" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"BASE requires a few things to be set up in your web server configuration." +msgstr "" +"Для BASE требуется несколько вещей, которые нужно настроить в конфигурации " +"веб-сервера." + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"The Debian packaged version can usually automatically configure apache by " +"dropping a symlink into the /etc/APACHE-SERVER/conf.d directory. Select " +"\"None\" if you aren't running apache or you would prefer to set up the web " +"server yourself. If you select a version to configure, all configuration " +"changes will also be removed when the package is purged." +msgstr "" +"При настройке пакета в Debian может выполнить автоматическое " +"конфигурирование apache с помощью создания символической ссылки в каталоге /" +"etc/APACHE-SERVER/conf.d. Выберите \"Ни одного\", если вы не запускаете " +"apache или хотите настроить веб-сервер самостоятельно. Если вы выберете " +"настройку в определённой версии, то все изменения в конфигурации будут также " +"автоматически удалены при вычистке пакета." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "NOTE: Manual configuration required" +msgstr "ЗАМЕЧАНИЕ: Требуется ручная настройка" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"You will need to go to http://localhost/acidbase first to force the database " +"modifications for BASE." +msgstr "" +"Сначала вам нужно открыть страницу http://localhost/acidbase, чтобы " +"запустились изменения BASE." --- acidbase-1.4.5.orig/debian/po/POTFILES.in +++ acidbase-1.4.5/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] templates --- acidbase-1.4.5.orig/debian/po/pt.po +++ acidbase-1.4.5/debian/po/pt.po @@ -0,0 +1,140 @@ +# Portuguese translation of acidbase. +# Copyright (C) 2007 acidbase COPYRIGHT HOLDER +# This file is distributed under the same license as the acidbase package. +# Carlos Lisboa , 2007. +# +# +msgid "" +msgstr "" +"Project-Id-Version: acidbase 1.2.1-4\n" +"Report-Msgid-Bugs-To: jbouse@debian.org\n" +"POT-Creation-Date: 2006-09-03 11:24+0200\n" +"PO-Revision-Date: 2007-01-31 16:06+0000\n" +"Last-Translator: Carlos Lisboa \n" +"Language-Team: Portuguese \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "All" +msgstr "Todos" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "None" +msgstr "Nenhum" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "Version(s) of Apache to configure automatically:" +msgstr "Versões do Apache que devem ser configuradas automaticamente:" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"BASE requires a few things to be set up in your web server configuration." +msgstr "" +"A BASE requer que sejam configurados alguns aspectos na configuração do " +"servidor web." + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"The Debian packaged version can usually automatically configure apache by " +"dropping a symlink into the /etc/APACHE-SERVER/conf.d directory. Select " +"\"None\" if you aren't running apache or you would prefer to set up the web " +"server yourself. If you select a version to configure, all configuration " +"changes will also be removed when the package is purged." +msgstr "" +"A versão Debian deste pacote normalmente pode configurar de forma automática " +"o apache deixando um 'symlink' no directório /etc/APACHE-SERVER/conf.d. " +"Seleccione \"Nenhum\" se não estiver a correr o apache ou se preferir " +"configurar o servidor por si. Se seleccionou uma versão para configurar, " +"todas as configurações serão removidas quando o pacote for purgado." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "NOTE: Manual configuration required" +msgstr "NOTA: É necessária configuração manual" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"You will need to go to http://localhost/acidbase first to force the database " +"modifications for BASE." +msgstr "" +"Primeiro deverá ir a http://localhost/acidbase para forçar as alterações na " +"base de dadpara BASE." + +#, fuzzy +#~ msgid "Apache, Apache2, Apache-SSL, All, None" +#~ msgstr "Apache, Apache2, Apache-SSL, Ambos, Todos, Nenhum" + +#~ msgid "" +#~ "Since there is no special Apache2-SSL, 'both' means Apache and Apache-SSL." +#~ msgstr "" +#~ "Como não existe um Apache2-SSL, 'ambos' significa Apache e Apache-SSL." + +#~ msgid "Which database would you like to use?" +#~ msgstr "Qual a base de dados que pretende usar?" + +#~ msgid "" +#~ "BASE supports MySQL, PostgreSQL and MS-SQL to retrieve event alerts from. " +#~ "This will be used for both alert and archive database setting as they " +#~ "both must reside in the same database type." +#~ msgstr "" +#~ "A BASE suporta MySQL, PostgreSQL e MS-SQL para obter eventos de alertas. " +#~ "Será usado quer para alertas como para arquivar configurações da base de " +#~ "dados, uma vez que é necessário que residam no mesmo tipo de base de " +#~ "dados." + +#~ msgid "Alert database name" +#~ msgstr "Nome da base de dados de alertas" + +#~ msgid "" +#~ "What is the name of your alert database name? This should already have " +#~ "been setup as per snort's configuration documentation." +#~ msgstr "" +#~ "Qual o nome da sua base de dados de alertas? Isto deveria ter sido já " +#~ "configurado tal como mencionado na documentação da configuração do snort." + +#~ msgid "Alert database hostname" +#~ msgstr "Nome do computador da base de dados de alertas" + +#~ msgid "Which host does your alert database reside on?" +#~ msgstr "Qual o computador onde reside a base de dados de alertas?" + +#~ msgid "Alert database port number" +#~ msgstr "Porto da base de dados de alertas" + +#~ msgid "" +#~ "What port is your alert database listening on? You do not need to provide " +#~ "this if it is running on a standard port." +#~ msgstr "" +#~ "Qual o porto em que a base de dados de alertas se encontra á escuta? Não " +#~ "necessita indicar se se encontra num porto standard." + +#~ msgid "Alert database user" +#~ msgstr "Utilizador da base de dados de alertas" + +#~ msgid "Which user does BASE need to connect to the alert database as?" +#~ msgstr "" +#~ "Qual o utilizador com que a BASE deverá usar para ligar á base de dados " +#~ "de alertas?" + +#~ msgid "Alert database password" +#~ msgstr "Password da base de dados de alertas" + +#~ msgid "What password should be used when connecting to the alert database?" +#~ msgstr "" +#~ "Qual a password que deve ser usada para ligar à base de dados de alertas?" --- acidbase-1.4.5.orig/debian/po/ja.po +++ acidbase-1.4.5/debian/po/ja.po @@ -0,0 +1,73 @@ +# Copyright (C) 2009 David Gil +# This file is distributed under the same license as acidbase package. +# Hideki Yamane (Debian-JP) , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: acidbase 1.3.9-2\n" +"Report-Msgid-Bugs-To: jbouse@debian.org\n" +"POT-Creation-Date: 2006-09-03 11:24+0200\n" +"PO-Revision-Date: 2009-11-07 14:26+0900\n" +"Last-Translator: Hideki Yamane (Debian-JP) \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "All" +msgstr "すべて" + +#. Type: select +#. Choices +#: ../templates:1001 +msgid "None" +msgstr "どれでもない" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "Version(s) of Apache to configure automatically:" +msgstr "自動的に設定する Apache のバージョン:" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"BASE requires a few things to be set up in your web server configuration." +msgstr "BASE は、ウェブサーバの設定を少し変更する必要があります。" + +#. Type: select +#. Description +#: ../templates:1002 +msgid "" +"The Debian packaged version can usually automatically configure apache by " +"dropping a symlink into the /etc/APACHE-SERVER/conf.d directory. Select " +"\"None\" if you aren't running apache or you would prefer to set up the web " +"server yourself. If you select a version to configure, all configuration " +"changes will also be removed when the package is purged." +msgstr "" +"Debian パッケージになったバージョンでは、/etc/APACHE-SERVER/conf.d ディレクト" +"リへのシンボリックリンクを削除することで、通常自動的に apache を設定できま" +"す。apache を動作させていない、あるいはウェブサーバを自分で設定したい場合は" +"「どれでもない」を選んでください。設定するバージョンを選んだ場合は、全ての設" +"定変更は、パッケージが完全に削除 (purge) された場合に同時に削除されます。" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "NOTE: Manual configuration required" +msgstr "注意: 手動での設定が必要です" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"You will need to go to http://localhost/acidbase first to force the database " +"modifications for BASE." +msgstr "" +"BASE のためにデータベースの変更を実施するため、まずは http://localhost/" +"acidbase にアクセスする必要があります。"