Skip to content

Commit

Permalink
[Filebeat][auditd] Fix event types and categories to comply with ECS (e…
Browse files Browse the repository at this point in the history
…lastic#20652)

* Fix event types and categories to comply with ECS

* Add CHANGELOG entry

* Regenerate test files
  • Loading branch information
marc-gr committed Aug 26, 2020
1 parent 930c5f1 commit 8d77c1c
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 14 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Clone value when copy fields in processors to avoid crash. {issue}19206[19206] {pull}20500[20500]
- Fix event.type for zeek/ssl and duplicate event.category for zeek/connection {pull}20696[20696]
- Fix long registry migration times. {pull}20717[20717] {issue}20705[20705]
- Fix event types and categories in auditd module to comply with ECS {pull}20652[20652]

*Heartbeat*

Expand Down
30 changes: 25 additions & 5 deletions filebeat/module/auditd/log/ingest/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,24 +141,44 @@ processors:
value: event
- set:
if: "ctx.auditd.log?.record_type == 'USER_AUTH'"
field: event.type
field: event.category
value: authentication
- set:
if: "ctx.auditd.log?.record_type == 'KERN_MODULE'"
if: "ctx.auditd.log?.record_type == 'USER_AUTH'"
field: event.type
value: info
- set:
if: "ctx.auditd.log?.record_type == 'KERN_MODULE'"
field: event.category
value: driver
- set:
if: "ctx.auditd.log?.record_type == 'SOFTWARE_UPDATE'"
if: "ctx.auditd.log?.record_type == 'KERN_MODULE'"
field: event.type
value: info
- set:
if: "ctx.auditd.log?.record_type == 'SOFTWARE_UPDATE'"
field: event.category
value: package
- set:
if: "ctx.auditd.log?.record_type == 'SYSTEM_BOOT' || ctx.auditd.log?.record_type == 'SYSTEM_SHUTDOWN'"
if: "ctx.auditd.log?.record_type == 'SOFTWARE_UPDATE'"
field: event.type
value: info
- set:
if: "ctx.auditd.log?.record_type == 'SYSTEM_BOOT' || ctx.auditd.log?.record_type == 'SYSTEM_SHUTDOWN'"
field: event.category
value: host
- set:
if: "ctx.auditd.log?.record_type == 'SYSCALL' && ctx.auditd.log?.syscall == 'execve'"
if: "ctx.auditd.log?.record_type == 'SYSTEM_BOOT' || ctx.auditd.log?.record_type == 'SYSTEM_SHUTDOWN'"
field: event.type
value: info
- set:
if: "ctx.auditd.log?.record_type == 'SYSCALL' && ctx.auditd.log?.syscall == 'execve'"
field: event.category
value: process
- set:
if: "ctx.auditd.log?.record_type == 'SYSCALL' && ctx.auditd.log?.syscall == 'execve'"
field: event.type
value: info
- set:
if: "ctx.auditd.log?.record_type == 'VIRT_CONTROL' || ctx.auditd.log?.record_type == 'VIRT_MACHINE_ID'"
field: event.category
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,12 @@
"auditd.log.ses": "4294967295",
"auditd.log.subj": "system_u:system_r:init_t:s0",
"event.action": "system_boot",
"event.category": "host",
"event.dataset": "auditd.log",
"event.kind": "event",
"event.module": "auditd",
"event.outcome": "success",
"event.type": "host",
"event.type": "info",
"fileset.name": "log",
"input.type": "log",
"log.offset": 862,
Expand Down
6 changes: 4 additions & 2 deletions filebeat/module/auditd/log/test/audit-rhel6.log-expected.json
Original file line number Diff line number Diff line change
Expand Up @@ -212,11 +212,12 @@
"auditd.log.sequence": 19623789,
"auditd.log.ses": "6793",
"event.action": "user_auth",
"event.category": "authentication",
"event.dataset": "auditd.log",
"event.kind": "event",
"event.module": "auditd",
"event.outcome": "success",
"event.type": "authentication",
"event.type": "info",
"fileset.name": "log",
"input.type": "log",
"log.offset": 1926,
Expand All @@ -234,11 +235,12 @@
"auditd.log.sequence": 19623807,
"auditd.log.ses": "12286",
"event.action": "user_auth",
"event.category": "authentication",
"event.dataset": "auditd.log",
"event.kind": "event",
"event.module": "auditd",
"event.outcome": "success",
"event.type": "authentication",
"event.type": "info",
"fileset.name": "log",
"input.type": "log",
"log.offset": 2122,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,12 @@
"auditd.log.ses": "4294967295",
"auditd.log.subj": "system_u:system_r:init_t:s0",
"event.action": "system_boot",
"event.category": "host",
"event.dataset": "auditd.log",
"event.kind": "event",
"event.module": "auditd",
"event.outcome": "success",
"event.type": "host",
"event.type": "info",
"fileset.name": "log",
"input.type": "log",
"log.offset": 419,
Expand Down
15 changes: 10 additions & 5 deletions filebeat/module/auditd/log/test/test.log-expected.json
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,12 @@
"auditd.log.sw": "gcc-4.8.5-39.el7.x86_64",
"auditd.log.sw_type": "rpm",
"event.action": "software_update",
"event.category": "package",
"event.dataset": "auditd.log",
"event.kind": "event",
"event.module": "auditd",
"event.outcome": "success",
"event.type": "package",
"event.type": "info",
"fileset.name": "log",
"input.type": "log",
"log.offset": 1893,
Expand All @@ -188,11 +189,12 @@
"auditd.log.ses": "4294967295",
"auditd.log.subj": "system_u:system_r:init_t:s0",
"event.action": "system_boot",
"event.category": "host",
"event.dataset": "auditd.log",
"event.kind": "event",
"event.module": "auditd",
"event.outcome": "success",
"event.type": "host",
"event.type": "info",
"fileset.name": "log",
"input.type": "log",
"log.offset": 2196,
Expand All @@ -210,11 +212,12 @@
"auditd.log.ses": "4294967295",
"auditd.log.subj": "system_u:system_r:init_t:s0",
"event.action": "system_shutdown",
"event.category": "host",
"event.dataset": "auditd.log",
"event.kind": "event",
"event.module": "auditd",
"event.outcome": "success",
"event.type": "host",
"event.type": "info",
"fileset.name": "log",
"input.type": "log",
"log.offset": 2438,
Expand Down Expand Up @@ -254,10 +257,11 @@
"auditd.log.syscall": "execve",
"auditd.log.tty": "pts0",
"event.action": "syscall",
"event.category": "process",
"event.dataset": "auditd.log",
"event.kind": "event",
"event.module": "auditd",
"event.type": "process",
"event.type": "info",
"fileset.name": "log",
"host.architecture": "x86_64",
"input.type": "log",
Expand All @@ -283,10 +287,11 @@
"auditd.log.name": "mymodule",
"auditd.log.sequence": 579397,
"event.action": "kern_module",
"event.category": "driver",
"event.dataset": "auditd.log",
"event.kind": "event",
"event.module": "auditd",
"event.type": "driver",
"event.type": "info",
"fileset.name": "log",
"input.type": "log",
"log.offset": 3153,
Expand Down

0 comments on commit 8d77c1c

Please sign in to comment.