Great tool set but this issue is killing the sensors.
Thanks
Hi
Yes, either you need to do it with BPF filters, https://code.google.com/p/security-onion/wiki/BPF, or you need to use suppressions, https://code.google.com/p/security-onion/wiki/ManagingAlerts#Suppressions
Regards,
Lysemose
--
You received this message because you are subscribed to the Google Groups "security-onion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to security-onio...@googlegroups.com.
To post to this group, send email to securit...@googlegroups.com.
Visit this group at http://groups.google.com/group/security-onion.
For more options, visit https://groups.google.com/groups/opt_out.
(Example from the wiki page)
#Nothing to or from:
!(host xxx.xxx.xxx.xxx) &&
--
Follow Security Onion on Twitter!
https://twitter.com/securityonion
---
You received this message because you are subscribed to the Google Groups "security-onion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to security-onion+unsubscribe@googlegroups.com.
To post to this group, send email to security-onion@googlegroups.com.
Visit this group at https://groups.google.com/group/security-onion.
For more options, visit https://groups.google.com/d/optout.
Thanks - will do. Will this also quiet the OSSEC Notifications from those agents or is there another route for accomplishing that?
Jesse
I recently realized that the OSSEC white_list element does not keep OSSEC from
alerting on actions from the given IP, but only prevents it from blocking
the IP with an active response script. That's good, but doesn't help if
you're trying to keep alert noise down.
To prevent OSSEC from generating alerts at all for a given IP, you can make
use of the IP reference list feature.
I documented the process I followed for this at
https://geekcabi.net/article/ossec-whitelisting/
The downside to this approach is that those IP addresses are **completely**
trusted from an IDS/SIEM perspective, so be sure to review the scanner logs
on a regular basis to watch for any unauthorized or malicious use.
JM
Thanks for that article - I can't create the lists file referenced (/var/ossec/lists/file_name). I get access denied. I am logged on as the original admin that I created at install, and using sudo nano /path/filename.
Jesse
I figured it out - had to request root shell (sudo -s), cd to /var/ossec, and mkdir /lists.
Jesse