File: //usr/share/filebeat/module/zeek/smb_mapping/config/smb_mapping.yml
type: log
paths:
{{ range $i, $path := .paths }}
- {{$path}}
{{ end }}
exclude_files: [".gz$"]
tags: {{.tags | tojson}}
publisher_pipeline.disable_host: {{ inList .tags "forwarded" }}
json.keys_under_root: false
fields_under_root: true
fields:
network.transport: tcp
network.protocol: smb
processors:
- rename:
fields:
- from: "json"
to: "zeek.smb_mapping"
- from: "zeek.smb_mapping.id.orig_h"
to: "source.address"
- from: "zeek.smb_mapping.id.orig_p"
to: "source.port"
- from: "zeek.smb_mapping.id.resp_h"
to: "destination.address"
- from: "zeek.smb_mapping.id.resp_p"
to: "destination.port"
- from: "zeek.smb_mapping.uid"
to: "zeek.session_id"
ignore_missing: true
fail_on_error: false
- convert:
fields:
- {from: "zeek.session_id", to: "event.id"}
- {from: "source.address", to: "source.ip", type: "ip"}
- {from: "destination.address", to: "destination.ip", type: "ip"}
ignore_missing: true
fail_on_error: false
- add_fields:
target: event
fields:
kind: event
category:
- network
type:
- connection
- protocol
- community_id:
{{ if .internal_networks }}
- add_network_direction:
source: source.ip
destination: destination.ip
target: network.direction
internal_networks: {{ .internal_networks | tojson }}
{{ end }}
- add_fields:
target: ''
fields:
ecs.version: 1.12.0