forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[libbeat] Allow
clock_nanosleep
in the default seccomp profiles (el…
…astic#33831) * Add clock_nanosleep to seccomp allowlist Fixes elastic#33792 * Update github.com/elastic/go-seccomp-bpf to v1.3.0 It added support for Linux v6.0 syscall names.
- Loading branch information
1 parent
f74ba69
commit 141ad33
Showing
6 changed files
with
38 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11931,11 +11931,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
|
||
-------------------------------------------------------------------------------- | ||
Dependency : github.com/elastic/go-seccomp-bpf | ||
Version: v1.2.0 | ||
Version: v1.3.0 | ||
Licence type (autodetected): Apache-2.0 | ||
-------------------------------------------------------------------------------- | ||
|
||
Contents of probable licence file $GOMODCACHE/github.com/elastic/go-seccomp-bpf@v1.2.0/LICENSE.txt: | ||
Contents of probable licence file $GOMODCACHE/github.com/elastic/go-seccomp-bpf@v1.3.0/LICENSE.txt: | ||
|
||
|
||
Apache License | ||
|
@@ -19861,11 +19861,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
|
||
-------------------------------------------------------------------------------- | ||
Dependency : github.com/stretchr/testify | ||
Version: v1.8.0 | ||
Version: v1.8.1 | ||
Licence type (autodetected): MIT | ||
-------------------------------------------------------------------------------- | ||
|
||
Contents of probable licence file $GOMODCACHE/github.com/stretchr/[email protected].0/LICENSE: | ||
Contents of probable licence file $GOMODCACHE/github.com/stretchr/[email protected].1/LICENSE: | ||
|
||
MIT License | ||
|
||
|
@@ -22064,11 +22064,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
|
||
-------------------------------------------------------------------------------- | ||
Dependency : golang.org/x/net | ||
Version: v0.0.0-20220826154423-83b083e8dc8b | ||
Version: v0.2.0 | ||
Licence type (autodetected): BSD-3-Clause | ||
-------------------------------------------------------------------------------- | ||
|
||
Contents of probable licence file $GOMODCACHE/golang.org/x/net@v0.0.0-20220826154423-83b083e8dc8b/LICENSE: | ||
Contents of probable licence file $GOMODCACHE/golang.org/x/net@v0.2.0/LICENSE: | ||
|
||
Copyright (c) 2009 The Go Authors. All rights reserved. | ||
|
||
|
@@ -22175,11 +22175,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
|
||
-------------------------------------------------------------------------------- | ||
Dependency : golang.org/x/sys | ||
Version: v0.0.0-20220829200755-d48e67d00261 | ||
Version: v0.2.0 | ||
Licence type (autodetected): BSD-3-Clause | ||
-------------------------------------------------------------------------------- | ||
|
||
Contents of probable licence file $GOMODCACHE/golang.org/x/sys@v0.0.0-20220829200755-d48e67d00261/LICENSE: | ||
Contents of probable licence file $GOMODCACHE/golang.org/x/sys@v0.2.0/LICENSE: | ||
|
||
Copyright (c) 2009 The Go Authors. All rights reserved. | ||
|
||
|
@@ -22212,11 +22212,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
|
||
-------------------------------------------------------------------------------- | ||
Dependency : golang.org/x/text | ||
Version: v0.3.7 | ||
Version: v0.4.0 | ||
Licence type (autodetected): BSD-3-Clause | ||
-------------------------------------------------------------------------------- | ||
|
||
Contents of probable licence file $GOMODCACHE/golang.org/x/text@v0.3.7/LICENSE: | ||
Contents of probable licence file $GOMODCACHE/golang.org/x/text@v0.4.0/LICENSE: | ||
|
||
Copyright (c) 2009 The Go Authors. All rights reserved. | ||
|
||
|
@@ -43666,11 +43666,11 @@ SOFTWARE. | |
|
||
-------------------------------------------------------------------------------- | ||
Dependency : github.com/stretchr/objx | ||
Version: v0.4.0 | ||
Version: v0.5.0 | ||
Licence type (autodetected): MIT | ||
-------------------------------------------------------------------------------- | ||
|
||
Contents of probable licence file $GOMODCACHE/github.com/stretchr/objx@v0.4.0/LICENSE: | ||
Contents of probable licence file $GOMODCACHE/github.com/stretchr/objx@v0.5.0/LICENSE: | ||
|
||
The MIT License | ||
|
||
|
@@ -45737,11 +45737,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
|
||
-------------------------------------------------------------------------------- | ||
Dependency : golang.org/x/term | ||
Version: v0.0.0-20210927222741-03fcf44c2211 | ||
Version: v0.2.0 | ||
Licence type (autodetected): BSD-3-Clause | ||
-------------------------------------------------------------------------------- | ||
|
||
Contents of probable licence file $GOMODCACHE/golang.org/x/term@v0.0.0-20210927222741-03fcf44c2211/LICENSE: | ||
Contents of probable licence file $GOMODCACHE/golang.org/x/term@v0.2.0/LICENSE: | ||
|
||
Copyright (c) 2009 The Go Authors. All rights reserved. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,7 @@ func init() { | |
"chmod", | ||
"chown", | ||
"clock_gettime", | ||
"clock_nanosleep", | ||
"clone", | ||
"clone3", | ||
"close", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,7 @@ func init() { | |
"chmod", | ||
"chown", | ||
"clock_gettime", | ||
"clock_nanosleep", | ||
"clone", | ||
"clone3", | ||
"close", | ||
|