Skip to content

Commit

Permalink
feat(signatures): expose signatures helpers as Go module
Browse files Browse the repository at this point in the history
To allow users the option to use the up-to-date helpers for Go
signatures, the helpers were exported to be an external Go module.
  • Loading branch information
AlonZivony committed Dec 17, 2023
1 parent 32d2eda commit cd02df1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 4 additions & 1 deletion go.mod
Expand Up @@ -8,7 +8,7 @@ require (
github.com/aquasecurity/libbpfgo v0.6.0-libbpf-1.3
github.com/aquasecurity/libbpfgo/helpers v0.4.6-0.20231123142329-37c4b843a539
github.com/aquasecurity/tracee/api v0.0.0-20231013014739-b32a168ee6a8
github.com/aquasecurity/tracee/types v0.0.0-20231128135314-cfe4d6426ccc
github.com/aquasecurity/tracee/types v0.0.0-20231214175504-32d2eda31fce
github.com/containerd/containerd v1.7.0
github.com/docker/docker v24.0.7+incompatible
github.com/golang/protobuf v1.5.3
Expand Down Expand Up @@ -44,6 +44,7 @@ require (
require (
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230106234847-43070de90fa1 // indirect
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20230306123547-8075edf89bb0 // indirect
github.com/aquasecurity/tracee/signatures/helpers v0.0.0-00010101000000-000000000000 // indirect
github.com/containerd/typeurl/v2 v2.1.0 // indirect
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
Expand Down Expand Up @@ -177,4 +178,6 @@ require (
kernel.org/pub/linux/libs/security/libcap/psx v1.2.68 // indirect
)

replace github.com/aquasecurity/tracee/signatures/helpers => ./signatures/helpers

replace github.com/kubernetes/cri-api => k8s.io/cri-api v0.23.5-rc.0
2 changes: 2 additions & 0 deletions go.sum
Expand Up @@ -71,6 +71,8 @@ github.com/aquasecurity/tracee/api v0.0.0-20231013014739-b32a168ee6a8 h1:NGzPDvQ
github.com/aquasecurity/tracee/api v0.0.0-20231013014739-b32a168ee6a8/go.mod h1:l1W65+m4KGg2i61fiPaQ/o4OQCrNtNnkPTEdysF5Zpw=
github.com/aquasecurity/tracee/types v0.0.0-20231128135314-cfe4d6426ccc h1:T3yH0mYENclyBdxwbof0+5hVk7bFFB+aaPKESqS1Zg4=
github.com/aquasecurity/tracee/types v0.0.0-20231128135314-cfe4d6426ccc/go.mod h1:kHvgUMXGq5QEqSLPgu4RwGSJEoCuMQJnEkGk8OAcSUc=
github.com/aquasecurity/tracee/types v0.0.0-20231214175504-32d2eda31fce h1:rW+/gTQKNrvBctZo5wxCKOKv/Be+loaYZd6lIs+rVUQ=
github.com/aquasecurity/tracee/types v0.0.0-20231214175504-32d2eda31fce/go.mod h1:kHvgUMXGq5QEqSLPgu4RwGSJEoCuMQJnEkGk8OAcSUc=
github.com/arbovm/levenshtein v0.0.0-20160628152529-48b4e1c0c4d0 h1:jfIu9sQUG6Ig+0+Ap1h4unLjW6YQJpKZVmUzxsD4E/Q=
github.com/arbovm/levenshtein v0.0.0-20160628152529-48b4e1c0c4d0/go.mod h1:t2tdKJDJF9BV14lnkjHmOQgcvEKgtqs5a1N3LNdJhGE=
github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA=
Expand Down
5 changes: 5 additions & 0 deletions signatures/helpers/go.mod
@@ -0,0 +1,5 @@
module github.com/aquasecurity/tracee/signatures/helpers

go 1.19

require github.com/aquasecurity/tracee/types v0.0.0-20231214175504-32d2eda31fce

0 comments on commit cd02df1

Please sign in to comment.