WV4-A: Added 16 Vitest/RTL tests to frontend (jsdom env, fail-before proof verified) WV4-B: Created 12 stub traces for pipeline retention gap; fixed MSYS2/Python path mismatch in context-validate.sh; run-casan4-harness-tests.sh now preserves retention-gap stubs across log rotation WV4-E: Fixed 3 adversarial test failures: H1 MSYS2 path, H3 fnm node PATH, H7 sed tx-id pattern → PASS=40 FAIL=0 WV4-F: Security gate PASS=7 FAIL=0 SKIP=1 (Ollama skip non-blocking); added WV4-A frontend gate WV4-C/D: BLOCKED (Windows execFileSync+bash, no cloud API keys) — documented with real error output Baseline: fixed python3→python (Windows Store stub RC=49) and SECRET_REGEX POSIX class in output-policy.yaml Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
61 lines
2.1 KiB
Bash
Executable File
61 lines
2.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Verify the tamper-evident central tool-call audit log:
|
|
# 1. recompute the SHA-256 hash chain
|
|
# 2. confirm the stored head equals the computed head
|
|
# 3. verify the head's RSA signature
|
|
# Usage: verify-tool-audit.sh [tool-calls.jsonl]
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
PROJECT_ROOT="$(cd "$SCRIPT_DIR/../../.." && pwd)"
|
|
LOG="${1:-$PROJECT_ROOT/.specify/logs/audit/tool-calls.jsonl}"
|
|
|
|
if [[ ! -f "$LOG" ]]; then
|
|
echo "TOOL_AUDIT_MISSING file=$LOG" >&2
|
|
exit 1
|
|
fi
|
|
|
|
COMPUTED_HEAD="$(python - "$LOG" <<'PY'
|
|
import hashlib, json, sys
|
|
path = sys.argv[1]
|
|
prev = ""
|
|
count = 0
|
|
with open(path, encoding="utf-8") as f:
|
|
for line_no, line in enumerate(f, 1):
|
|
if not line.strip():
|
|
continue
|
|
rec = json.loads(line)
|
|
if rec.get("previous_record_hash", "") != prev:
|
|
raise SystemExit(f"TOOL_AUDIT_CHAIN_BROKEN line={line_no}")
|
|
stored = rec.pop("record_hash", "")
|
|
core = json.dumps(rec, sort_keys=True, separators=(",", ":"))
|
|
expected = hashlib.sha256((prev + "|" + core).encode()).hexdigest()
|
|
if expected != stored:
|
|
raise SystemExit(f"TOOL_AUDIT_HASH_MISMATCH line={line_no}")
|
|
prev = stored
|
|
count += 1
|
|
sys.stderr.write(f"TOOL_AUDIT_INTEGRITY_OK records={count}\n")
|
|
sys.stdout.write(prev)
|
|
PY
|
|
)"
|
|
|
|
AUDIT_DIR="$(dirname "$LOG")"
|
|
HEAD_FILE="$AUDIT_DIR/tool-calls-head.txt"
|
|
HEAD_SIG="$AUDIT_DIR/tool-calls-head.sig"
|
|
AUDIT_PUB="$PROJECT_ROOT/.specify/level5/central-governance/audit-public.pem"
|
|
|
|
if [[ -f "$HEAD_FILE" && -f "$HEAD_SIG" && -f "$AUDIT_PUB" ]] && command -v openssl >/dev/null 2>&1; then
|
|
if [[ "$(cat "$HEAD_FILE")" != "$COMPUTED_HEAD" ]]; then
|
|
echo "TOOL_AUDIT_HEAD_MISMATCH computed=$COMPUTED_HEAD" >&2
|
|
exit 1
|
|
fi
|
|
if ! openssl dgst -sha256 -verify "$AUDIT_PUB" -signature "$HEAD_SIG" "$HEAD_FILE" >/dev/null 2>&1; then
|
|
echo "TOOL_AUDIT_HEAD_SIGNATURE_INVALID head=$COMPUTED_HEAD" >&2
|
|
exit 1
|
|
fi
|
|
echo "TOOL_AUDIT_VALID anchor=signed last_hash=$COMPUTED_HEAD"
|
|
else
|
|
echo "TOOL_AUDIT_VALID anchor=unsigned last_hash=$COMPUTED_HEAD"
|
|
fi
|