There are 20 Critical assets, if there are any alerts for these hosts, it has to been responded with priority compared to others. How can we implement this?
In simple terms how can i have dynamic priority for chronicle alerts based on criticality of the host , can some one help me with a simple example
@jstoner @cmmartin_google :Any suggestions or guidance
Solved
Increase priority of an alert
Best answer by AymanC
Something that is more easily creatable within a playbook. If you only have the SIEM capabilities, you could look into doing this by having a look at the udm field you're trying to match these hosts again (for example principal.hostname), and store a reference list with these hosts, if there are any underlying events within the alert that matches, to increment the risk score to xxx. The below should work
rule Risk_Score_Increment {
meta:
author = "Ayman C"
description = "Risk score increment"
severity = "Low"
events:
$e.metadata.event_type = "USER_LOGIN"
$e.principal.hostname = $host
match:
$host over 1h
outcome:
$risk_score = max(
if ($host in %admin_list , 100)
)
condition:
$e
}Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

