diff options
author | Dominik Lisiak <dominik.lisiak@bemsoft.pl> | 2018-10-26 18:45:19 +0200 |
---|---|---|
committer | Dominik Lisiak <dominik.lisiak@bemsoft.pl> | 2018-10-26 18:45:19 +0200 |
commit | 5cde0e0520c72804b6eac8f08d976db777d7ba04 (patch) | |
tree | 9a7288c8b9d7b69790929a0121b264b8883f2f39 /security/ossec-hids-local-config/files/template-logs-system.xml.in | |
parent | Upgrade to 3.1.0. (diff) | |
download | ossec-5cde0e0520c72804b6eac8f08d976db777d7ba04.tar.xz |
Added CIS benchmarks. Improved profiles.
Diffstat (limited to 'security/ossec-hids-local-config/files/template-logs-system.xml.in')
-rw-r--r-- | security/ossec-hids-local-config/files/template-logs-system.xml.in | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/security/ossec-hids-local-config/files/template-logs-system.xml.in b/security/ossec-hids-local-config/files/template-logs-system.xml.in new file mode 100644 index 0000000..eee09aa --- /dev/null +++ b/security/ossec-hids-local-config/files/template-logs-system.xml.in @@ -0,0 +1,68 @@ +<?xml version="1.0" encoding="UTF-8"?> +<template_config os="FreeBSD" profile="%%LOGS_SYSTEM_PROFILE%%"> + + <localfile> + <log_format>syslog</log_format> + <location>/var/log/auth.log</location> + </localfile> + + <localfile> + <log_format>syslog</log_format> + <location>/var/log/maillog</location> + </localfile> + + <localfile> + <log_format>syslog</log_format> + <location>/var/log/messages</location> + </localfile> + + <localfile> + <log_format>syslog</log_format> + <location>/var/log/security</location> + </localfile> + + <localfile> + <log_format>syslog</log_format> + <location>/var/log/userlog</location> + </localfile> + + <localfile> + <log_format>syslog</log_format> + <location>/var/log/xferlog</location> + </localfile> + +</template_config> + +<template_config os="Linux" profile="%%LOGS_SYSTEM_PROFILE%%"> + + <localfile> + <log_format>syslog</log_format> + <location>/var/log/auth.log</location> + </localfile> + + <localfile> + <log_format>syslog</log_format> + <location>/var/log/dpkg.log</location> + </localfile> + + <localfile> + <log_format>syslog</log_format> + <location>/var/log/kern.log</location> + </localfile> + + <localfile> + <log_format>syslog</log_format> + <location>/var/log/mail.log</location> + </localfile> + + <localfile> + <log_format>syslog</log_format> + <location>/var/log/messages</location> + </localfile> + + <localfile> + <log_format>syslog</log_format> + <location>/var/log/syslog</location> + </localfile> + +</template_config> |