00ae2c0b89
engine to search and process a database of security events generated by various IDSes, firewalls, and network monitoring tools. The features currently include: o Query-builder and search interface for finding alerts matching on alert meta information (e.g. signature, detection time) as well as the underlying network evidence (e.g. source/destination address, ports, payload, or flags). o Packet viewer (decoder) will graphically display the layer-3 and layer-4 packet information of logged alerts o Alert management by providing constructs to logically group alerts to create incidents (alert groups), deleting the handled alerts or false positives, exporting to email for collaboration, or archiving of alerts to transfer them between alert databases. o Chart and statistic generation based on time, sensor, signature, protocol, IP address, TCP/UDP ports, or classification
28 lines
533 B
Text
28 lines
533 B
Text
# $NetBSD: base.conf,v 1.1.1.1 2006/01/03 21:09:44 adrianp Exp $
|
|
#
|
|
# BASE configuration file fragment for Apache
|
|
|
|
<IfModule mod_alias.c>
|
|
Alias /base/ "@BASE_DIR@/"
|
|
</IfModule>
|
|
|
|
<Directory "@BASE_DIR@">
|
|
Options Indexes
|
|
AllowOverride None
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|
|
|
|
#
|
|
# For security, dont serve pages from certain directories
|
|
#
|
|
|
|
<Directory "@BASE_DIR@/scripts">
|
|
Order deny,allow
|
|
Deny from all
|
|
</Directory>
|
|
|
|
<Directory "@BASE_DIR@/sql">
|
|
Order deny,allow
|
|
Deny from all
|
|
</Directory>
|