@blamejs/exceptd-skills 0.12.13 → 0.12.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/CHANGELOG.md +217 -0
  2. package/bin/exceptd.js +522 -27
  3. package/data/_indexes/_meta.json +45 -45
  4. package/data/_indexes/activity-feed.json +4 -4
  5. package/data/_indexes/catalog-summaries.json +29 -29
  6. package/data/_indexes/chains.json +3238 -3210
  7. package/data/_indexes/frequency.json +3 -0
  8. package/data/_indexes/jurisdiction-map.json +5 -3
  9. package/data/_indexes/section-offsets.json +712 -685
  10. package/data/_indexes/theater-fingerprints.json +1 -1
  11. package/data/_indexes/token-budget.json +355 -340
  12. package/data/atlas-ttps.json +144 -129
  13. package/data/attack-techniques.json +319 -76
  14. package/data/cve-catalog.json +516 -476
  15. package/data/cwe-catalog.json +1081 -759
  16. package/data/exploit-availability.json +63 -15
  17. package/data/framework-control-gaps.json +867 -843
  18. package/data/playbooks/ai-api.json +3 -1
  19. package/data/playbooks/containers.json +11 -3
  20. package/data/playbooks/cred-stores.json +3 -1
  21. package/data/playbooks/crypto-codebase.json +11 -11
  22. package/data/playbooks/crypto.json +1 -1
  23. package/data/playbooks/hardening.json +3 -1
  24. package/data/playbooks/kernel.json +3 -1
  25. package/data/playbooks/library-author.json +21 -10
  26. package/data/playbooks/mcp.json +1 -1
  27. package/data/playbooks/runtime.json +3 -1
  28. package/data/playbooks/sbom.json +2 -2
  29. package/data/playbooks/secrets.json +3 -1
  30. package/data/rfc-references.json +276 -276
  31. package/keys/EXPECTED_FINGERPRINT +1 -0
  32. package/lib/auto-discovery.js +57 -35
  33. package/lib/cross-ref-api.js +39 -6
  34. package/lib/cve-curation.js +33 -14
  35. package/lib/lint-skills.js +6 -1
  36. package/lib/playbook-runner.js +742 -78
  37. package/lib/prefetch.js +30 -8
  38. package/lib/refresh-external.js +40 -22
  39. package/lib/refresh-network.js +233 -17
  40. package/lib/scoring.js +191 -18
  41. package/lib/source-ghsa.js +219 -37
  42. package/lib/source-osv.js +381 -122
  43. package/lib/validate-catalog-meta.js +64 -9
  44. package/lib/validate-cve-catalog.js +56 -18
  45. package/lib/validate-indexes.js +88 -37
  46. package/lib/validate-playbooks.js +46 -0
  47. package/lib/verify.js +72 -0
  48. package/manifest-snapshot.json +1 -1
  49. package/manifest-snapshot.sha256 +1 -0
  50. package/manifest.json +73 -73
  51. package/orchestrator/dispatcher.js +21 -1
  52. package/orchestrator/event-bus.js +52 -8
  53. package/orchestrator/index.js +279 -20
  54. package/orchestrator/pipeline.js +63 -2
  55. package/orchestrator/scanner.js +32 -10
  56. package/orchestrator/scheduler.js +150 -17
  57. package/package.json +3 -1
  58. package/sbom.cdx.json +7 -7
  59. package/scripts/check-manifest-snapshot.js +32 -0
  60. package/scripts/check-sbom-currency.js +65 -3
  61. package/scripts/check-test-coverage.js +142 -19
  62. package/scripts/predeploy.js +83 -39
  63. package/scripts/refresh-manifest-snapshot.js +55 -4
  64. package/scripts/validate-vendor-online.js +169 -0
  65. package/scripts/verify-shipped-tarball.js +141 -9
  66. package/skills/ai-attack-surface/skill.md +18 -10
  67. package/skills/ai-c2-detection/skill.md +7 -2
  68. package/skills/ai-risk-management/skill.md +5 -4
  69. package/skills/api-security/skill.md +3 -3
  70. package/skills/attack-surface-pentest/skill.md +5 -5
  71. package/skills/cloud-security/skill.md +1 -1
  72. package/skills/compliance-theater/skill.md +8 -8
  73. package/skills/container-runtime-security/skill.md +1 -1
  74. package/skills/dlp-gap-analysis/skill.md +5 -1
  75. package/skills/email-security-anti-phishing/skill.md +1 -1
  76. package/skills/exploit-scoring/skill.md +18 -18
  77. package/skills/framework-gap-analysis/skill.md +6 -6
  78. package/skills/global-grc/skill.md +3 -2
  79. package/skills/identity-assurance/skill.md +2 -2
  80. package/skills/incident-response-playbook/skill.md +4 -4
  81. package/skills/kernel-lpe-triage/skill.md +21 -2
  82. package/skills/mcp-agent-trust/skill.md +17 -10
  83. package/skills/mlops-security/skill.md +2 -1
  84. package/skills/ot-ics-security/skill.md +1 -1
  85. package/skills/policy-exception-gen/skill.md +3 -3
  86. package/skills/pqc-first/skill.md +1 -1
  87. package/skills/rag-pipeline-security/skill.md +7 -3
  88. package/skills/researcher/skill.md +20 -3
  89. package/skills/sector-energy/skill.md +1 -1
  90. package/skills/sector-federal-government/skill.md +1 -1
  91. package/skills/sector-financial/skill.md +3 -3
  92. package/skills/sector-healthcare/skill.md +2 -2
  93. package/skills/security-maturity-tiers/skill.md +7 -7
  94. package/skills/skill-update-loop/skill.md +19 -3
  95. package/skills/supply-chain-integrity/skill.md +1 -1
  96. package/skills/threat-model-currency/skill.md +11 -11
  97. package/skills/threat-modeling-methodology/skill.md +3 -3
  98. package/skills/webapp-security/skill.md +1 -1
  99. package/skills/zeroday-gap-learn/skill.md +51 -7
  100. package/vendor/blamejs/_PROVENANCE.json +4 -1
  101. package/vendor/blamejs/worker-pool.js +38 -0
