Discover / Security

Falco Cloud Native Security MCP

by falcosecurityC++

Cloud-native runtime security threat detection engine for Kubernetes and Docker.

Toolexperimental

Maturity: experimental because latest release 0.44.1 is pre 1.0. Derived from release and commit history, not a rating.

Stars
9.2k
Forks
1.1k
Downloads / mo
Last commit
2026-07-31
License
Apache-2.0
Open issues
70

Market and trust evidence

Edition not yet matched

No exact skills.sh identity match is available for this repository. Repository adoption and freshness remain visible above; install momentum is not inferred.

Trust analysis is a screening signal, not a security warranty. Read the ranking and trust methodology.

In practice

Written by AI from this repository’s README · high confidence

Teams cannot tell in real time when a container or host does something unexpected, such as spawning an unexpected shell.

Use it when

When you need runtime threat detection on Linux hosts or Kubernetes clusters with events forwarded to a SIEM or data lake.

Not the right pick when

It is Linux only and works as a kernel monitoring agent, so it does not fit environments where you cannot run one.

Capabilities

  • Kernel level monitoring of syscall events
  • Detection rules from the official Falco ruleset
  • Container runtime and Kubernetes metadata enrichment
  • Plugins for events beyond syscalls
  • Helm charts for cluster deployment
  • Docker compose demo with falcosidekick and its UI

Requirements

  • A Linux operating system with a compatible environment
  • Docker for the provided demo environment

Cost: Free and open source

Video walkthroughs

Third-party YouTube uploads matched to this tool by title, channel and repository name on 2026-08-03. Not made, reviewed or endorsed by SkillPilot. View counts and publish months are as of the match date and the month is approximate. Nothing loads from YouTube until you press play.

What the repository ships

CI configured

Detected from the actual files in the repository root.

Latest release 0.44.1

Published 2026-06-11

LIBS

DRIVER

| Packages | Download |

| -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ |

| rpm-x86_64 | rpm |

| deb-x86_64 | deb |

| tgz-x86_64 | tgz |

| tgz-static-x86_64 | tgz-static |

| rpm-aarch64 | rpm |

| deb-aarch64 | deb |

| tgz-aarch64 | tgz |

| Images |

|---------------------------------------------------------------------------|

| docker pull docker.io/falcosecurity/falco:0.44.1 |

| docker pull public.ecr.aws/falcosecurity/falco:0.44.1 |

| docker pull docker.io/falcosecurity/falco-driver-loader:0.44.1 |

| docker pull docker.io/falcosecurity/falco-driver-loader:0.44.1-buster |

| docker pull docker.io/falcosecurity/falco:0.44.1-debian |

v0.44.1

Released on 2026-06-11

