mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-07 17:52:46 +01:00
19 lines
1.5 KiB
Plaintext
19 lines
1.5 KiB
Plaintext
{
|
|
"description" : "zeek.ecat_aoe_info",
|
|
"processors" : [
|
|
{ "set": { "field": "event.dataset", "value": "ecat_aoe_info" } },
|
|
{ "remove": { "field": ["host"], "ignore_failure": true } },
|
|
{ "json": { "field": "message", "target_field": "message2", "ignore_failure": true } },
|
|
{ "rename": { "field": "message2.targetid", "target_field": "destination.mac", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.targetport", "target_field": "destination.port", "ignore_missing": true } },
|
|
{ "convert": { "field": "destination.port", "type": "integer", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.senderid", "target_field": "source.mac", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.senderport", "target_field": "source.port", "ignore_missing": true } },
|
|
{ "convert": { "field": "source.port", "type": "integer", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.cmd", "target_field": "ecat.command", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.stateflags", "target_field": "ecat.state.flags", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.data", "target_field": "ecat.data", "ignore_missing": true } },
|
|
{ "pipeline": { "name": "zeek.common" } }
|
|
]
|
|
}
|