mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
15 lines
1.1 KiB
Plaintext
15 lines
1.1 KiB
Plaintext
{
|
|
"description" : "zeek.ecat_log_address",
|
|
"processors" : [
|
|
{ "remove": { "field": ["host"], "ignore_failure": true } },
|
|
{ "json": { "field": "message", "target_field": "message2", "ignore_failure": true } },
|
|
{ "rename": { "field": "message2.srcmac", "target_field": "source.mac", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.dstmac", "target_field": "destination.mac", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.Log_Addr", "target_field": "ecat.log.address", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.Length", "target_field": "ecat.length", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.Command", "target_field": "ecat.command", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.data", "target_field": "ecat.data", "ignore_missing": true } },
|
|
{ "pipeline": { "name": "zeek.common" } }
|
|
]
|
|
}
|