Secops Workshop Fixes#16
Open
jamesrenaud wants to merge 1 commit intoInternalDeveloperPlatform:mainfrom
Open
Conversation
fix: file naming alignments fix: format rules as falco rules file fix: correct priority enum for root process rule
mavogel
reviewed
Feb 14, 2026
|
|
||
| **What this deployment includes**: | ||
| - **eBPF Driver**: Modern, efficient kernel monitoring | ||
| - **gRPC Output**: Enable integrations with external systems |
Contributor
There was a problem hiding this comment.
This line could then also be removed, and replaced by
- sidekick: Forward Falco event to different outputs in a fan-out way.
mavogel
reviewed
Feb 14, 2026
| # This will be detected by Falco but allowed by Kubernetes | ||
| kubectl run test-curl \ | ||
| --image=curlimages/curl \ | ||
| --restart=Never \ |
Contributor
There was a problem hiding this comment.
did this work for you? I got
Error from server (Forbidden): admission webhook "validation.gatekeeper.sh" denied the request: [enforce-falco-root-prevention] Container test-curl is configured to run as root (UID: -1). Falco security policy violation.
after fixing this cmd worked for me
kubectl run test-curl \
--image=curlimages/curl \
--restart=Never \
--overrides='{"spec":{"securityContext":{"runAsUser":101}}}' \
--rm -it \
-- sh
mavogel
reviewed
Feb 14, 2026
| **3. End-to-End Security Testing**: | ||
| ```bash | ||
| # Test runtime detection | ||
| kubectl run security-test --image=busybox --rm -it -- sh |
Contributor
There was a problem hiding this comment.
same as above
kubectl run security-test \
--overrides='{"spec":{"securityContext":{"runAsUser":65534}}}' \
--image=busybox --rm -it -- sh
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A few fixes for the secops workshop:
falcosidekickover the now deprecated built in gRPC server and gRPC outputroot-detect-rule.yamlfile to the Falco rules format to avoid errors with Falco attempting to load the filepriorityenum in theRoot Process in User Namespacerule.HIGHis not a valid Falco enum, switched it toCRITICAL.