mirror of
https://github.com/BlackLight/Snort_AIPreproc.git
synced 2024-11-27 22:25:12 +01:00
ChangeLog and README updated
This commit is contained in:
parent
27fb544fd5
commit
b2ac185671
2 changed files with 15 additions and 5 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
2010-14-09 Fabio "BlackLight" Manganiello <blacklight@autistici.org>
|
||||||
|
* postgresql.c, db.h, db.c: PostgreSQL support added (EXPERIMENTAL)
|
||||||
|
|
||||||
2010-16-09 Simone "evilsocket" Margaritelli <evilsocket@gmail.com>
|
2010-16-09 Simone "evilsocket" Margaritelli <evilsocket@gmail.com>
|
||||||
* all: Support for MacOS
|
* all: Support for MacOS
|
||||||
* regex.c: Support for regex caching
|
* regex.c: Support for regex caching
|
||||||
|
|
17
README
17
README
|
@ -113,6 +113,12 @@ default (if not specified otherwise, the module will read the alerts from Snort
|
||||||
--with-mysql to ./configure. On a Debian-based system you may need to install
|
--with-mysql to ./configure. On a Debian-based system you may need to install
|
||||||
libmysqlclient-dev.
|
libmysqlclient-dev.
|
||||||
|
|
||||||
|
- libpq (OPTIONAL), used if you want to read alerts information saved on
|
||||||
|
PostgreSQL DBMS, or enable PostgreSQL support in the module. This option is
|
||||||
|
disabled by the default, and can be enabled by specifying the option
|
||||||
|
--with-postgresql to ./configure. On a Debian-based system you may need to
|
||||||
|
install libpq-dev.
|
||||||
|
|
||||||
|
|
||||||
=====================
|
=====================
|
||||||
3.2 Configure options
|
3.2 Configure options
|
||||||
|
@ -123,6 +129,8 @@ You can pass the following options to ./configure script before compiling:
|
||||||
--with-mysql - Enables MySQL DBMS support into the module (it requires
|
--with-mysql - Enables MySQL DBMS support into the module (it requires
|
||||||
libmysqlclient)
|
libmysqlclient)
|
||||||
|
|
||||||
|
--with-pq - Enables PostgreSQL DBMS support into the module (it requires libpq)
|
||||||
|
|
||||||
--without-graphviz - Disables Graphviz support from the module, avoiding the
|
--without-graphviz - Disables Graphviz support from the module, avoiding the
|
||||||
generation of PNG or PS files representing hyperalerts correlation as well
|
generation of PNG or PS files representing hyperalerts correlation as well
|
||||||
|
|
||||||
|
@ -201,7 +209,7 @@ lead to an empty correlation graph
|
||||||
- database: If Snort saves its alerts to a database and the module was compiled
|
- database: If Snort saves its alerts to a database and the module was compiled
|
||||||
with database support (e.g. --with-mysql) this option specifies the
|
with database support (e.g. --with-mysql) this option specifies the
|
||||||
information for accessing that database. The fields in side are
|
information for accessing that database. The fields in side are
|
||||||
-- type: DBMS to be used (so far only MySQL is supported)
|
-- type: DBMS to be used (so far MySQL and PostgreSQL are supported)
|
||||||
-- name: Database name
|
-- name: Database name
|
||||||
-- user: Username for accessing the database
|
-- user: Username for accessing the database
|
||||||
-- password: Password for accessing the database
|
-- password: Password for accessing the database
|
||||||
|
@ -294,8 +302,7 @@ hyperalerts, provided that it respects this constraint.
|
||||||
6. Additional documentation
|
6. Additional documentation
|
||||||
===========================
|
===========================
|
||||||
|
|
||||||
|
The additional documentation over the code, functions and data structures can
|
||||||
The additional doxygen-generated documentation over the code, functions and
|
be automatically generated by Doxygen by typing `make doc', and installed in
|
||||||
structures can be found in doc/ directory of source code or in SNORT_DIR/doc
|
SNORT_DIR/doc then typing `make doc-install'.
|
||||||
after installation.
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue