Cloud Native Runtime Security
Go to file
Melissa Kilby 6c12cc655e cleanup(rules): cleanup redundant use of always_true macros
Signed-off-by: Melissa Kilby <melissa.kilby.oss@gmail.com>
2022-08-26 11:40:18 +02:00
.circleci fix(ci): fixed docker manifest circleci. 2022-07-29 12:29:02 +02:00
.github update(CI): do not check hidden files with codespell 2022-08-23 16:29:05 +02:00
audits move audit doc 2019-12-17 09:15:41 +01:00
brand Fix typos 2022-04-06 14:40:31 +02:00
cmake update(cmake): bump libs and driver version to 6599e2efebce30a95f27739d655d53f0d5f686e4 2022-08-25 16:32:15 +02:00
docker chore(OWNERS): remove duplicates in reviewers 2022-07-20 10:39:56 +02:00
proposals Fix typos 2022-04-06 14:40:31 +02:00
rules cleanup(rules): cleanup redundant use of always_true macros 2022-08-26 11:40:18 +02:00
scripts Support multiple URLs for DRIVERS_REPO environment variable (comma separated) 2022-08-24 18:25:10 +02:00
test update(test/output_files): add "hostname" to fixture 2022-08-25 16:59:15 +02:00
tests update(tests/engine): sync ast structs to new libs definitions 2022-08-25 16:32:15 +02:00
userspace refactor(userspace/falco): make signal handlers thread-safe 2022-08-26 11:31:18 +02:00
.clang-format chore: clang format following the current style 2019-07-03 09:07:00 +02:00
.cmake-format spelling: lexicographically 2022-03-01 16:30:24 +01:00
.codespellignore fix(CI): codespell should ignore ro word 2022-08-23 16:29:05 +02:00
.gitignore cleanup(userspace/engine): remove lua files and lua-related code sections 2022-04-11 12:22:18 +02:00
.yamllint.conf new: YAML lint configuration 2019-07-10 13:00:03 +02:00
ADOPTERS.md add gVisor to ADOPTERS.md 2022-04-20 12:20:27 +02:00
CHANGELOG.md update(docs): changelog for version 0.32.2 2022-08-09 12:13:11 +02:00
CMakeLists.txt new(userspace): print architecture information 2022-07-31 19:57:29 +02:00
COPYING docs: update COPYING 2019-10-08 16:02:26 +02:00
falco.yaml update(falco.yaml): update default configuration and its comments 2022-08-26 11:23:17 +02:00
OWNERS chore(OWNERS): remove duplicates in reviewers 2022-07-20 10:39:56 +02:00
README.md chore(docs): updated release.md template for packages adding aarch64 packages. 2022-07-13 12:01:23 +02:00
RELEASE.md chore(docs): updated release.md template for packages adding aarch64 packages. 2022-07-13 12:01:23 +02:00

Cloud Native Runtime Security.


Build Status CII Best Practices Summary GitHub Latest Architectures

Want to talk? Join us on the #falco channel in the Kubernetes Slack.

Latest releases

Read the change log.

development stable
rpm-x86_64 rpm-dev rpm
deb-x86_64 deb-dev deb
binary-x86_64 bin-dev bin
rpm-aarch64 rpm-dev rpm
deb-aarch64 deb-dev deb
binary-aarch64 bin-dev bin

The Falco Project, originally created by Sysdig, is an incubating CNCF open source cloud native runtime security tool. Falco makes it easy to consume kernel events, and enrich those events with information from Kubernetes and the rest of the cloud native stack. Falco can also be extended to other data sources by using plugins. Falco has a rich set of security rules specifically built for Kubernetes, Linux, and cloud-native. If a rule is violated in a system, Falco will send an alert notifying the user of the violation and its severity.

What can Falco detect?

Falco can detect and alert on any behavior that involves making Linux system calls. Falco alerts can be triggered by the use of specific system calls, their arguments, and by properties of the calling process. For example, Falco can easily detect incidents including but not limited to:

  • A shell is running inside a container or pod in Kubernetes.
  • A container is running in privileged mode, or is mounting a sensitive path, such as /proc, from the host.
  • A server process is spawning a child process of an unexpected type.
  • Unexpected read of a sensitive file, such as /etc/shadow.
  • A non-device file is written to /dev.
  • A standard system binary, such as ls, is making an outbound network connection.
  • A privileged pod is started in a Kubernetes cluster.

Installing Falco

If you would like to run Falco in production please adhere to the official installation guide.

Kubernetes
Tool Link Note
Helm Chart Repository The Falco community offers regular helm chart releases.
Minikube Tutorial The Falco driver has been baked into minikube for easy deployment.
Kind Tutorial Running Falco with kind requires a driver on the host system.
GKE Tutorial We suggest using the eBPF driver for running Falco on GKE.

Developing

Falco is designed to be extensible such that it can be built into cloud-native applications and infrastructure.

Falco has a gRPC endpoint and an API defined in protobuf. The Falco Project supports various SDKs for this endpoint.

SDKs
Language Repository
Go client-go
Rust client-rs
Python client-py

Plugins

Falco comes with a plugin framework that extends it to potentially any cloud detection scenario. Plugins are shared libraries that conform to a documented API and allow for:

  • Adding new event sources that can be used in rules;
  • Adding the ability to define new fields and extract information from events.

The Falco Project maintains various plugins and provides SDKs for plugin development.

SDKs
Language Repository
Go falcosecurity/plugin-sdk-go

Documentation

The Official Documentation is the best resource to learn about Falco.

Join the Community

To get involved with The Falco Project please visit the community repository to find more.

How to reach out?

Contributing

See the CONTRIBUTING.md.

Security Audit

A third party security audit was performed by Cure53, you can see the full report here.

Reporting security vulnerabilities

Please report security vulnerabilities following the community process documented here.

License Terms

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