Hi All,
We recently installed Grayolg in our organisation. We have a tool for scanning vulnerabilities (OpenVAS) installed on server. I want to exclude that server/IP address from SSH Deny stream. Is there a way/steps how I can exclude that server from alert messaging?
jan
(Jan Doberstein)
July 11, 2019, 7:19am
2
Write a processing Pipeline that either delete this or give the message some kind of a mark that is excluded in the alert.
Hi I have this:
rule “drop_vuln_scanner”
when
has_field(“source_ip”) AND
$message.source_ip == “10.10.10.10”
then
drop_message();
end
Is it good?
jan
(Jan Doberstein)
July 11, 2019, 10:08am
4
does it work for you?
rule “drop_vuln_scanner”
when
has_field(“source_ip”) AND
to_string($message.source_ip) == “10.10.10.10”
then
drop_message();
end
To make the comparison string to string, you need to give the definition that the field source_ip
is a string …
Im trying to set up new pipeline, but when I click Manage rules - Create new rule it won
t let me to SAVE it.
jan
(Jan Doberstein)
July 11, 2019, 12:30pm
6
the UI should give you some indication why this happens.
I used wrong symbols for quotation marks. Thanks a lot
system
(system)
Closed
July 25, 2019, 1:11pm
8
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.