@@ -67,7 +67,9 @@
67
67
  "T1552.001",
68
68
  "T1555"
69
69
  ],
70
- "cve_refs": [],
70
+ "cve_refs": [
71
+ "CVE-2026-30615"
72
+ ],
71
73
  "cwe_refs": [
72
74
  "CWE-522",
73
75
  "CWE-256",
@@ -29,7 +29,9 @@
29
29
  "on_fail": "halt"
30
30
  }
31
31
  ],
32
- "mutex": [],
32
+ "mutex": [
33
+ "library-author"
34
+ ],
33
35
  "feeds_into": [
34
36
  {
35
37
  "playbook_id": "kernel",
@@ -38,13 +40,19 @@
38
40
  {
39
41
  "playbook_id": "secrets",
40
42
  "condition": "always"
43
+ },
44
+ {
45
+ "playbook_id": "sbom",
46
+ "condition": "container-image-layers.length > 0"
41
47
  }
42
48
  ]
43
49
  },
44
50
  "domain": {
45
51
  "name": "Container runtime posture + manifest review",
46
52
  "attack_class": "container-escape",
47
- "atlas_refs": [],
53
+ "atlas_refs": [
54
+ "AML.T0010"
55
+ ],
48
56
  "attack_refs": [
49
57
  "T1611",
50
58
  "T1610",
@@ -213,7 +221,7 @@
213
221
  ]
214
222
  },
