The Maintainers and contributors to KubeArmor take the security of our software seriously. The KubeArmor community has adopted the below security disclosures and response policy to promptly respond to critical issues.
Please do not report security vulnerabilities through public GitHub issues.
For information regarding the security of this project please join our Slack channel.
- You think you discovered a potential security vulnerability in KubeArmor.
- You are unsure how a vulnerability affects KubeArmor.
- You think you discovered a vulnerability in the dependency of KubeArmor. For those projects, please leverage their reporting policy.
- You need assistance in configuring KubeArmor for security - please discuss this in the Slack channel
- You need help applying security-related updates.
- Your issue is not security-related.
To report a vulnerability privately, choose one of the following methods:
- GitHub Security Advisories (Recommended): Submit a private vulnerability report directly through GitHub Security Advisories.
- Email Disclosure: Email the KubeArmor security team at
support@kubearmor.io.
Please include as much detail as possible to help us triage the report quickly:
- Type of issue (e.g. buffer overflow, privilege escalation, injection)
- Affected files, functions, tag/commit hash, or container image version
- Step-by-step instructions and proof-of-concept exploit script to reproduce
- Potential security impact and vector
- Initial Acknowledgment: 3-5 business days.
- Triage & Vulnerability Fix: Fixes are prepared and released within 7 to 28 days depending on severity and complexity.
- Public Disclosure: Security advisories and CVEs are published alongside the patch release.
KubeArmor cryptographically signs container images and release binaries using Cosign and generates Level 3 build provenance with the SLSA Framework.
You can verify the signature of official KubeArmor container images using cosign:
cosign verify \
--certificate-identity-regexp="https://github.com/kubearmor/KubeArmor/\.github/workflows/.*" \
--certificate-oidc-issuer="https://token.actions.githubusercontent.com" \
kubearmor/kubearmor:<tag>Release binary packages (.tar.gz, .deb, .rpm) in GitHub Releases include signature (.sig) and certificate (.pem) bundles. Verify them using:
cosign verify-blob \
--bundle <artifact>.sigstore.json \
--certificate <artifact>.pem \
--signature <artifact>.sig \
--certificate-identity-regexp="https://github.com/kubearmor/KubeArmor/\.github/workflows/.*" \
--certificate-oidc-issuer="https://token.actions.githubusercontent.com" \
<artifact>Verify SLSA build provenance using slsa-verifier:
slsa-verifier verify-artifact \
--provenance-path multiple.intoto.jsonl \
--source-uri github.com/kubearmor/KubeArmor \
<artifact>KubeArmor continuously monitors and audits code quality and security:
- SAST & CodeQL: Static security analysis runs on every pull request and weekly schedule (
codeql.yml). - Vulnerability Scanning: Container images and dependencies are scanned using Trivy (
ci-trivy-scan.yaml) and OSV. - Dependency Updates: Automated dependency updates and digest pinning via Renovate.
- Scorecard: OpenSSF Scorecard supply-chain security monitoring (
scorecard.yml).
KubeArmor versions follow Semantic Versioning terminology (x.y.z):
- Security fixes are backported to the latest two minor releases.
- Patch releases are shipped periodically or as urgent security releases when required.