- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
05-19-2017 07:58 AM
Hi,
Is there an easy way to monitor traffic logs on say 20 IP's to see if any IOC's are being hit? I'm guessing I could build a filter for each IP but I was hoping there might be a way to do it easier. These are not contiguous IP's so CIDR won't help me.
Thanks,
James
05-19-2017 08:13 AM - edited 05-19-2017 08:17 AM
Why just not use ( addr.src in 10.0.0.0/8 ) assuming you use 10. in your lan.
Or build more complex filter.
Below one will show if any of those IPs have web-browsing on some other port than 80 or ssl not on 443.
(( addr.src in 1.1.1.1 ) or ( addr.src in 2.2.2.2 ) or ( addr.src in 3.3.3.3 )) and ((( app eq web-browsing ) and ( port.dst neq 80 )) or (( app eq ssl ) and ( port.dst neq 443 )))
05-19-2017 09:45 AM
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!