標準の syslog_rules.xml (OSSEC 2.6.0) があります。/var/log/messages
これは、ファイル内の不適切な単語の標準ルールです。
<var name="BAD_WORDS">core_dumped|failure|error|attack|bad |illegal |denied|refused|unauthorized|fatal|failed|Segmentation Fault|Corrupted</var>
.....
<rule id="1002" level="2">
<match>$BAD_WORDS</match>
<options>alert_by_email</options>
<description>Unknown problem somewhere in the system.</description>
</rule>
.....
$BAD_WORDS
を使用し、auxpropfunc error
フレーズを除外するこのルールを追加または変更するにはどうすればよいですか? つまり、次のようなものです。
<match>$BAD_WORDS</match>
<match>!auxpropfunc error</match>
<options>alert_by_email</options>
何か案は?