Skip to content

Commit

Permalink
update(events): disable PotentialLocalPrivilegeEscalationViaEnvironme…
Browse files Browse the repository at this point in the history
  • Loading branch information
leogr authored and poiana committed Sep 20, 2024
1 parent 1958474 commit 3604216
Showing 1 changed file with 4 additions and 1 deletion.
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 3604216

Please sign in to comment.