{"version": "2.1.0", "$schema": "https://json.schemastore.org/sarif-2.1.0.json", "runs": [{"tool": {"driver": {"name": "Repobility", "informationUri": "https://repobility.com", "rules": [{"id": "scanner-9710c8d059e53154", "name": "No frontend routes/components detected", "shortDescription": {"text": "No frontend routes/components detected"}, "fullDescription": {"text": "No React/Vue/Next routes were found. This is fine for backend-only repos."}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "info", "confidence": 1.0}}, {"id": "scanner-f8269ef2cdc09260", "name": "Insecure pattern 'cors_wildcard' in bridge.py:325", "shortDescription": {"text": "Insecure pattern 'cors_wildcard' in bridge.py:325"}, "fullDescription": {"text": "Found a known-risky pattern (cors_wildcard). Review and replace if possible."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-4776a594a759c2f4", "name": "Insecure pattern 'direct_innerhtml_assignment' in dashboard/index.html:176", "shortDescription": {"text": "Insecure pattern 'direct_innerhtml_assignment' in dashboard/index.html:176"}, "fullDescription": {"text": "Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-6372cebde0220094", "name": "No auth library detected", "shortDescription": {"text": "No auth library detected"}, "fullDescription": {"text": "The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). The repo has auth/admin/session surface indicators, so auth may live in custom code, in a separate service, or be missing."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-4601e3ad3bb28677", "name": "No CI/CD pipelines detected", "shortDescription": {"text": "No CI/CD pipelines detected"}, "fullDescription": {"text": "No GitHub Actions, GitLab CI, or CircleCI configs found. Without CI you can't gate deploys on tests/lints."}, "properties": {"scanner": "scanner-primary", "layer": "cicd", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-faccb9061e9b52a0", "name": "No README detected", "shortDescription": {"text": "No README detected"}, "fullDescription": {"text": "No README file was found. Generated repos without README context are hard to operate, validate, or safely hand off."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-3ab5d313dda8e5f9", "name": "Debug logging residue appears in source files", "shortDescription": {"text": "Debug logging residue appears in source files"}, "fullDescription": {"text": "Found 48 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-b9088664ace7f748", "name": "Composite production-readiness gap", "shortDescription": {"text": "Composite production-readiness gap"}, "fullDescription": {"text": "Multiple low-cost hardening controls are missing together: ci, tests, operator-readme. Opus verification showed these co-occurring gaps are a better readiness signal than reading each flag in isolation."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-ea8f3013f588db25", "name": "Shallow git history limits provenance confidence", "shortDescription": {"text": "Shallow git history limits provenance confidence"}, "fullDescription": {"text": "The repository is a shallow clone. Origin/evolution analysis cannot distinguish fresh generation, imported legacy code, or long-lived human code with high confidence."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-8424db9c75e04ba4", "name": "Very short observed git history", "shortDescription": {"text": "Very short observed git history"}, "fullDescription": {"text": "The repo has multiple source files but two or fewer visible commits. This is not a failure by itself, but it lowers confidence in evolution-based diagnosis."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "info", "confidence": 1.0}}, {"id": "scanner-2c04133e54348533", "name": "Near-duplicate function bodies in 2 places", "shortDescription": {"text": "Near-duplicate function bodies in 2 places"}, "fullDescription": {"text": "Functions with the same first-5-line body hash:\nbridge.py:comms_unread_for, bridge.py:comms_unread\n\nThis is *the* AI-coder failure mode (4\u00d7 more duplication in vibe-coded repos \u2014 see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-6680331479178548", "name": "FastAPI POST `call_tool_endpoint` without auth dependency \u2014 bridge.py:440", "shortDescription": {"text": "FastAPI POST `call_tool_endpoint` without auth dependency \u2014 bridge.py:440"}, "fullDescription": {"text": "`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-67b0f841dfc8a948", "name": "FastAPI POST `batch_call` without auth dependency \u2014 bridge.py:452", "shortDescription": {"text": "FastAPI POST `batch_call` without auth dependency \u2014 bridge.py:452"}, "fullDescription": {"text": "`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-fb4a9708f1f4b105", "name": "FastAPI POST `comms_send` without auth dependency \u2014 bridge.py:501", "shortDescription": {"text": "FastAPI POST `comms_send` without auth dependency \u2014 bridge.py:501"}, "fullDescription": {"text": "`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-5baa8971ebe192a1", "name": "Unused endpoint: GET /", "shortDescription": {"text": "Unused endpoint: GET /"}, "fullDescription": {"text": "`bridge.py` declares `GET /` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-b197cb8a9ce845b7", "name": "Unused endpoint: GET /api/discover", "shortDescription": {"text": "Unused endpoint: GET /api/discover"}, "fullDescription": {"text": "`bridge.py` declares `GET /api/discover` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-5ee53da932ba8018", "name": "Unused endpoint: GET /api/heartbeat", "shortDescription": {"text": "Unused endpoint: GET /api/heartbeat"}, "fullDescription": {"text": "`bridge.py` declares `GET /api/heartbeat` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-8b274b9ed2e3113a", "name": "Unused endpoint: POST /api/call", "shortDescription": {"text": "Unused endpoint: POST /api/call"}, "fullDescription": {"text": "`bridge.py` declares `POST /api/call` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-f486bdc2e1c42a36", "name": "Unused endpoint: POST /api/batch", "shortDescription": {"text": "Unused endpoint: POST /api/batch"}, "fullDescription": {"text": "`bridge.py` declares `POST /api/batch` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-084480261b046d70", "name": "Unused endpoint: GET /api/tools", "shortDescription": {"text": "Unused endpoint: GET /api/tools"}, "fullDescription": {"text": "`bridge.py` declares `GET /api/tools` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-ee72b46c3ff43a22", "name": "Unused endpoint: GET /api/security/legacy-callers", "shortDescription": {"text": "Unused endpoint: GET /api/security/legacy-callers"}, "fullDescription": {"text": "`bridge.py` declares `GET /api/security/legacy-callers` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-a7ebc420487b2e90", "name": "Unused endpoint: POST /api/comms/send", "shortDescription": {"text": "Unused endpoint: POST /api/comms/send"}, "fullDescription": {"text": "`bridge.py` declares `POST /api/comms/send` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-4a6fad8238e7c36e", "name": "Unused endpoint: GET /api/comms/read", "shortDescription": {"text": "Unused endpoint: GET /api/comms/read"}, "fullDescription": {"text": "`bridge.py` declares `GET /api/comms/read` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-b7760b79c9df148f", "name": "Unused endpoint: GET /api/comms/unread_for", "shortDescription": {"text": "Unused endpoint: GET /api/comms/unread_for"}, "fullDescription": {"text": "`bridge.py` declares `GET /api/comms/unread_for` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-a3a1c4fc8ab20b4d", "name": "Unused endpoint: GET /api/comms/channels", "shortDescription": {"text": "Unused endpoint: GET /api/comms/channels"}, "fullDescription": {"text": "`bridge.py` declares `GET /api/comms/channels` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-cfe47a15956eba48", "name": "Unused endpoint: GET /api/comms/unread", "shortDescription": {"text": "Unused endpoint: GET /api/comms/unread"}, "fullDescription": {"text": "`bridge.py` declares `GET /api/comms/unread` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}]}}, "automationDetails": {"id": "repobility/20955"}, "properties": {"repository": "templetwo/sovereign-bridge", "repoUrl": "https://github.com/templetwo/sovereign-bridge", "branch": "main"}, "results": [{"ruleId": "scanner-9710c8d059e53154", "level": "none", "message": {"text": "No frontend routes/components detected"}, "properties": {"repobilityId": "44ca61485762e494", "scanner": "scanner-primary", "fingerprint": "9710c8d059e53154", "layer": "frontend", "severity": "info", "confidence": 1.0, "tags": ["coverage"]}}, {"ruleId": "scanner-f8269ef2cdc09260", "level": "warning", "message": {"text": "Insecure pattern 'cors_wildcard' in bridge.py:325"}, "properties": {"repobilityId": "603e5621b35582c7", "scanner": "scanner-primary", "fingerprint": "f8269ef2cdc09260", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "cors_wildcard"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "bridge.py"}, "region": {"startLine": 325}}}]}, {"ruleId": "scanner-4776a594a759c2f4", "level": "warning", "message": {"text": "Insecure pattern 'direct_innerhtml_assignment' in dashboard/index.html:176"}, "properties": {"repobilityId": "1d59152a7617eeef", "scanner": "scanner-primary", "fingerprint": "4776a594a759c2f4", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "direct_innerhtml_assignment"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "dashboard/index.html"}, "region": {"startLine": 176}}}]}, {"ruleId": "scanner-6372cebde0220094", "level": "warning", "message": {"text": "No auth library detected"}, "properties": {"repobilityId": "a5b6035a5bbf8054", "scanner": "scanner-primary", "fingerprint": "6372cebde0220094", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["coverage", "auth"]}}, {"ruleId": "scanner-4601e3ad3bb28677", "level": "warning", "message": {"text": "No CI/CD pipelines detected"}, "properties": {"repobilityId": "c3ee439bce2bc51e", "scanner": "scanner-primary", "fingerprint": "4601e3ad3bb28677", "layer": "cicd", "severity": "medium", "confidence": 1.0, "tags": ["coverage"]}}, {"ruleId": "scanner-faccb9061e9b52a0", "level": "note", "message": {"text": "No README detected"}, "properties": {"repobilityId": "59e57deda2fe798b", "scanner": "scanner-primary", "fingerprint": "faccb9061e9b52a0", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["docs", "readme", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-3ab5d313dda8e5f9", "level": "note", "message": {"text": "Debug logging residue appears in source files"}, "properties": {"repobilityId": "6ccf8ad9a7124e6b", "scanner": "scanner-primary", "fingerprint": "3ab5d313dda8e5f9", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["debug", "cleanup", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-b9088664ace7f748", "level": "warning", "message": {"text": "Composite production-readiness gap"}, "properties": {"repobilityId": "3f510599d56c66ad", "scanner": "scanner-primary", "fingerprint": "b9088664ace7f748", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["production-readiness", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-ea8f3013f588db25", "level": "note", "message": {"text": "Shallow git history limits provenance confidence"}, "properties": {"repobilityId": "9b3859882511cb4c", "scanner": "scanner-primary", "fingerprint": "ea8f3013f588db25", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["provenance", "git-history", "generated-repo-pattern"]}}, {"ruleId": "scanner-8424db9c75e04ba4", "level": "none", "message": {"text": "Very short observed git history"}, "properties": {"repobilityId": "278299cd5e799b4b", "scanner": "scanner-primary", "fingerprint": "8424db9c75e04ba4", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["provenance", "git-history", "generated-repo-pattern"]}}, {"ruleId": "scanner-2c04133e54348533", "level": "note", "message": {"text": "Near-duplicate function bodies in 2 places"}, "properties": {"repobilityId": "dd82ee0aa2e27d37", "scanner": "scanner-primary", "fingerprint": "2c04133e54348533", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["integrity", "duplicate", "dry"]}}, {"ruleId": "scanner-6680331479178548", "level": "error", "message": {"text": "FastAPI POST `call_tool_endpoint` without auth dependency \u2014 bridge.py:440"}, "properties": {"repobilityId": "0803b813fbdc0c54", "scanner": "scanner-primary", "fingerprint": "6680331479178548", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "bridge.py"}, "region": {"startLine": 440}}}]}, {"ruleId": "scanner-67b0f841dfc8a948", "level": "error", "message": {"text": "FastAPI POST `batch_call` without auth dependency \u2014 bridge.py:452"}, "properties": {"repobilityId": "4dc0bd05bcd66380", "scanner": "scanner-primary", "fingerprint": "67b0f841dfc8a948", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "bridge.py"}, "region": {"startLine": 452}}}]}, {"ruleId": "scanner-fb4a9708f1f4b105", "level": "error", "message": {"text": "FastAPI POST `comms_send` without auth dependency \u2014 bridge.py:501"}, "properties": {"repobilityId": "61d0d6a8fd3ddda2", "scanner": "scanner-primary", "fingerprint": "fb4a9708f1f4b105", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "bridge.py"}, "region": {"startLine": 501}}}]}, {"ruleId": "scanner-5baa8971ebe192a1", "level": "note", "message": {"text": "Unused endpoint: GET /"}, "properties": {"repobilityId": "ce3a2d118176f325", "scanner": "scanner-primary", "fingerprint": "5baa8971ebe192a1", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-b197cb8a9ce845b7", "level": "note", "message": {"text": "Unused endpoint: GET /api/discover"}, "properties": {"repobilityId": "8b29624ab79b3416", "scanner": "scanner-primary", "fingerprint": "b197cb8a9ce845b7", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-5ee53da932ba8018", "level": "note", "message": {"text": "Unused endpoint: GET /api/heartbeat"}, "properties": {"repobilityId": "4afcc01636ad6fac", "scanner": "scanner-primary", "fingerprint": "5ee53da932ba8018", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-8b274b9ed2e3113a", "level": "note", "message": {"text": "Unused endpoint: POST /api/call"}, "properties": {"repobilityId": "1fcae9e88a5098aa", "scanner": "scanner-primary", "fingerprint": "8b274b9ed2e3113a", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-f486bdc2e1c42a36", "level": "note", "message": {"text": "Unused endpoint: POST /api/batch"}, "properties": {"repobilityId": "fb17adf24c6f4094", "scanner": "scanner-primary", "fingerprint": "f486bdc2e1c42a36", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-084480261b046d70", "level": "note", "message": {"text": "Unused endpoint: GET /api/tools"}, "properties": {"repobilityId": "b37a9c417837a13b", "scanner": "scanner-primary", "fingerprint": "084480261b046d70", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-ee72b46c3ff43a22", "level": "note", "message": {"text": "Unused endpoint: GET /api/security/legacy-callers"}, "properties": {"repobilityId": "a32942aedd70815f", "scanner": "scanner-primary", "fingerprint": "ee72b46c3ff43a22", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-a7ebc420487b2e90", "level": "note", "message": {"text": "Unused endpoint: POST /api/comms/send"}, "properties": {"repobilityId": "6682ada764443ae6", "scanner": "scanner-primary", "fingerprint": "a7ebc420487b2e90", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-4a6fad8238e7c36e", "level": "note", "message": {"text": "Unused endpoint: GET /api/comms/read"}, "properties": {"repobilityId": "049d03e69cbf4f85", "scanner": "scanner-primary", "fingerprint": "4a6fad8238e7c36e", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-b7760b79c9df148f", "level": "note", "message": {"text": "Unused endpoint: GET /api/comms/unread_for"}, "properties": {"repobilityId": "bb82603dc5e910ed", "scanner": "scanner-primary", "fingerprint": "b7760b79c9df148f", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-a3a1c4fc8ab20b4d", "level": "note", "message": {"text": "Unused endpoint: GET /api/comms/channels"}, "properties": {"repobilityId": "3bef2eff176791ec", "scanner": "scanner-primary", "fingerprint": "a3a1c4fc8ab20b4d", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-cfe47a15956eba48", "level": "note", "message": {"text": "Unused endpoint: GET /api/comms/unread"}, "properties": {"repobilityId": "19b13549b8bf83e9", "scanner": "scanner-primary", "fingerprint": "cfe47a15956eba48", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}]}]}