falcoctl-fips
Falcoctl-FIPS Overview
Secure your stack with a FIPS-validated, hardened Falcoctl image freshly-built by Minimus. Minimus images always include the most up-to-date package version for all packages and dependencies contained in the image.
Use Falcoctl when you need a command line tool to install, manage, and distribute Falco rules, plugins, and artifacts for runtime security monitoring in Kubernetes and cloud environments.
FIPS 140-3 Certification
This image is FIPS-validated to ensure its cryptographic operations meet the Federal Information Processing Standards (FIPS) required for secure government and regulated environments. Its core cryptographic modules are validated under the NIST Cryptographic Module Validation Program (CMVP) and comply with the FIPS 140-3 standard.
To verify that the FIPS 140-3 provider is configured and active, follow the instructions in the FIPS compliance tab.
Try It Out
Take the Minimus Falcoctl-FIPS image for a test run by looking up its version information:
docker run --rm \
reg.mini.dev/falcoctl-fips versionYou will see the version information, for example Client Version: 0.11.2.
Ready to register an index?
We will register the official Falco Security index from https://falcosecurity.github.io/falcoctl/index.yaml so we can install Falco rules and plugins.
Step 1 - Create directories before mounting them
The Minimus container runs by default so we will need to pre-create the host directories before mounting them to ensure the container has the required write permissions.
Otherwise, Docker will create the directories during the run command and only a root user will be able to access them but not the container's user.
mkdir falcoctl
mkdir falcoctl-cacheDepending on our host default permissions, we may need to give user 1000 write permissions to the directories. You can skip this step and come back to it if you get an error such as ERROR unable to write config file: ... permission denied:
sudo chown 1000:1000 falcoctl
sudo chown 1000:1000 falcoctl-cacheStep 2 - Run the container and register the index
Run the container, mount the directories, and register the index:
docker run --rm \
-v ./falcoctl-cache:/home/falcoctl/.config/falcoctl \
-v ./falcoctl:/etc/falcoctl \
reg.mini.dev/falcoctl-fips index add falcosecurity https://falcosecurity.github.io/falcoctl/index.yamlWe should get a success message such as:
INFO Adding index
├ name: falcosecurity
└ path: https://falcosecurity.github.io/falcoctl/index.yaml
INFO Index successfully added Technical Considerations
The Falcoctl-FIPS image provided by Minimus is a FIPS-validated, slim, security-hardened alternative to the public image from Docker Hub. The images are largely interchangeable, with a few differences as noted below.
Falcoctl-FIPS built by Minimus:
- Runs as non-root by default. The public image runs as user 65532.
- Drill down on the version specification tab to see the default user, listening ports, entrypoint, volumes, environment variables, etc.
The Payoff
A hardened, minimal image that will remain more secure for the long run and accrue vulnerabilities at a slower rate.
- See the risk reduction dashboard for a detailed CVE comparison over the past 30 days.
- Review the compliance report to see the default hardening and security configurations for the image.
Terms & Info
Trademark
This catalog is published by Minimus. All product names, logos, and marks, other than those belonging to Minimus, shown are owned by their respective rights holders and appear here only to identify the open source software each image contains. Minimus claims no ownership of those marks and implies no affiliation with, endorsement by, certification by, or sponsorship by any rights holder.
Disclaimer
Images are provided "as-is" without warranty of any kind. "Hardened" refers to the security configuration applied at the time of build and does not constitute a guarantee of ongoing security or absence of vulnerabilities. The free tier is provided without support, SLA, or guaranteed patching timelines. Security updates may be applied to paid subscriptions before or instead of free tier images. By pulling or using any image you agree to our Terms of Use.