Status

This document tracks the future-looking risk scoring model for Excititor. The calculation below is not active yet; Sprint 7 work will add the required schema fields, policy controls, and services. Until that ships, Excititor emits consensus statuses without numeric scores.

Scoring model (target state)

S = Gate(VEX_status) × W_trust(source) × [Severity_base × (1 + α·KEV + β·EPSS)]

Safeguards: freeze boosts when product identity is unknown, clamp outputs ≥0, and log every factor in the audit trail.

Implementation roadmap

PhaseScopeArtifacts
Phase 1 – Schema foundationsExtend Excititor consensus/claims and Concelier canonical advisories with severity, KEV, EPSS, and expose α/β + weight ceilings in policy.Sprint 7 tasks EXCITITOR-CORE-02-001, EXCITITOR-POLICY-02-001, EXCITITOR-STORAGE-02-001, FEEDCORE-ENGINE-07-001.
Phase 2 – Deterministic score engineImplement a scoring component that executes alongside consensus and persists score envelopes with hashes.Planned task EXCITITOR-CORE-02-002 (backlog).
Phase 3 – Surfacing & enforcementExpose scores via WebService/CLI, integrate with Concelier noise priors, and enforce policy-based suppressions.To be scheduled after Phase 2.

Policy controls (Phase 1)

Operators tune scoring inputs through the Excititor policy document:

excititor:
  policy:
    weights:
      vendor: 1.10      # per-tier weight
      ceiling: 1.40     # max clamp applied to tiers and overrides (1.0‒5.0)
    providerOverrides:
      trusted.vendor: 1.35
    scoring:
      alpha: 0.30       # KEV boost coefficient (defaults to 0.25)
      beta: 0.60        # EPSS boost coefficient (defaults to 0.50)

Data model (after Phase 1)

{
  "vulnerabilityId": "CVE-2025-12345",
  "product": "pkg:name@version",
  "consensus": {
    "status": "affected",
    "policyRevisionId": "rev-12",
    "policyDigest": "0D9AEC…"
  },
  "signals": {
    "severity": {"scheme": "CVSS:3.1", "score": 7.5},
    "kev": true,
    "epss": 0.40
  },
  "policy": {
    "weight": 1.15,
    "alpha": 0.25,
    "beta": 0.5
  },
  "score": {
    "value": 10.8,
    "generatedAt": "2025-11-05T14:12:30Z",
    "audit": [
      "gate:affected",
      "weight:1.15",
      "severity:7.5",
      "kev:1",
      "epss:0.40"
    ]
  }
}

Operational guidance

Pseudocode (Phase 2 preview)

def risk_score(gate, weight, severity, kev, epss, alpha, beta, freeze_boosts=False):
    if gate == 0:
        return 0
    if freeze_boosts:
        kev, epss = 0, 0
    boost = 1 + alpha * kev + beta * epss
    return max(0, weight * severity * boost)

FAQ