Awesome
Plugins
Note: The plugin system is a new feature introduced since Falco 0.31.0. You can find more detail in the original proposal document.
This repository contains the Plugin Registry and the plugins officially maintained by the Falcosecurity organization. Plugins can be used to extend Falco and of applications using Falcosecurity libs. Please refer to the official documentation to better understand the plugin system's concepts and architecture.
Plugin Registry
The Registry contains metadata and information about every plugin known and recognized by the Falcosecurity organization. It lists plugins hosted either in this repository or in other repositories. These plugins are developed for Falco and made available to the community. Check out the sections below to know how to register your plugins and see plugins currently contained in the registry.
Registering a new Plugin
Registering your plugin inside the registry helps ensure that some technical constraints are respected, such as that a given ID is used by exactly one plugin with event source capability and allows plugin authors to coordinate about event source formats. Moreover, this is a great way to share your plugin project with the community and engage with it, thus gaining new users and increasing its visibility. We encourage you to register your plugin in this registry before publishing it. You can add your plugins in this registry regardless of where its source code is hosted (there's a url
field for this specifically).
The registration process involves adding an entry about your plugin inside the registry.yaml file by creating a Pull Request in this repository. Please be mindful of a few constraints that are automatically checked and required for your plugin to be accepted:
- The
name
field is mandatory and must be unique across all the plugins in the registry - (Sourcing Capability Only) The
id
field is mandatory and must be unique in the registry across all the plugins with event source capability- See docs/plugin-ids.md for more information about plugin IDs
- The plugin
name
must match this regular expression:^[a-z]+[a-z0-9-_\-]*$
(however, its not recommended to use_
in the name, unless you are trying to match the name of a source or for particular reasons) - The
source
(Sourcing Capability Only) andsources
(Extraction Capability Only) must match this regular expression:^[a-z]+[a-z0-9_]*$
- The
url
field should point to the plugin source code - The
rules_url
field should point to the default ruleset, if any
For reference, here's an example of an entry for a plugin with both event sourcing and field extraction capabilities:
- name: k8saudit
description: ...
authors: ...
contact: ...
maintainers:
- name: The Falco Authors
email: cncf-falco-dev@lists.cncf.io
keywords:
- audit
- audit-log
- audit-events
- kubernetes
url: https://github.com/falcosecurity/plugins/tree/main/plugins/k8saudit
rules_url: https://github.com/falcosecurity/plugins/tree/main/plugins/k8saudit/rules
url: ...
license: ...
capabilities:
sourcing:
supported: true
id: 2
source: k8s_audit
extraction:
supported: true
You can find the full registry specification here: (coming soon...)
Registered Plugins
The tables below list all the plugins currently registered. The tables are automatically generated from the registry.yaml file.
<!-- The text inside \<!-- REGISTRY:xxx --\> comments is auto-generated. These comments and the text between them should not be edited by hand --> <!-- REGISTRY:TABLE -->Name | Capabilities | Description |
---|---|---|
plugin-id-zero-value | Event Sourcing <br/>ID: 0 <br/>`` | This ID is reserved for particular purposes and cannot be registered. A plugin author should not use this ID unless specified by the documentation. <br/><br/> Authors: N/A <br/> License: N/A |
k8saudit | Event Sourcing <br/>ID: 1 <br/>k8s_audit <br/>Field Extraction <br/> k8s_audit | Read Kubernetes Audit Events and monitor Kubernetes Clusters <br/><br/> Authors: The Falco Authors <br/> License: Apache-2.0 |
cloudtrail | Event Sourcing <br/>ID: 2 <br/>aws_cloudtrail <br/>Field Extraction <br/> aws_cloudtrail | Reads Cloudtrail JSON logs from files/S3 and injects as events <br/><br/> Authors: The Falco Authors <br/> License: Apache-2.0 |
json | Field Extraction <br/> All Sources | Extract values from any JSON payload <br/><br/> Authors: The Falco Authors <br/> License: Apache-2.0 |
dummy | Event Sourcing <br/>ID: 3 <br/>dummy <br/>Field Extraction <br/> dummy | Reference plugin used to document interface <br/><br/> Authors: The Falco Authors <br/> License: Apache-2.0 |
dummy_c | Event Sourcing <br/>ID: 4 <br/>dummy_c <br/>Field Extraction <br/> dummy_c | Like dummy, but written in C++ <br/><br/> Authors: The Falco Authors <br/> License: Apache-2.0 |
docker | Event Sourcing <br/>ID: 5 <br/>docker <br/>Field Extraction <br/> docker | Docker Events <br/><br/> Authors: Thomas Labarussias <br/> License: Apache-2.0 |
seccompagent | Event Sourcing <br/>ID: 6 <br/>seccompagent <br/>Field Extraction <br/> seccompagent | Seccomp Agent Events <br/><br/> Authors: Alban Crequy <br/> License: Apache-2.0 |
okta | Event Sourcing <br/>ID: 7 <br/>okta <br/>Field Extraction <br/> okta | Okta Log Events <br/><br/> Authors: The Falco Authors <br/> License: Apache-2.0 |
github | Event Sourcing <br/>ID: 8 <br/>github <br/>Field Extraction <br/> github | Github Webhook Events <br/><br/> Authors: The Falco Authors <br/> License: Apache-2.0 |
k8saudit-eks | Event Sourcing <br/>ID: 9 <br/>k8s_audit <br/>Field Extraction <br/> k8s_audit | Read Kubernetes Audit Events from AWS EKS Clusters <br/><br/> Authors: The Falco Authors <br/> License: Apache-2.0 |
nomad | Event Sourcing <br/>ID: 10 <br/>nomad <br/>Field Extraction <br/> nomad | Read Hashicorp Nomad Events Stream <br/><br/> Authors: Alberto Llamas <br/> License: Apache-2.0 |
dnscollector | Event Sourcing <br/>ID: 11 <br/>dnscollector <br/>Field Extraction <br/> dnscollector | DNS Collector Events <br/><br/> Authors: Daniel Moloney <br/> License: Apache-2.0 |
gcpaudit | Event Sourcing <br/>ID: 12 <br/>gcp_auditlog <br/>Field Extraction <br/> gcp_auditlog | Read GCP Audit Logs <br/><br/> Authors: The Falco Authors <br/> License: Apache-2.0 |
syslogsrv | Event Sourcing <br/>ID: 13 <br/>syslogsrv <br/>Field Extraction <br/> syslogsrv | Syslog Server Events <br/><br/> Authors: Maksim Nabokikh <br/> License: Apache-2.0 |
salesforce | Event Sourcing <br/>ID: 14 <br/>salesforce <br/>Field Extraction <br/> salesforce | Falco plugin providing basic runtime threat detection and auditing logging for Salesforce <br/><br/> Authors: Andy <br/> License: Apache-2.0 |
box | Event Sourcing <br/>ID: 15 <br/>box <br/>Field Extraction <br/> box | Falco plugin providing basic runtime threat detection and auditing logging for Box <br/><br/> Authors: Andy <br/> License: Apache-2.0 |
test | Event Sourcing <br/>ID: 999 <br/>test | This ID is reserved for source plugin development. Any plugin author can use this ID, but authors can expect events from other developers with this ID. After development is complete, the author should request an actual ID <br/><br/> Authors: N/A <br/> License: N/A |
k8smeta | Field Extraction <br/> syscall | Enriche Falco syscall flow with Kubernetes Metadata <br/><br/> Authors: The Falco Authors <br/> License: Apache-2.0 |
k8saudit-gke | Event Sourcing <br/>ID: 16 <br/>k8s_audit <br/>Field Extraction <br/> k8s_audit | Read Kubernetes Audit Events from GKE Clusters <br/><br/> Authors: The Falco Authors <br/> License: Apache-2.0 |
journald | Event Sourcing <br/>ID: 17 <br/>journal <br/>Field Extraction <br/> journal | Read Journald events into Falco <br/><br/> Authors: Grzegorz Nosek <br/> License: Apache-2.0 |
kafka | Event Sourcing <br/>ID: 18 <br/>kafka | Read events from Kafka topics into Falco <br/><br/> Authors: Hunter Madison <br/> License: Apache-2.0 |
gitlab | Event Sourcing <br/>ID: 19 <br/>gitlab <br/>Field Extraction <br/> gitlab | Falco plugin providing basic runtime threat detection and auditing logging for GitLab <br/><br/> Authors: Andy <br/> License: Apache-2.0 |
keycloak | Event Sourcing <br/>ID: 20 <br/>keycloak <br/>Field Extraction <br/> keycloak | Falco plugin for sourcing and extracting Keycloak user/admin events <br/><br/> Authors: Mattia Forcellese <br/> License: Apache-2.0 |
Hosted Plugins
Another purpose of this repository is to host and maintain the plugins owned by the Falcosecurity organization. Each plugin is a standalone project and has its own directory, and they are all inside the plugins folder.
The main
branch contains the most up-to-date state of development, and each plugin is regularly released. Please check our Release Process to know how plugins are released and how artifacts are distributed. Dev builds are published each time a Pull Request gets merged into main
, whereas stable builds are released and published only when a new release gets tagged. You can find the published artifacts at https://download.falco.org/?prefix=plugins.
If you wish to contribute your plugin to the Falcosecurity organization, you just need to open a Pull Request to add it inside the plugins
folder and to add it inside the registry. In order to be hosted in this repository, plugins must be licensed under the Apache 2.0 License.
Contributing
If you want to help and wish to contribute, please review our contribution guidelines. Code contributions are always encouraged and welcome!
License
This project is licensed to you under the Apache 2.0 Open Source License.