https://github.com/issif/falco-rules-explorer
A dashboard to explore Falco Rules
https://github.com/issif/falco-rules-explorer
falco security
Last synced: 3 months ago
JSON representation
A dashboard to explore Falco Rules
- Host: GitHub
- URL: https://github.com/issif/falco-rules-explorer
- Owner: Issif
- Created: 2023-02-15T15:55:58.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2026-02-28T06:40:40.000Z (3 months ago)
- Last Synced: 2026-02-28T12:32:28.891Z (3 months ago)
- Topics: falco, security
- Language: HTML
- Homepage: https://Issif.github.io/falco-rules-explorer
- Size: 2.41 MB
- Stars: 9
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Falco Rules Explorer

## Description
> This project is a WIP
Falco Rules Explorer is dashboard to explore the Falco rules in a friendly way. You can search, filter and display all details of rules.
## Configuration
The list of rules to scrape is managed by the file `registry.yaml`:
```yaml
---
rules_files:
- "https://github.com/falcosecurity/rules/blob/main/rules/falco_rules.yaml"
- "https://github.com/falcosecurity/rules/blob/main/rules/application_rules.yaml"
- "https://github.com/falcosecurity/plugins/blob/master/plugins/k8saudit/rules/k8s_audit_rules.yaml"
- "https://github.com/falcosecurity/plugins/blob/master/plugins/cloudtrail/rules/aws_cloudtrail_rules.yaml"
- "https://github.com/falcosecurity/plugins/blob/master/plugins/github/rules/github.yaml"
- "https://github.com/falcosecurity/plugins/blob/master/plugins/okta/rules/okta_rules.yaml"
```
## Create the index of rules
```shell
go run .
```
It creates an `index.json` file which lists all rules with their details.
## View the dashboard
```shell
python -m http.server 3000
```
Go to http://0.0.0.0:3000/.
## Frontend
The sources for the frontend are:
- `index.html`: the dashboard
- `rule.html`: details of a rule
## Author
Thomas Labarussias (https://github.com/Issif)