Hi Community !
I need an alert whenever a file is deleted in /CA_test and subfolders
I am monitoring files created in the /CA_test folder by the configuration:
<agent_config>
<!-- Shared agent configuration here -->
<syscheck>
<!-- Frequency that syscheck is executed default every 1 min -->
<frequency>60</frequency>
<directories check_all="yes" realtime="yes" report_changes="yes" whodata="yes">/CA_test</directories>
</syscheck>
</agent_config>
and right after I created the following rule in local_rules.xml
<group name="syscheck_entry_modified,">
<rule id="100025" level="10">
<if_sid>553</if_sid>
<field name="file">\\CA_test\\</field>
<description>file deleted in CA_test</description>
<group>syscheck,syscheck_entry_modified,syscheck_file</group>
</rule>
</group>
but when inserting the following log in ruleset test:
2023 Jun 14 14:32:35 (AGENT-TEST) any->syscheck File '/CA_test/test_file.txt' deleted
return me:
**Phase 2: Completed decoding.
No decoder matched.
what am i doing wrong to not trigger rule 100025?