Skip to content

Commit

Permalink
Merge branch 'main' into fix-disallowed-ssh
Browse files Browse the repository at this point in the history
  • Loading branch information
prezha committed Sep 20, 2024
2 parents e2ede99 + 3604216 commit 3526ec2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion events/syscall/java_process_class_file_download.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ import (
"github.com/falcosecurity/event-generator/events"
)

var _ = events.Register(JavaProcessClassFileDownload)
var _ = events.Register(
JavaProcessClassFileDownload,
events.WithDisabled(), // this rules is not included in falco_rules.yaml (stable rules), so disable the action
)

func JavaProcessClassFileDownload(h events.Helper) error {
return h.SpawnAs("java", "helper.CombinedServerClient")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ import (
"github.com/falcosecurity/event-generator/events"
)

var _ = events.Register(PotentialLocalPrivilegeEscalationViaEnvironmentVariablesMisuse)
var _ = events.Register(
PotentialLocalPrivilegeEscalationViaEnvironmentVariablesMisuse,
events.WithDisabled(), // this rules is not included in falco_rules.yaml (stable rules), so disable the action
)

func PotentialLocalPrivilegeEscalationViaEnvironmentVariablesMisuse(h events.Helper) error {
// Set the GLIBC_TUNABLES environment variable
Expand Down

0 comments on commit 3526ec2

Please sign in to comment.