feat: add Falco provider for runtime security alerts#5530
Open
nexicturbo wants to merge 1 commit intokeephq:mainfrom
Open
feat: add Falco provider for runtime security alerts#5530nexicturbo wants to merge 1 commit intokeephq:mainfrom
nexicturbo wants to merge 1 commit intokeephq:mainfrom
Conversation
Add a webhook provider that receives alerts from Falco, the CNCF cloud-native runtime security tool. - Accepts Falco JSON alerts via HTTP output or Falcosidekick webhook - Maps Falco priority levels (Emergency..Debug) to Keep AlertSeverity - Extracts container/K8s metadata from output_fields - Includes setup instructions for both direct HTTP and Falcosidekick Closes keephq#5024
|
@nexicturbo is attempting to deploy a commit to the KeepHQ Team on Vercel. A member of the Team first needs to authorize it. |
Contributor
|
Target branch is not in the allowed branches list. |
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.
Description
Add a new Falco webhook provider that receives runtime security alerts from Falco, the CNCF cloud-native runtime security tool.
Falco detects threats in real-time across containers, Kubernetes, hosts, and cloud services. This provider integrates Falco alerts into Keep via webhook.
What's included
keep/providers/falco_provider/) that accepts Falco JSON alertsoutput_fields(container ID/name/image, k8s namespace/pod, user, process, cmdline)Falco alert payload handled
{ "uuid": "...", "output": "13:44:05: Critical A shell was spawned in a container...", "priority": "Critical", "rule": "Terminal shell in container", "source": "syscall", "tags": ["container", "mitre_execution", "shell"], "time": "2023-05-25T13:44:05.478445995Z", "hostname": "falco-node", "output_fields": { "container.id": "ee97d9c4186f", "container.image.repository": "docker.io/library/alpine", "k8s.ns.name": "default", "k8s.pod.name": "my-pod", "proc.cmdline": "sh -c bash", "user.name": "root" } }/claim #5024
Closes #5024