215
223
  "direct": {
216
- "threat_context": "Container escape attack class in 2025-2026 is dominated by the runc / containerd / kubelet CVE chain. CVE-2024-21626 'Leaky Vessels' (runc <1.1.12 working-directory race fd leak into host) shipped Jan 2024 with public PoC and is the canonical container-escape primitive; subsequent runc/containerd CVEs follow the same pattern (host-resource leakage via misconfigured isolation). Mandiant 2025 IR report: ~22% of cloud-tenant compromises involved a container-escape step. The escape is exquisitely sensitive to manifest posture: privileged: true grants the attacker the full host kernel (LPE without escape); hostPID/hostNetwork/hostIPC grant cross-pod visibility; runAsUser: 0 + writable host mount = direct host write. seccompProfile + AppArmor profile presence is the primary mitigation. Manifests in repos are the attestation-vs-reality battleground — admission controllers reject some but not all anti-patterns, depending on policy maturity.",
224
+ "threat_context": "Container escape attack class in 2025-2026 is dominated by the runc / containerd / kubelet CVE chain. Public runc / containerd / kubelet escape primitives — including the 2024 'Leaky Vessels' working-directory race class establish the canonical pattern: host-resource leakage (fd, mount, /proc) via misconfigured isolation. Subsequent CVEs in the runc/containerd/kubelet chain follow the same shape. Mandiant 2025 IR report: ~22% of cloud-tenant compromises involved a container-escape step. The escape is exquisitely sensitive to manifest posture: privileged: true grants the attacker the full host kernel (LPE without escape); hostPID/hostNetwork/hostIPC grant cross-pod visibility; runAsUser: 0 + writable host mount = direct host write. seccompProfile + AppArmor profile presence is the primary mitigation. Manifests in repos are the attestation-vs-reality battleground — admission controllers reject some but not all anti-patterns, depending on policy maturity.",
217
225
  "rwep_threshold": {
218
226
  "escalate": 85,
219
227
  "monitor": 65,
@@ -43,7 +43,9 @@
43
43
  "domain": {
44
44
  "name": "Per-user credential store inventory + identity-assurance posture",
45
45
  "attack_class": "identity-abuse",
46
- "atlas_refs": [],
46
+ "atlas_refs": [
47
+ "AML.T0055"
48
+ ],
47
49
  "attack_refs": [
48
50
  "T1078",
49
51
  "T1552.001",
@@ -393,77 +393,77 @@
393
393
  },
394
394
  {
395
395
  "id": "hash-primitive-call-sites",
396
- "type": "file_path",
396
+ "type": "file",
397
397
  "source": "Grep across the repo (excluding test/spec/fixture/node_modules/vendor/.venv/target/dist/build) for hash-primitive call sites. Patterns: `crypto.createHash\\(`, `crypto.createHmac\\(`, `hashlib\\.(md5|sha1|sha224|sha256|sha384|sha512|blake2b|blake2s|sha3_)`, `MessageDigest\\.getInstance\\(`, `Digest::(MD5|SHA1|SHA256)`, `hash/md5`, `hash/sha1`, `\"md5\"`, `\"sha1\"`, `\"sha-1\"`, `\"sha256\"`, `\"sha3-256\"`. Use Grep with multiline=true where the algorithm-name string is on a different line from the constructor.",
398
398
  "description": "Every hash-primitive call site. Distinguish security-context usage (signature input, MAC input, integrity check, password derivation, token derivation) from non-security usage (cache key, ETag, dedup). The non-security distinction must be evidenced inline; absent evidence, treat as security-context.",
399
399
  "required": true
400
400
  },
401
401
  {
402
402
  "id": "cipher-and-kex-call-sites",
403
- "type": "file_path",
403
+ "type": "file",
404
404
  "source": "Grep for cipher and KEX call sites: `createCipheriv\\(`, `createDecipheriv\\(`, `crypto\\.publicEncrypt\\(`, `crypto\\.privateDecrypt\\(`, `createDiffieHellman\\(`, `createECDH\\(`, `crypto\\.generateKeyPair`, `Cipher\\.getInstance\\(`, `aesgcm`, `ChaCha20Poly1305`, `\\.(seal|open)\\(`, `OpenSSL::Cipher`, hardcoded curve names `\"P-256\"`, `\"secp256r1\"`, `\"prime256v1\"`, `\"P-384\"`, `\"secp384r1\"`, `\"P-521\"`, `\"secp521r1\"`, `\"secp256k1\"`, `\"X25519\"`, `\"X448\"`.",
405
405
  "description": "Cipher and key-exchange call sites. Identify mode (GCM/CBC/CTR/ECB), curve, key size, IV-generation pattern. ECB mode anywhere is a hard fail. CBC without HMAC is a hard fail. AES-128 without GCM authenticator is a finding.",
406
406
  "required": true
407
407
  },
408
408
  {
409
409
  "id": "signature-call-sites",
410
- "type": "file_path",
410
+ "type": "file",
411
411
  "source": "Grep for signature operations: `crypto\\.sign\\(`, `crypto\\.verify\\(`, `Signature\\.getInstance\\(`, `\\.sign_pss\\(`, `\\.verify_pss\\(`, `RSA-PSS`, `RSA-PKCS1`, `ECDSA`, `Ed25519`, `Ed448`, `ML-DSA`, `Dilithium`, `SLH-DSA`, `SPHINCS`. Capture key sizes for RSA (look for `modulusLength`, `key_size`, `--rsa-2048` literals), curve choice for ECDSA, hash choice paired with signature (RSA-SHA1 is a hard fail).",
412
412
  "description": "Signature scheme inventory. RSA-1024 anywhere is a hard fail; RSA-2048 with > 5-year sensitivity requires PQC roadmap; ECDSA-P256 acceptable today but needs hybrid ML-DSA migration plan; bare RSA-PKCS1 (not PSS) for new signatures is a finding.",
413
413
  "required": true
414
414
  },
415
415
  {
416
416
  "id": "kdf-call-sites",
417
- "type": "file_path",
417
+ "type": "file",
418
418
  "source": "Grep for key-derivation calls: `pbkdf2(Sync)?\\(`, `PBKDF2`, `hashlib\\.pbkdf2_hmac`, `bcrypt\\.(hash|hashSync|compare)`, `scrypt(Sync)?\\(`, `argon2\\.(hash|verify)`, `argon2id`, `hkdf\\(`, `HKDF`, `derive_key`. For each, extract the cost parameters: PBKDF2 iterations, bcrypt cost factor, scrypt N/r/p, argon2 t/m/p.",
419
419
  "description": "Key-derivation parameter inventory. Apply OWASP 2023 minimums: PBKDF2-HMAC-SHA256 >= 600,000; PBKDF2-HMAC-SHA512 >= 210,000; bcrypt cost >= 12; scrypt N >= 2^17, r=8, p=1; argon2id m >= 19 MiB (19456 KiB), t >= 2, p >= 1. Any parameter below minimum is a finding.",
420
420
  "required": true
421
421
  },
422
422
  {
423
423
  "id": "rng-call-sites",
424
- "type": "file_path",
424
+ "type": "file",
425
425
  "source": "Grep for RNG sources: `Math\\.random\\(`, `random\\.random\\(`, `random\\.randint\\(`, `random\\.choice\\(`, `rand\\(`, `srand\\(`, `mt_rand\\(`, `secrets\\.(token_|randbits|choice)`, `crypto\\.randomBytes\\(`, `crypto\\.getRandomValues\\(`, `crypto\\.randomUUID\\(`, `os\\.urandom\\(`, `getrandom\\(`, `SecureRandom`, `OsRng`, `ThreadRng`, `/dev/urandom`, `/dev/random`. Capture file_path:line for each.",
426
426
  "description": "RNG-source inventory. Production-context Math.random / random.random / rand without cryptographic-RNG fallback is CWE-338. Distinguish test/spec/fixture usage explicitly via path allowlist; production usage requires a cryptographic RNG.",
427
427
  "required": true
428
428
  },
429
429
  {
430
430
  "id": "hardcoded-key-material",
431
- "type": "file_path",
431
+ "type": "file",
432
432
  "source": "Grep for hardcoded crypto material: PEM markers `-----BEGIN (RSA |EC |DSA |PRIVATE |PUBLIC |CERTIFICATE )?(PRIVATE|PUBLIC) KEY-----`, SSH key prefixes `ssh-rsa AAAA`, `ssh-ed25519 AAAA`, `ecdsa-sha2-nistp256 AAAA`, hex-blob heuristics for keys (>= 64 hex chars on a single literal line), base64-encoded blobs >= 256 chars in source files. Cross-reference with the `secrets` playbook for the exfil-secret angle; here the focus is library-author shipping defaults that look like keys (e.g. example certs, demo keys, sample HMAC seeds that downstream consumers fail to rotate).",
433
433
  "description": "Hardcoded key material shipped with the library. Library-author angle: any 'demo' or 'example' key that downstream consumers fail to rotate becomes a universal-default vulnerability (cf. embedded-router demo keys, Wi-Fi default WPA keys, IoT bootloader signing keys).",
434
434
  "required": false
435
435
  },
436
436
  {
437
437
  "id": "tls-config-construction",
438
- "type": "file_path",
438
+ "type": "file",
439
439
  "source": "Grep for in-code TLS context construction: `tls\\.createSecureContext`, `tls\\.createServer`, `https\\.createServer`, `ssl\\.SSLContext\\(`, `ssl\\.create_default_context`, `rustls::ServerConfig`, `rustls::ClientConfig`, `tls\\.Config\\{`, `SSL_CTX_new`, options like `minVersion`, `maxVersion`, `secureProtocol`, `ciphers`, `ecdhCurve`, `sigalgs`, `groups`, `ALPNProtocols`.",
440
440
  "description": "In-code TLS configuration. Library authors that construct TLS contexts internally must default to TLS 1.3 minimum, X25519MLKEM768 group preference (when openssl >= 3.5 detected), modern cipher list. Hardcoded `secureProtocol: 'TLSv1_method'` or `minVersion: 'TLSv1'` is a hard fail.",
441
441
  "required": false
442
442
  },
443
443
  {
444
444
  "id": "pqc-adoption-signals",
445
- "type": "file_path",
445
+ "type": "file",
446
446
  "source": "Grep for PQC adoption: `ml[-_]?kem`, `ml[-_]?dsa`, `slh[-_]?dsa`, `kyber`, `dilithium`, `sphincs`, `falcon`, `kemEncapsulate`, `kemDecapsulate`, `EVP_KEM_`, `OQS_KEM_`, `oqsprovider`, `liboqs`, `noble-post-quantum`, `pqcrypto::`, `aws-lc-rs::pqc`, `circl/sign/dilithium`, `circl/kem/kyber`.",
447
447
  "description": "PQC adoption signals. If `pqc-readiness-gap` directive runs, this artifact is the primary input. Distinguish concrete cryptographic operations from configuration strings, feature-flag names, and comments.",
448
448
  "required": false
449
449
  },
450
450
  {
451
451
  "id": "fips-provider-activation",
452
- "type": "file_path",
452
+ "type": "file",
453
453
  "source": "Grep for FIPS-mode activation: `OSSL_PROVIDER_load.*fips`, `crypto\\.setFips\\(`, `openssl::provider::Provider::load_default`, `Provider::load.*\"fips\"`, openssl.cnf or fipsmodule.cnf files in the repo, environment-variable references to `OPENSSL_FIPS`, `OPENSSL_CONF`. Capture whether the activation is conditional (e.g. only if env var set) or unconditional.",
454
454
  "description": "FIPS-provider activation evidence. The `fips-validation-status` directive uses this to distinguish runtime FIPS activation from link-time FIPS claims.",
455
455
  "required": false
456
456
  },
457
457
  {
458
458
  "id": "vendored-crypto-tree",
459
- "type": "file_path",
459
+ "type": "file",
460
460
  "source": "Glob for vendored crypto: `vendor/**/{crypto,openssl,sodium,nacl,kyber,dilithium,sphincs,curve25519,blake2,sha3,argon2}*`, `third_party/**/*crypto*`, `crates/**/*crypto*` (excluding the package's own crypto module). Look for upstream-reference files: `UPSTREAM`, `ORIGIN`, `PROVENANCE.md`, `.upstream-commit`, integrity hashes in lockfiles.",
461
461
  "description": "Vendored cryptographic primitives. Library authors sometimes vendor crypto to reduce dep tree or for licensing reasons. Without provenance + integrity audit, vendored crypto is a supply-chain backdoor opportunity.",
462
462
  "required": false
463
463
  },
464
464
  {
465
465
  "id": "ci-crypto-tests",
466
- "type": "file_path",
466
+ "type": "file",
467
467
  "source": "Glob for CI configs: `.github/workflows/**/*.yml`, `.gitlab-ci.yml`, `.circleci/config.yml`, `azure-pipelines.yml`, `Jenkinsfile`. Grep for crypto-test invocations, FIPS-test runs, constant-time analysis tools (`dudect`, `valgrind --tool=memcheck` on secret-dependent code, `ctgrind`).",
468
468
  "description": "Build-time crypto verification. Absence of constant-time tests on vendored PQC primitives is a finding for the `pqc-readiness-gap` directive.",
469
469
  "required": false
@@ -339,7 +339,7 @@
339
339
  },
340
340
  {
341
341
  "id": "libssl-libraries",
342
- "type": "file_path",
342
+ "type": "file",
343
343
  "source": "ldconfig -p | grep -E 'libssl|libcrypto|libtls' AND find /usr/lib /usr/local/lib -name 'libssl*' -o -name 'libcrypto*' 2>/dev/null",
344
344
  "description": "Installed TLS libraries — catches non-default OpenSSL builds, vendored libcrypto, LibreSSL, BoringSSL.",
345
345
  "required": false
@@ -35,7 +35,9 @@
35
35
  "on_fail": "warn"
36
36
  }
37
37
  ],
38
- "mutex": [],
38
+ "mutex": [
39
+ "kernel"
40
+ ],
39
41
  "feeds_into": [
40
42
  {
41
43
  "playbook_id": "kernel",
@@ -45,7 +45,9 @@
45
45
  "on_fail": "warn"
46
46
  }
47
47
  ],
48
- "mutex": [],
48
+ "mutex": [
49
+ "hardening"
50
+ ],
49
51
  "feeds_into": [
50
52
  {
51
53
  "playbook_id": "sbom",
@@ -43,7 +43,10 @@
43
43
  "on_fail": "warn"
44
44
  }
45
45
  ],
46
- "mutex": ["secrets"],
46
+ "mutex": [
47
+ "secrets",
48
+ "containers"
49
+ ],
47
50
  "feeds_into": [
48
51
  {
49
52
  "playbook_id": "sbom",
@@ -563,14 +566,14 @@
563
566
  },
564
567
  {
565
568
  "id": "signing-key-material",
566
- "type": "file_path",
569
+ "type": "file",
567
570
  "source": "Locate: cosign.pub, *.pem (public-key signing artifacts), keys/public.pem, .well-known/openpgpkey/, sigstore-cosign metadata in workflow",
568
571
  "description": "Public signing material committed to the repo or referenced from the release workflow.",
569
572
  "required": false
570
573
  },
571
574
  {
572
575
  "id": "intoto-attestations",
573
- "type": "file_path",
576
+ "type": "file",
574
577
  "source": "Glob: *.intoto.jsonl, *.sigstore, *.sbom.json.sig, *.cdx.json.sig, attestations directory; AND for npm packages: GET https://registry.npmjs.org/${pkg} and inspect dist.attestations",
575
578
  "description": "in-toto / Sigstore / SLSA provenance attestations attached to releases.",
576
579
  "required": false,
@@ -592,7 +595,7 @@
592
595
  },
593
596
  {
594
597
  "id": "vendored-code",
595
- "type": "file_path",
598
+ "type": "file",
596
599
  "source": "List directories: vendor/, third_party/, external/, deps/, internal/vendor/; AND for each: locate provenance manifest (vendor.json, THIRD_PARTY_PROVENANCE.md, modules.txt for Go vendored)",
597
600
  "description": "Vendored / bundled third-party code carried in the publisher's own release.",
598
601
  "required": false
@@ -644,7 +647,7 @@
644
647
  },
645
648
  {
646
649
  "id": "skill-signing-infrastructure",
647
- "type": "file_path",
650
+ "type": "file",
648
651
  "source": "If repo ships skills / plugins / extensions: locate lib/sign.js, lib/verify.js, scripts/sign-skills.*, signatures/, keys/, AND read package.json scripts for sign/verify entries",
649
652
  "description": "Specific to AI-tool / plugin / skill publishers: Ed25519 / cosign signing scaffolding.",
650
653
  "required": false
@@ -786,7 +789,11 @@
786
789
  "description": "Mutable action reference — upstream owner can substitute action code under the same tag.",
787
790
  "confidence": "deterministic",
788
791
  "deterministic": true,
789
- "attack_ref": "T1195.001"
792
+ "attack_ref": "T1195.001",
793
+ "false_positive_checks_required": [
794
+ "If Dependabot is configured (.github/dependabot.yml with package-ecosystem: github-actions, schedule >= weekly) AND the repo has a recent (within last 60 days) Dependabot PR updating action SHAs — the mutable-ref window is bounded; demote to lower-confidence finding (not miss; tag-pinning is still strictly safer than SHA-pinning-with-Dependabot).",
795
+ "If every mutable ref points to a github-owned action (actions/*, github/*) the supply-chain risk is materially lower than third-party action refs; tag-with-rationale-in-comment is acceptable for github-owned. Demote third-party-only mutable refs above github-owned ones in reporting."
796
+ ]
790
797
  },
791
798
  {
792
799
  "id": "package-json-provenance-missing",
@@ -839,11 +846,15 @@
839
846
  },
840
847
  {
841
848
  "id": "tag-protection-absent",
842
- "type": "api_response",
849
+ "type": "api_call_sequence",
843
850
  "value": "Within the branch-tag-protection artifact: gh api repos/${owner}/${repo}/tags/protection returns empty array OR 404 AND the release-workflows artifact contains a publish workflow that triggers on push tags: ['v*']",
844
851
  "description": "Release tags unprotected (theater #6) — any branch can push v* and trigger publish.",
845
852
  "confidence": "deterministic",
846
- "deterministic": true
853
+ "deterministic": true,
854
+ "false_positive_checks_required": [
855
+ "If repository rulesets (newer model) protect the tag pattern v*.*.* with delete + non-fast-forward + update blocked AND zero bypass actors — the legacy tag-protection-rules API may return empty while protection is in place. Cross-check the rulesets API before flagging.",
856
+ "If the repository is read-only / archived (archived: true via the repo API) — tag protection is moot; demote to miss."
857
+ ]
847
858
  },
848
859
  {
849
860
  "id": "release-tag-not-signed",
@@ -871,7 +882,7 @@
871
882
  },
872
883
  {
873
884
  "id": "no-security-txt",
874
- "type": "api_response",
885
+ "type": "api_call_sequence",
875
886
  "value": "If product has a primary domain: HTTP 404 / connection failure on /.well-known/security.txt",
876
887
  "description": "No RFC 9116 machine-discoverable disclosure path (theater #10).",
877
888
  "confidence": "deterministic",
@@ -879,7 +890,7 @@
879
890
  },
880
891
  {
881
892
  "id": "private-vuln-reporting-disabled",
882
- "type": "api_response",
893
+ "type": "api_call_sequence",
883
894
  "value": "gh api repos/${owner}/${repo} --jq '.security_and_analysis.private_vulnerability_reporting.status' returns 'disabled'",
884
895
  "description": "GitHub private vulnerability reporting off — no OIDC-authenticated disclosure intake.",
885
896
  "confidence": "deterministic",
@@ -440,7 +440,7 @@
440
440
  },
441
441
  {
442
442
  "id": "mcp-tool-response-log",
443
- "type": "log_pattern",
443
+ "type": "log",
444
444
  "source": "AI client MCP-protocol logs: ~/.claude/logs/mcp/*.jsonl (Claude Code), ~/.cursor/logs/mcp-*.log (Cursor), ~/.codeium/windsurf/logs/mcp_*.log (Windsurf)",
445
445
  "description": "v0.12.6: Verbatim tools/list and tools/call response capture. The only artifact that lets ANSI-escape, Unicode-Tag-smuggling, instruction-coercion-grammar, and sensitive-path-reference indicators fire. If client doesn't log MCP responses, mark inconclusive and recommend enabling MCP request/response verbose logging in client settings.",
446
446
  "required": false
@@ -68,7 +68,9 @@
68
68
  "T1068",
69
69
  "T1548.003"
70
70
  ],
71
- "cve_refs": [],
71
+ "cve_refs": [
72
+ "CVE-2026-31431"
73
+ ],
72
74
  "cwe_refs": [
73
75
  "CWE-269",
74
76
  "CWE-732",
@@ -499,7 +499,7 @@
499
499
  },
500
500
  {
501
501
  "id": "model-weight-files",
502
- "type": "file_path",
502
+ "type": "file",
503
503
  "source": "find $HOME ~/.cache/huggingface ~/.cache/torch /var/lib/model-store -type f \\( -name '*.pt' -o -name '*.ckpt' -o -name '*.bin' -o -name '*.safetensors' -o -name '*.gguf' \\) 2>/dev/null AND for each: file <path> AND attempt to identify Sigstore signature / OpenSSF model-signing attestation",
504
504
  "description": "Model weight artifacts — needed for AI-supply-chain analysis (ATLAS AML.T0018).",
505
505
  "required": false
@@ -528,7 +528,7 @@
528
528
  },
529
529
  {
530
530
  "id": "tanstack-payload-sweep",
531
- "type": "file_path",
531
+ "type": "file",
532
532
  "source": "find node_modules -path '*/@tanstack/*' \\( -name 'router_init.js' -o -name 'router_runtime.js' \\) 2>/dev/null",
533
533
  "description": "CVE-2026-45321 IoC sweep — payload markers inside any installed @tanstack/* package. Captures both flat npm and pnpm-style nested layouts.",
534
534
  "required": false
@@ -35,7 +35,9 @@
35
35
  "on_fail": "warn"
36
36
  }
37
37
  ],
38
- "mutex": [],
38
+ "mutex": [
39
+ "library-author"
40
+ ],
39
41
  "feeds_into": [
40
42
  {
41
43
  "playbook_id": "cred-stores",