**Phase 1: Completed pre-decoding.
full event: '2013-11-22T16:11:03.284334+00:00 server_name_in_cdb sshd[25855]: Accepted password for dummy_user from 1.2.3.4 port 36303 ssh2'
hostname: ‘server_name_in_cdb’
program_name: 'sshd'
log: 'Accepted password for dummy_user from 1.2.3.4 port 36303 ssh2'
**Phase 2: Completed decoding.
decoder: 'sshd'
dstuser: 'dummy_user'
srcip: '1.2.3.4'
**Phase 3: Completed filtering (rules).
Rule id: '111717'
Level: '13'
Description: 'DMZ System - SSHD password success.'
**Alert to be generated.
and the rule: (in local_rules.xml)
<rule id="111717" level=“13”>
<if_sid>5700</if_sid>
<list field="hostname" lookup="match_key">lists/dmz</list>
<match>^Accepted password|authenticated.$</match>
<description>DMZ System - SSHD password success.</description>
<group>authentication_success,</group>
</rule>
But in production (same server obviously), the rule that keeps firing is the regular 5715 (in sshd_rules.xml) —
<rule id="5715" level="3">
<if_sid>5700</if_sid>
<match>^Accepted|authenticated.$</match>
<description>SSHD authentication success.</description>
<group>authentication_success,</group>
</rule>
Nope. :-(