Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Security Policy

## Scope

qms-kit is a CLI tool that deploys ISO 9001 QMS scaffolds into self-hosted
(XWiki + Redmine) and cloud (Confluence + Jira) platforms.

**Credentials never leave your machine** — all secrets (API tokens, passwords)
are passed via environment variables and are never written to disk or logged.
Client overlay configs in `config/clients/` are gitignored by design.

## Security Scanning in the SDLC

| Layer | Tool | Trigger |
|-------|------|---------|
| SAST (Python) | bandit | CI (every PR) |
| Lint / code quality | ruff | CI (every PR) |
| Dependency updates | Renovate | Automated PRs |
| SBOM | Syft (CycloneDX) | On every `v*` release tag |

## Reporting a Vulnerability

Please **do not** open a public GitHub issue for security vulnerabilities.

Instead: GitHub → Security → **"Report a vulnerability"** (private disclosure)
or contact the repository owner directly.

Response SLA:
- **Acknowledgement:** within 7 days
- **Fix or mitigation:** within 30 days for confirmed vulnerabilities

No bug bounty programme — reports are handled promptly and credited in the
release notes if desired.
Loading