subvectors
Conformance vectors for OIDC trust subjects — the answer key for CI/CD OIDC trust decisions: a cited, versioned test-vector suite answering "does subject S satisfy trust condition C, and is C safe?"
When a CI pipeline authenticates to a cloud via OIDC (GitHub Actions to AWS/Azure/GCP today), the
entire security boundary is a string comparison: the token's sub claim versus an admin-written
matching rule — an AWS IAM trust-policy condition, an Azure federated-identity-credential (FIC)
subject, a GCP Workload Identity Federation attribute condition. Every security tool in this space
must re-implement that comparison and judge those rules. They re-figure it out alone, and they get
it wrong.
Status: pre-v0.1. An independent personal project, built on personal time and personal equipment.
The proof this is needed (verified 2026-07-04)
Checkov — one of the most widely used IaC security scanners — ships the only Azure FIC subject
check anywhere (CKV_AZURE_249). Read against its own source:
- It PASSES
repo:org/*(any repo in the org may assume the role) andrepo:org/repo:pull_request(unreviewed PR code may) — dangerous patterns waved through. - Its repo regex has no
@in the charset, so it will FAIL every valid immutable-format subject (repo:owner@123456/name@456789:...) — the format GitHub makes mandatory for repos created after 2026-07-15.
The formats churn (GitHub immutable claims, Azure flexible-FIC expressions in preview, per-issuer dialects from GitLab/Bitbucket/CircleCI), and every scanner re-derives the semantics from prose docs. A single maintained, cited corpus of test vectors fixes that for everyone.
What a vector looks like
{
"id": "gh-aws-0007",
"issuer": "github",
"subject": "repo:acme/webapp:pull_request",
"condition": { "consumer": "aws-stringlike", "pattern": "repo:acme/webapp:*" },
"expect": "match",
"judgment": {
"grade": "dangerous",
"reason": "pattern admits pull_request runs, which execute unmerged proposed changes rather than the protected default branch"
},
"sources": ["https://docs.github.com/en/actions/deployment/security-hardening-your-deployments"],
"status": "documented"
}
Three layers per vector:
- Grammar — is the subject well-formed for its issuer (classic AND immutable GitHub formats)?
- Match semantics — does it satisfy the consumer's condition (AWS
StringLike/StringEqualsglobbing, Azure FIC exact match + flexible expressions, GCP CEL)? - Judgment — is the condition safe? Graded findings for the patterns that matter:
pull_requestsubjects, unprotected refs, wildcarded repos/orgs, missingaudpinning. The graded patterns are a stable, citable vocabulary — seedocs/JUDGMENT-CATALOG.md.
Every vector carries a source citation and a documented vs observed status. A ~100-line
reference matcher (Python, pytest) passes the suite — it is a correctness oracle, not a product.
Coverage
14 suites - 133 vectors across 5 issuers and 6 consumer semantics.
Vectors by issuer x cloud-consumer semantics:
| Issuer | aws-stringlike | aws-stringequals | aws-all | azure-fic-exact | azure-fic-flexible | gcp-cel | Total |
|---|---|---|---|---|---|---|---|
github |
12 | 15 | 5 | 10 | 8 | 12 | 62 |
gitlab |
5 | 5 | 6 | 6 | 5 | 6 | 33 |
bitbucket |
1 | 2 | 3 | - | - | - | 6 |
circleci |
4 | - | 3 | - | - | 6 | 13 |
terraform-cloud |
3 | 3 | 1 | - | 6 | 6 | 19 |
| Total | 25 | 25 | 18 | 16 | 19 | 30 | 133 |
Suites:
bitbucket-aws0.1.0 - 6 vectorscircleci-aws0.1.0 - 7 vectorscircleci-gcp0.1.0 - 6 vectorsgithub-aws0.3.0 - 32 vectorsgithub-azure-flexible0.1.0 - 8 vectorsgithub-azure0.1.0 - 10 vectorsgithub-gcp0.1.0 - 12 vectorsgitlab-aws0.2.0 - 16 vectorsgitlab-azure-flexible0.1.0 - 5 vectorsgitlab-azure0.1.0 - 6 vectorsgitlab-gcp0.1.0 - 6 vectorsterraform-aws0.1.0 - 7 vectorsterraform-azure-flexible0.1.0 - 6 vectorsterraform-gcp0.1.0 - 6 vectors
Judgments: 30 safe - 45 caution - 36 dangerous - 22 ungraded (mechanical no-match / contrast vectors carry no safety grade).
Install
pip install subvectors
The wheel ships the entire corpus, so a consumer pins a versioned artifact instead of vendoring JSON by hand:
from subvectors import corpus
corpus.suite_names() # ['bitbucket-aws', ..., 'terraform-gcp']
corpus.load_suite("github-aws") # one suite, parsed
corpus.load_schema() # the JSON Schema the suites validate against
Prefer no dependency at all? The vectors are plain JSON under vectors/ —
clone and read. The corpus itself is CC0 (vectors/LICENSE).
Why an answer key instead of another scanner
Scanners in this space compete and get obsoleted: SpecterOps GitHound already maps workflow-to-cloud OIDC reach, Prowler shipped a GitHub provider (2026-07-02), Wiz and Datadog are converging. A test-vector suite does not compete with scanners — it grades them. Each new tool entering the space is a new consumer of the corpus, the way Wycheproof tests everyone's cryptography and the JSON-Schema-Test-Suite tests everyone's validators. Consumers keep their own matching code (no runtime dependency to trust) and import the vectors at test time.
Bugs the vectors expose in real tools get fixed by upstream PRs (Checkov's OIDC check family, Cartography's unparsed trust-policy conditions) — the distribution channel and the proof, in one.
Scope order
GitHub issuer + AWS consumer first, Azure FIC as the depth tranche (its exact-match and flexible-expression semantics are the least-tooled corner), then GCP CEL and non-GitHub issuers. Fully offline: JSON vectors + pytest, no cloud account required.
Why this project exists (for me)
Closes a specific, recurring gap: multi-cloud IAM / OIDC trust-boundary depth (AWS + Azure). Writing a falsifiable, cited test case about a trust rule forces genuinely understanding the rule — active-recall learning with a public artifact as the receipt.
License
Dual-licensed to maximize adoptability:
- Vector data (
vectors/) — CC0-1.0 (public-domain dedication). Embed the vectors in your tool's test suite with zero attribution or licensing friction — that frictionlessness is the point. Seevectors/LICENSE. - Everything else (the reference matcher, schema, docs) — Apache-2.0. See
LICENSE.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file subvectors-0.2.0.tar.gz.
File metadata
- Download URL: subvectors-0.2.0.tar.gz
- Upload date:
- Size: 101.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75068e9f2dbf030d589810cf0a20a2ddbda77734faffcb1cd8a18f8cac24f7c6
|
|
| MD5 |
5b303bd669a01016500c5242fd4535fc
|
|
| BLAKE2b-256 |
186eef151edf3e2ba925c3a08fdede2855d7ee71e0832f0f10d1a0b479a415af
|
Provenance
The following attestation bundles were made for subvectors-0.2.0.tar.gz:
Publisher:
release.yml on Dashtid/subvectors
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
subvectors-0.2.0.tar.gz -
Subject digest:
75068e9f2dbf030d589810cf0a20a2ddbda77734faffcb1cd8a18f8cac24f7c6 - Sigstore transparency entry: 2581978750
- Sigstore integration time:
-
Permalink:
Dashtid/subvectors@b649d1e4580ddd38be6337b1fd7733b426afb15c -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Dashtid
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@b649d1e4580ddd38be6337b1fd7733b426afb15c -
Trigger Event:
release
-
Statement type:
File details
Details for the file subvectors-0.2.0-py3-none-any.whl.
File metadata
- Download URL: subvectors-0.2.0-py3-none-any.whl
- Upload date:
- Size: 82.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
973336c1b6fb63caff99e2c3bc1888254bfd9710cbcdcc2a171f8092131182a5
|
|
| MD5 |
faec953e210fbb1883bb4e9924d1f9da
|
|
| BLAKE2b-256 |
e7aa0b04b87d097fba8d82a16dd0f975eaff3932a9a9b51de1eb57aca41d079c
|
Provenance
The following attestation bundles were made for subvectors-0.2.0-py3-none-any.whl:
Publisher:
release.yml on Dashtid/subvectors
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
subvectors-0.2.0-py3-none-any.whl -
Subject digest:
973336c1b6fb63caff99e2c3bc1888254bfd9710cbcdcc2a171f8092131182a5 - Sigstore transparency entry: 2581978760
- Sigstore integration time:
-
Permalink:
Dashtid/subvectors@b649d1e4580ddd38be6337b1fd7733b426afb15c -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Dashtid
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@b649d1e4580ddd38be6337b1fd7733b426afb15c -
Trigger Event:
release
-
Statement type: