{% extends "base.html" %} {% block title %}Software Integrity Assessor — ICDEV{% endblock %} {% block content %} {# Context (from tools/integrity/blueprint.py :: integrity_index): assessments : list[dict] — id, source_type, source_ref, mode, project_id, session_id, status, verdict, risk_score, created_at, updated_at summary : {by_verdict: {allow/review/quarantine: n}, by_status: {...}, total} verdicts : VERDICTS (allow, review, quarantine) modes : ASSESS_MODES (provenance_aware, provenance_blind, auto) #}
Static-only assessment of ICDEV, contributed, and external code for malicious or unauthorized capability — embedded by a human or an AI agent — that is not part of the original requirement or claimed purpose. Quarantine-first; nothing executes the target.
| # | Source | Mode | Verdict | Risk | Status | Created |
|---|---|---|---|---|---|---|
| {{ a.id }} | {{ a.source_type or '?' }} {{ a.source_ref or '—' }} | {{ (a.mode or '—').replace('_', ' ') }} | {{ (a.verdict or 'pending')|upper }} |
{{ rpct|round(0)|int }}
|
{{ a.status or '—' }} | {{ (a.created_at[:16] if a.created_at is string else a.created_at.strftime('%Y-%m-%d %H:%M')) if a.created_at else '—' }} |