diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2004-04-20 09:50:54 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2004-04-20 09:50:54 +0000 |
commit | ceb177290d7851fc024f159fb0122988199f0bcb (patch) | |
tree | e4ed3c105695ad8973b295bfed163e8a6f4e3ec7 /databases/acid/patches | |
parent | 1c586ab1bff588b9a1c7a9b04edebdda147fbb45 (diff) | |
download | pkgsrc-ceb177290d7851fc024f159fb0122988199f0bcb.tar.gz |
Initial import of acid-0.9.6b23, from pkgsrc-wip packaged by Adrian
Portelli, with minor changes by me.
The Analysis Console for Intrusion Databases (ACID) is a PHP-based analysis
engine to search and process a database of security events generated by
various IDSes, firewalls, and network monitoring tools.
ACID has the ability to analyze a wide variety of events which are
post-processed into its database. Tools exist for the following formats:
- Snort
- logsnorter
Diffstat (limited to 'databases/acid/patches')
-rw-r--r-- | databases/acid/patches/patch-aa | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/databases/acid/patches/patch-aa b/databases/acid/patches/patch-aa new file mode 100644 index 00000000000..f95c63ea2a6 --- /dev/null +++ b/databases/acid/patches/patch-aa @@ -0,0 +1,35 @@ +$NetBSD: patch-aa,v 1.1.1.1 2004/04/20 09:50:55 xtraeme Exp $ + +--- acid_conf.php.orig Thu Jan 9 01:04:07 2003 ++++ acid_conf.php Tue Jul 8 12:33:30 2003 +@@ -9,7 +9,7 @@ + * $foo = "c:\tmp" [OK] + * $foo = "c:\tmp\" [WRONG] + */ +-$DBlib_path = ""; ++$DBlib_path = "@PREFIX@/share/adodb"; + + /* The type of underlying alert database + * +@@ -17,7 +17,7 @@ + * PostgresSQL : "postgres" + * MS SQL Server : "mssql" + */ +-$DBtype = "mysql"; ++$DBtype = "@DBTYPE@"; + + /* Alert DB connection parameters + * - $alert_dbname : MySQL database name of Snort alert DB +@@ -66,10 +66,10 @@ + /* Path to the graphing library + * (Note: DO NOT include a trailing backslash after the directory) + */ +-$ChartLib_path = ""; ++$ChartLib_path = "@PREFIX@/share/php-jpgraph"; + + /* File format of charts ('png', 'jpeg', 'gif') */ +-$chart_file_format = "png"; ++$chart_file_format = "jpeg"; + + /* Chart default colors - (red, green, blue) + * - $chart_bg_color_default : background color of chart |