mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 17:22:49 +01:00
[fix] Add single quotes to strings
This commit is contained in:
@@ -10,10 +10,10 @@
|
|||||||
{ "rename": { "field": "source_ip", "target_field": "source.ip" } },
|
{ "rename": { "field": "source_ip", "target_field": "source.ip" } },
|
||||||
{ "append": { "field": "logsscan.source.ips", "value": "{{{source.ip}}}" } },
|
{ "append": { "field": "logsscan.source.ips", "value": "{{{source.ip}}}" } },
|
||||||
{ "rename": { "field": "source_ips", "target_field": "logscan.source.ips" } },
|
{ "rename": { "field": "source_ips", "target_field": "logscan.source.ips" } },
|
||||||
{ "set": { "if": "ctx.model == kff", "field": "rule.name", "value": "LOGSCAN KFF MODEL THRESHOLD" } },
|
{ "set": { "if": "ctx.model == 'kff'", "field": "rule.name", "value": "LOGSCAN KFF MODEL THRESHOLD" } },
|
||||||
{ "set": { "if": "ctx.model == kff", "field": "rule.description", "value": "High ratio of login failures in 5 minute window" } },
|
{ "set": { "if": "ctx.model == 'kff'", "field": "rule.description", "value": "High ratio of login failures in 5 minute window" } },
|
||||||
{ "set": { "if": "ctx.model == kl", "field": "rule.name", "value": "LOGSCAN KL MODEL THRESHOLD" } },
|
{ "set": { "if": "ctx.model == 'kl'", "field": "rule.name", "value": "LOGSCAN KL MODEL THRESHOLD" } },
|
||||||
{ "set": { "if": "ctx.model == kl", "field": "rule.description", "value": "Large number of login failures in 1 hour window" } },
|
{ "set": { "if": "ctx.model == 'kl'", "field": "rule.description", "value": "Large number of login failures in 1 hour window" } },
|
||||||
{ "rename": { "field": "model", "target_field": "logscan.model" } },
|
{ "rename": { "field": "model", "target_field": "logscan.model" } },
|
||||||
{ "rename": { "field": "num_attempts", "target_field": "logscan.attempts.total.amount", "ignore_missing": true } },
|
{ "rename": { "field": "num_attempts", "target_field": "logscan.attempts.total.amount", "ignore_missing": true } },
|
||||||
{ "rename": { "field": "num_failed", "target_field": "logscan.attempts.failed.amount", "ignore_missing": true } },
|
{ "rename": { "field": "num_failed", "target_field": "logscan.attempts.failed.amount", "ignore_missing": true } },
|
||||||
|
|||||||
Reference in New Issue
Block a user