Hello guys,
I am trying to extract the values from here and add use them as ip enrichment. I am interested in “harmless, malicious and suspicious”.
“single_value”: “GOOGLE”,
“multi_value”: {
“harmless”: 65,
“malicious”: 3,
“suspicious”: 0,
“undetected”: 21,
“timeout”: 0
},
“string_list_value”: null,
“has_error”: false,
“ttl”: 9223372036854776000
My current pipeline rule is looking like this :
rule “ip check”
when true
then
let harmless = lookup (“virustotal-table” , $message.dstip);
set_field(“harmless_score” , harmless);
end
Please let me know what i am doing wrong, because is not working. I am receiving a null result.
Thank you.