This repository was archived by the owner on Jan 10, 2025. It is now read-only.
File tree 2 files changed +46
-5
lines changed
Security Analytics/SIEM-at-Home/beats-configs
2 files changed +46
-5
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ name: myHostName
4
4
tags : ["myTag", "myHostName"]
5
5
fields :
6
6
env : myEnv
7
- version : 11-13 -2019
7
+ version : 11-26 -2019
8
8
9
9
# ========================== Top Level Processor ===============================
10
10
processors :
11
11
- add_host_metadata :
12
- # netinfo.enabled should be set to `false` in packetbeat until GitHub
13
- # issue https://github.com/elastic/elasticsearch/issues/46193 is closed
14
- netinfo.enabled : true
12
+ # netinfo.enabled should be set to `false` until GitHub issue
13
+ # https://github.com/elastic/elasticsearch/issues/46193 is resolved
14
+ netinfo.enabled : false
15
15
Geo : # These Geo configurations are optional
16
16
location : 40.7128, -74.0060
17
17
continent_name : North America
@@ -58,7 +58,9 @@ cloud.auth: "data_shipper:0987654321abcDEF"
58
58
59
59
# The geoip-info pipeline is used to enrich GeoIP information in Elasticsearch
60
60
# You must configure the pipeline in Elasticsearch before enabling the pipeline in Beats.
61
- output.elasticsearch.pipeline : geoip-info
61
+ # The `output.elasticsearch.pipeline: geoip-info` setting should be commented out until
62
+ # until GitHub issue https://github.com/elastic/elasticsearch/issues/46193 is resolved
63
+ # output.elasticsearch.pipeline: geoip-info
62
64
63
65
# The `max_retries` setting is the number of times to retry publishing an event after
64
66
# a publishing failure. After the specified number of retries, the events are typically dropped.
Original file line number Diff line number Diff line change
1
+ # Example for the Beats on Windows blog
2
+ # Configuration version: 11-25-2019
3
+ # === Winlogbeat specific options ===
4
+ winlogbeat.event_logs :
5
+ - name : Application
6
+ ignore_older : 72h
7
+
8
+ - name : System
9
+
10
+ - name : Security
11
+ ignore_older : 24h
12
+ processors :
13
+ - drop_event.when.and : # drop local service login events
14
+ - equals.event.code : ' 4672'
15
+ - equals.winlog.event_data.SubjectUserName : ' LOCAL SERVICE'
16
+ - script :
17
+ lang : javascript
18
+ id : security
19
+ file : ${path.home}/module/security/config/winlogbeat-security.js
20
+
21
+ - name : Windows PowerShell
22
+ ignore_older : 72h
23
+
24
+ - name : Microsoft-Windows-PowerShell/Operational
25
+ ignore_older : 72h
26
+ event_id : 4103, 4104
27
+
28
+ - name : Microsoft-Windows-Sysmon/Operational
29
+ ignore_older : 24h
30
+ processors :
31
+ - script :
32
+ lang : javascript
33
+ id : sysmon
34
+ file : ${path.home}/module/sysmon/config/winlogbeat-sysmon.js
35
+
36
+ # === Beats Common Configs Here ===
37
+ # Add the settings from the Beats General Config file (beats-general-config.yml)
38
+ # to the end of this configuration file. The Beats General Config file example can be found at this link:
39
+ # https://github.com/elastic/examples/blob/master/Security%20Analytics/SIEM-at-Home/beats-configs/beats-general-config.yml
You can’t perform that action at this time.
0 commit comments