diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index fe3b6a7fcc1..b5a84930f26 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -90,6 +90,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Fix kafka topic setting not allowing upper case characters. {pull}18854[18854] {issue}18640[18640] - Fix redis key setting not allowing upper case characters. {pull}18854[18854] {issue}18640[18640] - Fix potential race condition in fingerprint processor. {pull}18738[18738] +- Fix seccomp policy for calls to `chmod` and `chown`. {pull}20054[20054] *Auditbeat* diff --git a/libbeat/common/seccomp/policy_linux_386.go b/libbeat/common/seccomp/policy_linux_386.go index acbc69ddd1f..796b071a104 100644 --- a/libbeat/common/seccomp/policy_linux_386.go +++ b/libbeat/common/seccomp/policy_linux_386.go @@ -46,7 +46,9 @@ func init() { "exit_group", "fchdir", "fchmod", + "fchmodat", "fchown32", + "fchownat", "fcntl", "fcntl64", "fdatasync", diff --git a/libbeat/common/seccomp/policy_linux_amd64.go b/libbeat/common/seccomp/policy_linux_amd64.go index bf1e4bc31c5..4246e6a1a51 100644 --- a/libbeat/common/seccomp/policy_linux_amd64.go +++ b/libbeat/common/seccomp/policy_linux_amd64.go @@ -51,7 +51,9 @@ func init() { "exit_group", "fchdir", "fchmod", + "fchmodat", "fchown", + "fchownat", "fcntl", "fdatasync", "flock",