1
Intrusion Detection and Prevention / Re: To block or reject connections on a specific port?
« on: July 11, 2024, 03:27:57 am »
Yeah, I have to work on filtering alerts from Monit. I'm getting spammed by security researchers checking for vulnerabilities.
Currently, I just have
Would
Currently, I just have
Code: [Select]
content = "blocked"
for my Surricata service tests. Is it possible to drop a file path in the Monit Service Tests Settings. I'm probably going to have to filter out a ton of junk.Would
Code: [Select]
content = "blocked" && ((content = "<test signature>" && content != "<ip address>") || /* more false positives */ )
be the right way to filter?