Skip to content
Merged
Show file tree
Hide file tree
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
19 changes: 19 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: 2
updates:
# Keep the GitHub Actions used by ci.yml / release.yml current.
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
commit-message:
prefix: "chore(ci)"
labels: ["dependencies", "github-actions"]

# Keep Python dependencies (runtime + dev) current.
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
commit-message:
prefix: "chore(deps)"
labels: ["dependencies", "python"]
34 changes: 34 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Security Policy

## Supported versions

| Version | Supported |
|---|---|
| 0.1.x (latest) | βœ… |
| 0.1.0 | ❌ β€” has a known harness-lock bypass; upgrade to **0.1.1+** |

## Reporting a vulnerability

Please report privately via GitHub's **"Report a vulnerability"** button on the
repository's [Security tab](https://github.com/edarm92-arch/rm-tooling/security/advisories/new)
β€” **do not open a public issue** for a suspected vulnerability.

We aim to acknowledge a report within a few days and to release a fix (and a
GitHub Security Advisory) once it is confirmed.

## What counts as a security issue here

rm-validate is a policy **harness**: its whole point is that its rules cannot be
disabled by the code they govern. So, beyond ordinary code vulnerabilities, we
treat as a **security issue** any way for a *target repo* to disable or bypass an
integrity lock from its own configuration β€” for example:

- silencing the capability-mismatch lock (declaring a capability `false` while
the code clearly has it),
- hiding evidence from capability inference via configuration,
- making a check report success (`exit 0`) without actually running,
- neutralizing a check that is meant to be able to fail.

`v0.1.1` fixed exactly this class of bug (the `inference.exclude` bypass). If you
find another way to switch off or blind an integrity lock from a policy file,
that is in scope β€” please report it privately.
Loading