{"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-cdb770fb063c8533", "name": "Insecure pattern 'direct_innerhtml_assignment' in static/app.js:315", "shortDescription": {"text": "Insecure pattern 'direct_innerhtml_assignment' in static/app.js:315"}, "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-1e5023ca97217664", "name": "Very large file: static/app.js (2097 lines)", "shortDescription": {"text": "Very large file: static/app.js (2097 lines)"}, "fullDescription": {"text": "Files with >800 lines often hide complexity hotspots and discourage tests."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-6893a6c8b0861585", "name": "Very low test-to-source ratio", "shortDescription": {"text": "Very low test-to-source ratio"}, "fullDescription": {"text": "0 test file(s) for 6 source file(s) (ratio 0.00). Consider adding integration or unit tests for critical paths."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-141b30a41e03817b", "name": "No license file detected", "shortDescription": {"text": "No license file detected"}, "fullDescription": {"text": "No LICENSE/COPYING/NOTICE file was found. Generated repositories often omit licensing, which blocks reuse and automated intake."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-2d0c7b7ab8f8aacf", "name": "Critical user flow still appears backed by mock or placeholder data", "shortDescription": {"text": "Critical user flow still appears backed by mock or placeholder data"}, "fullDescription": {"text": "A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "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: license, ci, tests. 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-6581df787fc2fedc", "name": "Commented-code block (8 lines) in database.py:6", "shortDescription": {"text": "Commented-code block (8 lines) in database.py:6"}, "fullDescription": {"text": "A long run of `//` or `#` lines usually means abandoned code. Delete or move to git history. Keeps the canvas + dead-code detection honest."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "info", "confidence": 1.0}}, {"id": "scanner-3482f7e5dd70cd1a", "name": "6 env vars used in code but missing from .env.example", "shortDescription": {"text": "6 env vars used in code but missing from .env.example"}, "fullDescription": {"text": "Drift between code and config docs. The first few: `DATABASE_URL`, `DB_PATH`, `OCR_API_KEY`, `OCR_BASE_URL`, `OCR_ENABLED`, `OCR_MODEL`. Add them (with a placeholder/comment) to .env.example so onboarding doesn't break."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "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:\nllm_client.py:chat, llm_client.py:chat_json\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-3477282d2d3432ec", "name": "FastAPI POST `review_plan` without auth dependency \u2014 main.py:166", "shortDescription": {"text": "FastAPI POST `review_plan` without auth dependency \u2014 main.py:166"}, "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-a6a2b9cf00af3dd4", "name": "FastAPI POST `get_socratic` without auth dependency \u2014 main.py:209", "shortDescription": {"text": "FastAPI POST `get_socratic` without auth dependency \u2014 main.py:209"}, "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-7b734742785a3551", "name": "FastAPI POST `correct_draft` without auth dependency \u2014 main.py:236", "shortDescription": {"text": "FastAPI POST `correct_draft` without auth dependency \u2014 main.py:236"}, "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-46391e4813b22327", "name": "FastAPI POST `get_reflection` without auth dependency \u2014 main.py:268", "shortDescription": {"text": "FastAPI POST `get_reflection` without auth dependency \u2014 main.py:268"}, "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-43f96a7d87bcdc41", "name": "FastAPI POST `get_model_essay` without auth dependency \u2014 main.py:291", "shortDescription": {"text": "FastAPI POST `get_model_essay` without auth dependency \u2014 main.py:291"}, "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-e8252dbda6671998", "name": "FastAPI POST `ocr` without auth dependency \u2014 main.py:364", "shortDescription": {"text": "FastAPI POST `ocr` without auth dependency \u2014 main.py:364"}, "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-0ec14031612ad694", "name": "FastAPI POST `email_correct` without auth dependency \u2014 main.py:413", "shortDescription": {"text": "FastAPI POST `email_correct` without auth dependency \u2014 main.py:413"}, "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-9891ea944a247066", "name": "FastAPI POST `email_model` without auth dependency \u2014 main.py:461", "shortDescription": {"text": "FastAPI POST `email_model` without auth dependency \u2014 main.py:461"}, "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": "`main.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-cb59c96e0d03104c", "name": "Unused endpoint: GET /api/topic", "shortDescription": {"text": "Unused endpoint: GET /api/topic"}, "fullDescription": {"text": "`main.py` declares `GET /api/topic` 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-e50daed74cea4bc2", "name": "Unused endpoint: POST /api/plan/review", "shortDescription": {"text": "Unused endpoint: POST /api/plan/review"}, "fullDescription": {"text": "`main.py` declares `POST /api/plan/review` 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-7060a6f0ae31062a", "name": "Unused endpoint: POST /api/draft/socratic", "shortDescription": {"text": "Unused endpoint: POST /api/draft/socratic"}, "fullDescription": {"text": "`main.py` declares `POST /api/draft/socratic` 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-328f473071d703ba", "name": "Unused endpoint: POST /api/draft/correct", "shortDescription": {"text": "Unused endpoint: POST /api/draft/correct"}, "fullDescription": {"text": "`main.py` declares `POST /api/draft/correct` 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-224bcd4fbe34cba8", "name": "Unused endpoint: POST /api/reflection", "shortDescription": {"text": "Unused endpoint: POST /api/reflection"}, "fullDescription": {"text": "`main.py` declares `POST /api/reflection` 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-232cc9f08530ca61", "name": "Unused endpoint: POST /api/model-essay", "shortDescription": {"text": "Unused endpoint: POST /api/model-essay"}, "fullDescription": {"text": "`main.py` declares `POST /api/model-essay` 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-0838a39160b2009d", "name": "Unused endpoint: GET /api/history", "shortDescription": {"text": "Unused endpoint: GET /api/history"}, "fullDescription": {"text": "`main.py` declares `GET /api/history` 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-57fc1ab87bb92960", "name": "Unused endpoint: GET /api/history/essay/{session_id}", "shortDescription": {"text": "Unused endpoint: GET /api/history/essay/{session_id}"}, "fullDescription": {"text": "`main.py` declares `GET /api/history/essay/{session_id}` 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-30b5b400b7fcd1a5", "name": "Unused endpoint: POST /api/ocr", "shortDescription": {"text": "Unused endpoint: POST /api/ocr"}, "fullDescription": {"text": "`main.py` declares `POST /api/ocr` 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-3ab1acce9baf6857", "name": "Unused endpoint: POST /api/email/correct", "shortDescription": {"text": "Unused endpoint: POST /api/email/correct"}, "fullDescription": {"text": "`main.py` declares `POST /api/email/correct` 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-1268ee4e84415b07", "name": "Unused endpoint: GET /api/history/email/{session_id}", "shortDescription": {"text": "Unused endpoint: GET /api/history/email/{session_id}"}, "fullDescription": {"text": "`main.py` declares `GET /api/history/email/{session_id}` 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-b4bebcaffd8c2478", "name": "Unused endpoint: POST /api/email/model", "shortDescription": {"text": "Unused endpoint: POST /api/email/model"}, "fullDescription": {"text": "`main.py` declares `POST /api/email/model` 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/23676"}, "properties": {"repository": "zkl202310-code/Japanese-writing-coach", "repoUrl": "https://github.com/zkl202310-code/Japanese-writing-coach", "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-cdb770fb063c8533", "level": "warning", "message": {"text": "Insecure pattern 'direct_innerhtml_assignment' in static/app.js:315"}, "properties": {"repobilityId": "25869ecb6dadc3f6", "scanner": "scanner-primary", "fingerprint": "cdb770fb063c8533", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "direct_innerhtml_assignment"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "static/app.js"}, "region": {"startLine": 315}}}]}, {"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-1e5023ca97217664", "level": "note", "message": {"text": "Very large file: static/app.js (2097 lines)"}, "properties": {"repobilityId": "1c051419cfdea300", "scanner": "scanner-primary", "fingerprint": "1e5023ca97217664", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["complexity"]}}, {"ruleId": "scanner-6893a6c8b0861585", "level": "warning", "message": {"text": "Very low test-to-source ratio"}, "properties": {"repobilityId": "54a7de3f06314bf0", "scanner": "scanner-primary", "fingerprint": "6893a6c8b0861585", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["tests", "coverage"]}}, {"ruleId": "scanner-141b30a41e03817b", "level": "note", "message": {"text": "No license file detected"}, "properties": {"repobilityId": "e360beb56de3b503", "scanner": "scanner-primary", "fingerprint": "141b30a41e03817b", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["license", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-2d0c7b7ab8f8aacf", "level": "warning", "message": {"text": "Critical user flow still appears backed by mock or placeholder data"}, "properties": {"repobilityId": "9c87eff3576e1b35", "scanner": "scanner-primary", "fingerprint": "2d0c7b7ab8f8aacf", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["placeholder", "mock-data", "critical-flow", "generated-repo-pattern"]}}, {"ruleId": "scanner-b9088664ace7f748", "level": "warning", "message": {"text": "Composite production-readiness gap"}, "properties": {"repobilityId": "fd64d3eb7217dd39", "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": "31697b234e148d0b", "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": "ad225ef00f05026b", "scanner": "scanner-primary", "fingerprint": "8424db9c75e04ba4", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["provenance", "git-history", "generated-repo-pattern"]}}, {"ruleId": "scanner-6581df787fc2fedc", "level": "none", "message": {"text": "Commented-code block (8 lines) in database.py:6"}, "properties": {"repobilityId": "5e60301123e6efc7", "scanner": "scanner-primary", "fingerprint": "6581df787fc2fedc", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}, {"ruleId": "scanner-3482f7e5dd70cd1a", "level": "note", "message": {"text": "6 env vars used in code but missing from .env.example"}, "properties": {"repobilityId": "1da70f25aa46f6e9", "scanner": "scanner-primary", "fingerprint": "3482f7e5dd70cd1a", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["integrity", "config-drift"]}}, {"ruleId": "scanner-2c04133e54348533", "level": "note", "message": {"text": "Near-duplicate function bodies in 2 places"}, "properties": {"repobilityId": "561d21b5f5f11e3d", "scanner": "scanner-primary", "fingerprint": "2c04133e54348533", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["integrity", "duplicate", "dry"]}}, {"ruleId": "scanner-2c04133e54348533", "level": "note", "message": {"text": "Near-duplicate function bodies in 2 places"}, "properties": {"repobilityId": "a010208d5f0edeeb", "scanner": "scanner-primary", "fingerprint": "2c04133e54348533", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["integrity", "duplicate", "dry"]}}, {"ruleId": "scanner-3477282d2d3432ec", "level": "error", "message": {"text": "FastAPI POST `review_plan` without auth dependency \u2014 main.py:166"}, "properties": {"repobilityId": "ef7ce2e41c56c15b", "scanner": "scanner-primary", "fingerprint": "3477282d2d3432ec", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "main.py"}, "region": {"startLine": 166}}}]}, {"ruleId": "scanner-a6a2b9cf00af3dd4", "level": "error", "message": {"text": "FastAPI POST `get_socratic` without auth dependency \u2014 main.py:209"}, "properties": {"repobilityId": "b66df40a7afbb802", "scanner": "scanner-primary", "fingerprint": "a6a2b9cf00af3dd4", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "main.py"}, "region": {"startLine": 209}}}]}, {"ruleId": "scanner-7b734742785a3551", "level": "error", "message": {"text": "FastAPI POST `correct_draft` without auth dependency \u2014 main.py:236"}, "properties": {"repobilityId": "46718e4fc4ec5b7e", "scanner": "scanner-primary", "fingerprint": "7b734742785a3551", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "main.py"}, "region": {"startLine": 236}}}]}, {"ruleId": "scanner-46391e4813b22327", "level": "error", "message": {"text": "FastAPI POST `get_reflection` without auth dependency \u2014 main.py:268"}, "properties": {"repobilityId": "d6ae7dccfedbb4b3", "scanner": "scanner-primary", "fingerprint": "46391e4813b22327", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "main.py"}, "region": {"startLine": 268}}}]}, {"ruleId": "scanner-43f96a7d87bcdc41", "level": "error", "message": {"text": "FastAPI POST `get_model_essay` without auth dependency \u2014 main.py:291"}, "properties": {"repobilityId": "dbc8a3f7dd86d7be", "scanner": "scanner-primary", "fingerprint": "43f96a7d87bcdc41", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "main.py"}, "region": {"startLine": 291}}}]}, {"ruleId": "scanner-e8252dbda6671998", "level": "error", "message": {"text": "FastAPI POST `ocr` without auth dependency \u2014 main.py:364"}, "properties": {"repobilityId": "a404d0084e5960a0", "scanner": "scanner-primary", "fingerprint": "e8252dbda6671998", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "main.py"}, "region": {"startLine": 364}}}]}, {"ruleId": "scanner-0ec14031612ad694", "level": "error", "message": {"text": "FastAPI POST `email_correct` without auth dependency \u2014 main.py:413"}, "properties": {"repobilityId": "39f9459647e424a9", "scanner": "scanner-primary", "fingerprint": "0ec14031612ad694", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "main.py"}, "region": {"startLine": 413}}}]}, {"ruleId": "scanner-9891ea944a247066", "level": "error", "message": {"text": "FastAPI POST `email_model` without auth dependency \u2014 main.py:461"}, "properties": {"repobilityId": "969b68c097189162", "scanner": "scanner-primary", "fingerprint": "9891ea944a247066", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "main.py"}, "region": {"startLine": 461}}}]}, {"ruleId": "scanner-5baa8971ebe192a1", "level": "note", "message": {"text": "Unused endpoint: GET /"}, "properties": {"repobilityId": "6b8de433dc23649f", "scanner": "scanner-primary", "fingerprint": "5baa8971ebe192a1", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-cb59c96e0d03104c", "level": "note", "message": {"text": "Unused endpoint: GET /api/topic"}, "properties": {"repobilityId": "375cefa096633510", "scanner": "scanner-primary", "fingerprint": "cb59c96e0d03104c", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-e50daed74cea4bc2", "level": "note", "message": {"text": "Unused endpoint: POST /api/plan/review"}, "properties": {"repobilityId": "4d4d68d92a7e8004", "scanner": "scanner-primary", "fingerprint": "e50daed74cea4bc2", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-7060a6f0ae31062a", "level": "note", "message": {"text": "Unused endpoint: POST /api/draft/socratic"}, "properties": {"repobilityId": "a45dab07fb14a0f6", "scanner": "scanner-primary", "fingerprint": "7060a6f0ae31062a", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-328f473071d703ba", "level": "note", "message": {"text": "Unused endpoint: POST /api/draft/correct"}, "properties": {"repobilityId": "45849145fe4a0b44", "scanner": "scanner-primary", "fingerprint": "328f473071d703ba", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-224bcd4fbe34cba8", "level": "note", "message": {"text": "Unused endpoint: POST /api/reflection"}, "properties": {"repobilityId": "cc221f8def65c5aa", "scanner": "scanner-primary", "fingerprint": "224bcd4fbe34cba8", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-232cc9f08530ca61", "level": "note", "message": {"text": "Unused endpoint: POST /api/model-essay"}, "properties": {"repobilityId": "fb22b0694c16c886", "scanner": "scanner-primary", "fingerprint": "232cc9f08530ca61", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-0838a39160b2009d", "level": "note", "message": {"text": "Unused endpoint: GET /api/history"}, "properties": {"repobilityId": "74c097f1c04cbbd9", "scanner": "scanner-primary", "fingerprint": "0838a39160b2009d", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-57fc1ab87bb92960", "level": "note", "message": {"text": "Unused endpoint: GET /api/history/essay/{session_id}"}, "properties": {"repobilityId": "0f3d2f00c5a4aaa5", "scanner": "scanner-primary", "fingerprint": "57fc1ab87bb92960", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-30b5b400b7fcd1a5", "level": "note", "message": {"text": "Unused endpoint: POST /api/ocr"}, "properties": {"repobilityId": "edbe09447d1e91a0", "scanner": "scanner-primary", "fingerprint": "30b5b400b7fcd1a5", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-3ab1acce9baf6857", "level": "note", "message": {"text": "Unused endpoint: POST /api/email/correct"}, "properties": {"repobilityId": "b95cf8e75629c3d5", "scanner": "scanner-primary", "fingerprint": "3ab1acce9baf6857", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-1268ee4e84415b07", "level": "note", "message": {"text": "Unused endpoint: GET /api/history/email/{session_id}"}, "properties": {"repobilityId": "504db270c97ce787", "scanner": "scanner-primary", "fingerprint": "1268ee4e84415b07", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-b4bebcaffd8c2478", "level": "note", "message": {"text": "Unused endpoint: POST /api/email/model"}, "properties": {"repobilityId": "ebd158fad2ef470c", "scanner": "scanner-primary", "fingerprint": "b4bebcaffd8c2478", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}]}]}