Skip to content

Commit

Permalink
Update system-probe secccomp profile (#501)
Browse files Browse the repository at this point in the history
  • Loading branch information
brycekahle committed Jun 21, 2022
1 parent 7caf791 commit a9cb1ae
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions controllers/datadogagent/systemprobe.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ const systemProbeSecCompData = `{
"fchownat",
"fcntl",
"fcntl64",
"flock",
"fstat",
"fstat64",
"fstatfs",
Expand Down Expand Up @@ -213,6 +214,8 @@ const systemProbeSecCompData = `{
"recvmmsg",
"recvmsg",
"rename",
"renameat",
"renameat2",
"restart_syscall",
"rmdir",
"rt_sigaction",
Expand All @@ -238,6 +241,7 @@ const systemProbeSecCompData = `{
"setgid32",
"setgroups",
"setgroups32",
"setitimer",
"setns",
"setrlimit",
"setsid",
Expand All @@ -253,6 +257,7 @@ const systemProbeSecCompData = `{
"stat64",
"statfs",
"sysinfo",
"symlinkat",
"tgkill",
"umask",
"uname",
Expand Down Expand Up @@ -285,6 +290,22 @@ const systemProbeSecCompData = `{
"comment": "",
"includes": {},
"excludes": {}
},
{
"names": [
"kill"
],
"action": "SCMP_ACT_ALLOW",
"args": [
{
"index": 1,
"value": 0,
"op": "SCMP_CMP_EQ"
}
],
"comment": "allow process detection via kill",
"includes": {},
"excludes": {}
}
]
}
Expand Down

0 comments on commit a9cb1ae

Please sign in to comment.