Skip to content
Snippets Groups Projects
Commit a7a7d654 authored by Tomáš Plesník's avatar Tomáš Plesník
Browse files

uprava popisku pro warden-server-2.1

parent 4c8d456f
No related branches found
No related tags found
No related merge requests found
...@@ -13,38 +13,38 @@ $BASEDIR = '/opt/warden-server'; ...@@ -13,38 +13,38 @@ $BASEDIR = '/opt/warden-server';
$SYSLOG = 1; $SYSLOG = 1;
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# SYSLOG - enable/disable syslog logging in verbose mode (with stack information) # SYSLOG_VERBOSE - enable/disable logging in verbose mode (stack info added)
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$SYSLOG_VERBOSE = 1; $SYSLOG_VERBOSE = 1;
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# SYSLOG - syslog facility # SYSLOG_FACILITY - syslog facility
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$SYSLOG_FACILITY = 'local7'; $SYSLOG_FACILITY = 'local7';
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# DB_NAME - database name of Warden server # DB_NAME - MySQL database name of Warden server
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$DB_NAME = 'warden'; $DB_NAME = 'warden';
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# DB_USER - user of Warden server database # DB_USER - MySQL database user of Warden server
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$DB_USER = 'root'; $DB_USER = 'root';
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# DB_PASS - password of Warden server database # DB_PASS - MySQL database password of Warden server
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$DB_PASS = ''; $DB_PASS = '';
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# DB_HOST - what IP address to listen on of Warden server # DB_HOST - MySQL database host
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$DB_HOST = 'localhost'; $DB_HOST = 'localhost';
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# MAX_EVENTS_LIMIT - maximum number of events that can be downloaded from # MAX_EVENTS_LIMIT - server limit of maximum number of events that can be
# Warden server in a single getNewEvents client function call # delivered to one client in one batch
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$MAX_EVENTS_LIMIT = '1000000'; $MAX_EVENTS_LIMIT = '1000000';
...@@ -52,6 +52,6 @@ $MAX_EVENTS_LIMIT = '1000000'; ...@@ -52,6 +52,6 @@ $MAX_EVENTS_LIMIT = '1000000';
# VALID_STRINGS - validation hash containing allowed event attributes # VALID_STRINGS - validation hash containing allowed event attributes
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
%VALID_STRINGS = ( %VALID_STRINGS = (
'type' => ['portscan', 'bruteforce', 'probe', 'spam', 'phishing', 'botnet_c_c', 'dos', 'malware', 'copyright', 'webattack', 'test', 'other'], 'type' => ['portscan', 'bruteforce', 'probe', 'spam', 'phishing', 'botnet_c_c', 'dos', 'malware', 'copyright', 'webattack', 'test', 'other'],
'source_type' => ['IP', 'URL', 'Reply-To:'] 'source_type' => ['IP', 'URL', 'Reply-To:']
); );
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment