mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-07 17:52:46 +01:00
37 lines
3.3 KiB
Plaintext
37 lines
3.3 KiB
Plaintext
{
|
|
"description" : "bro_notice",
|
|
"processors" : [
|
|
{ "json": { "field": "message", "target_field": "message2", "ignore_failure": true } },
|
|
{ "remove": { "field": "message2.dst", "ignore_failure": true } },
|
|
{ "remove": { "field": "message2.src", "ignore_failure": true } },
|
|
{ "rename": { "field": "message2.uid", "target_field": "uid", "ignore_missing": true } },
|
|
{ "dot_expander": { "field": "id.orig_h", "path": "message2", "ignore_failure": true } },
|
|
{ "rename": { "field": "message2.id.orig_h", "target_field": "source_ip", "ignore_missing": true } },
|
|
{ "dot_expander": { "field": "id.orig_p", "path": "message2", "ignore_failure": true } },
|
|
{ "rename": { "field": "message2.id.orig_p", "target_field": "source_port", "ignore_missing": true } },
|
|
{ "dot_expander": { "field": "id.resp_h", "path": "message2", "ignore_failure": true } },
|
|
{ "rename": { "field": "message2.id.resp_h", "target_field": "destination_ip", "ignore_missing": true } },
|
|
{ "dot_expander": { "field": "id.resp_p", "path": "message2", "ignore_failure": true } },
|
|
{ "rename": { "field": "message2.id.resp_p", "target_field": "destination_port", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.fuid", "target_field": "fuid", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.mime", "target_field": "file_mime_type", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.desc", "target_field": "file_description", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.proto", "target_field": "protocol", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.note", "target_field": "note", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.msg", "target_field": "msg", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.sub", "target_field": "sub_msg", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.p", "target_field": "p", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.n", "target_field": "n", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.peer_descr", "target_field": "peer_description", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.actions", "target_field": "action", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.suppress_for", "target_field": "suppress_for", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.dropped", "target_field": "dropped", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.destination_country_code", "target_field": "destination_country_code", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.destination_region", "target_field": "destination_region", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.destination_city", "target_field": "destination_city", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.destination_latitude", "target_field": "destination_latitude", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.destination_longitude", "target_field": "destination_longitude", "ignore_missing": true } },
|
|
{ "pipeline": { "name": "bro_common" } }
|
|
]
|
|
}
|