Hello SaiRajan
Thank you for the clarification
By default, Wazuh monitors for bad attempts and you will be notified on the dashboard as I shared previously at this
link
Also it is possible to monitor file changes by specifying the directories to be monitored however Wazuh monitor some directories by default
This
documentation captures how Wazuh File Integrity Module operates based on the use cases you might have in your environment
To view and configure the FIM module to your needs, the configuration is within the ossec.conf file of the agent within the syscheck block as shown below;
<!-- File integrity monitoring -->
<syscheck>
<disabled>no</disabled>
<!-- Frequency that syscheck is executed default every 12 hours -->
<frequency>43200</frequency>
<!-- Default files to be monitored. -->
<directories recursion_level="0" restrict="regedit.exe$|system.ini$|win.ini$">%WINDIR%</directories>
--
--
--
<sycheck>
To monitor a specific path/directory on any of the server, say the download folder;
Edit the Wazuh agent configuration file C:\Program Files (x86)\ossec-agent\ossec.conf and add the folder to be monitored.
This should be within the <syscheck> block. The configuration should look like this:
<directories check_all="yes" whodata="yes">C:\Users\administrator\Downloads</directories>
Restart the agent after applying the configuration
These will generate alerts once a file is created, modified or deleted in this directory.
Please let me know if you need further assistance
Best Regards