Major Changes

  • feat(userspace/falco): add support for disabling BPF iterators [#3879] - @ekoops

Bug Fixes

  • fix: fix multiple issues related to BPF iterators (solved by bumping libs to 0.25.4) [#3879] - @ekoops

Statistics

| MERGED PRS | NUMBER |

|-----------------|--------|

| Not user-facing | 0 |

| Release note | 1 |

| Total | 1 |

Release Manager @ekoops

Tags

README

Falco

Latest release Supported Architectures License Docs

Falco Core Repository Stable OpenSSF Scorecard OpenSSF Best Practices

Falco

Falco is a cloud native runtime security tool for Linux operating systems. It is designed to detect and alert on abnormal behavior and potential security threats in real-time.

At its core, Falco is a kernel monitoring and detection agent that observes events, such as syscalls, based on custom rules. Falco can enhance these events by integrating metadata from the container runtime and Kubernetes. The collected events can be analyzed off-host in SIEM or data lake systems.

Falco, originally created by Sysdig, is a graduated project under the Cloud Native Computing Foundation (CNCF) used in production by various organisations.

For detailed technical information and insights into the cyber threats that Falco can detect, visit the official Falco website.

For comprehensive information on the latest updates and changes to the project, please refer to the Change Log.

The Falco Project

The Falco Project codebase is maintained under the falcosecurity GitHub organization. The primary repository, falcosecurity/falco, holds the source code for the Falco binary, while other sub-projects are hosted in dedicated repositories. This approach of isolating components into specialized repositories enhances modularity and focused development. Notable core repositories include:

  • falcosecurity/libs: This repository hosts Falco's core libraries, which constitute the majority of the binary’s source code and provide essential features, such as kernel drivers.
  • falcosecurity/rules: It contains the official ruleset for Falco, offering pre-defined detection rules for various security threats and abnormal behaviors.
  • falcosecurity/plugins: This repository supports integration with external services through plugins that extend Falco's capabilities beyond syscalls and container events, with plans for evolving specialized functionalities in future releases.
  • falcosecurity/falcoctl: A command-line utility designed for managing and interacting with Falco.
  • falcosecurity/charts: This repository publishes Helm charts for deploying Falco and its ecosystem. The Falco chart source lives in chart/falco.

For further insights into our repositories and additional details about our governance model, please visit the official hub of The Falco Project: falcosecurity/evolution.

Getting Started with Falco

If you're new to Falco, begin your journey with our Getting Started guide. For production deployments, please refer to our comprehensive Setup documentation.

As final recommendations before deploying Falco, verify environment compatibility, define your detection goals, optimize performance, choose the appropriate build, and plan for SIEM or data lake integration to ensure effective incident response.

Demo Environment

A demo environment is provided via a docker-compose file that can be started on a docker host which includes falco, falcosidekick, falcosidekick-ui and its required redis database. For more information see the docker-compose section

Join the Community

To get involved with the Falco Project please visit the Community repository to find more information and ways to get involved.

If you have any questions about Falco or contributing, do not hesitate to file an issue or contact the Falco maintainers and community members for assistance.

How to reach out?

Commitment to Falco's Own Security

Full reports of various security audits can be found here.

In addition, you can refer to the falco and libs security sections for detailed updates on security advisories and policies.

To report security vulnerabilities, please follow the community process outlined in the documentation found here.

Building

For comprehensive, step-by-step instructions on building Falco from source, please refer to the official documentation.

Testing

<details>

<summary>Expand Testing Instructions</summary>

Falco's Build Falco from source is the go-to resource to understand how to build Falco from source. In addition, the falcosecurity/libs repository offers additional valuable information about tests and debugging of Falco's underlying libraries and kernel drivers.

Here's an example of a cmake command that will enable everything you need for all unit tests of this repository:


cmake \
-DUSE_BUNDLED_DEPS=ON \
-DBUILD_DRIVER=ON \
-DBUILD_FALCO_MODERN_BPF=ON \
-DCREATE_TEST_TARGETS=ON \
-DBUILD_FALCO_UNIT_TESTS=ON ..;

Build and run the unit test suite:


nproc=$(grep processor /proc/cpuinfo | tail -n 1 | awk '{print $3}');
make -j$(($nproc-1)) falco_unit_tests;
# Run the tests
sudo ./unit_tests/falco_unit_tests;

Optionally, build the driver of your choice and test run the Falco binary to perform manual tests.

Lastly, The Falco Project has moved its Falco regression tests to falcosecurity/testing.

</details>

</br>

## How to Contribute

Please refer to the Contributing guide and the Code of Conduct for more information on how to contribute.

FAQs

Why is Falco in C++ rather than Go or {language}?

<details>

<summary>Expand Information</summary>

  1. The first lines of code at the base of Falco were written some time ago, where Go didn't yet have the same level of maturity and adoption as today.
  2. The Falco execution model is sequential and mono-thread due to the statefulness requirements of the tool, and so most of the concurrency-related selling points of the Go runtime would not be leveraged at all.
  3. The Falco code deals with very low-level programming in many places, and we all know that interfacing Go with C is possible but brings tons of complexity and tradeoffs to the table.
  4. As a security tool meant to consume a crazy high throughput of events per second, Falco needs to squeeze performance in all hot paths at runtime and requires deep control on memory allocation, which the Go runtime can't provide (there's also garbage collection involved).
  5. Although Go didn't suit the engineering requirements of the core of Falco, we still thought that it could be a good candidate for writing Falco extensions through the plugin system. This is the main reason we gave special attention and high priority to the development of the plugin-sdk-go.
  6. Go is not a requirement for having statically-linked binaries. In fact, we provide fully-static Falco builds since few years. The only issue with those is that the plugin system can't be supported with the current dynamic library model we currently have.
  7. The plugin system has been envisioned to support multiple languages, so on our end maintaining a C-compatible codebase is the best strategy to ensure maximum cross-language compatibility.
  8. In general, plugins have GLIBC requirements/dependencies because they have low-level C bindings required for dynamic loading. A potential solution for the future could be to also support plugin to be statically-linked at compilation time and so released as bundled in the Falco binary. Although no work started yet in this direction, this would solve most issues you reported and would provide a totally-static binary too. Of course, this would not be compatible with dynamic loading anymore, but it may be a viable solution for our static-build flavor of Falco.
  9. Memory safety is definitely a concern and we try our best to keep an high level of quality even though C++ is quite error prone. For instance, we try to use smart pointers whenever possible, we build the libraries with an address sanitizer in our CI, we run Falco through Valgrind before each release, and have ways to stress-test it to detect performance regressions or weird memory usage (e.g. https://github.com/falcosecurity/event-generator). On top of that, we also have third parties auditing the codebase by time to time. None of this make a perfect safety standpoint of course, but we try to maximize our odds. Go would definitely make our life easier from this perspective, however the tradeoffs never made it worth it so far due to the points above.
  10. The C++ codebase of falcosecurity/libs, which is at the core of Falco, is quite large and complex. Porting all that code to another language would be a major effort requiring lots of development resource and with an high chance of failure and regression. As such, our approach so far has been to choose refactors and code polishing instead, up until we'll reach an optimal level of stability, quality, and modularity, on that portion of code. This would allow further developments to be smoother and more feasibile in the future.

</details>

</br>

What's next for Falco?

Stay updated with Falco's evolving capabilities by exploring the Falco Roadmap, which provides insights into the features currently under development and planned for future releases.

License

Falco is licensed to you under the Apache 2.0 open source license.

Resources

Related tools