{"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-e2f1ab2a2ab67b4f", "name": "Insecure pattern 'direct_innerhtml_assignment' in researchforge/web/static/index.html:258", "shortDescription": {"text": "Insecure pattern 'direct_innerhtml_assignment' in researchforge/web/static/index.html:258"}, "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-bcbf049ad2904c62", "name": "Very large file: researchforge/executor/run.py (7141 lines)", "shortDescription": {"text": "Very large file: researchforge/executor/run.py (7141 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-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-3ab5d313dda8e5f9", "name": "Debug logging residue appears in source files", "shortDescription": {"text": "Debug logging residue appears in source files"}, "fullDescription": {"text": "Found 34 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: license, ci. 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": "low", "confidence": 1.0}}, {"id": "scanner-749d4bc1bd66df5f", "name": "Agent instructions exist but release-hardening basics are missing", "shortDescription": {"text": "Agent instructions exist but release-hardening basics are missing"}, "fullDescription": {"text": "AI-coder instruction files were found, but the repo is missing license, ci. Treat this as a contract gap: the agent is guided, but the generated output is not yet guarded by the controls that make it repeatable."}, "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-93d005be2c0552aa", "name": "Legacy-named symbol `d_old` in researchforge/executor/run.py:2031", "shortDescription": {"text": "Legacy-named symbol `d_old` in researchforge/executor/run.py:2031"}, "fullDescription": {"text": "Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-7c8dc1bfaed92795", "name": "Commented-code block (5 lines) in researchforge/executor/run.py:1025", "shortDescription": {"text": "Commented-code block (5 lines) in researchforge/executor/run.py:1025"}, "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-c2b7f804fddf6800", "name": "FastAPI POST `api_analyze` without auth dependency \u2014 researchforge/web/app.py:71", "shortDescription": {"text": "FastAPI POST `api_analyze` without auth dependency \u2014 researchforge/web/app.py:71"}, "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-64d4c8f92526a090", "name": "FastAPI POST `api_clean` without auth dependency \u2014 researchforge/web/app.py:85", "shortDescription": {"text": "FastAPI POST `api_clean` without auth dependency \u2014 researchforge/web/app.py:85"}, "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-6a2fdbc212649254", "name": "FastAPI POST `api_reanalyze` without auth dependency \u2014 researchforge/web/app.py:102", "shortDescription": {"text": "FastAPI POST `api_reanalyze` without auth dependency \u2014 researchforge/web/app.py:102"}, "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-75fc5365765682b5", "name": "FastAPI POST `api_run` without auth dependency \u2014 researchforge/web/app.py:115", "shortDescription": {"text": "FastAPI POST `api_run` without auth dependency \u2014 researchforge/web/app.py:115"}, "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": "`researchforge/web/app.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-d7e90783dee3618a", "name": "Unused endpoint: POST /api/analyze", "shortDescription": {"text": "Unused endpoint: POST /api/analyze"}, "fullDescription": {"text": "`researchforge/web/app.py` declares `POST /api/analyze` 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-13fdaf6ecb7b5be9", "name": "Unused endpoint: POST /api/clean", "shortDescription": {"text": "Unused endpoint: POST /api/clean"}, "fullDescription": {"text": "`researchforge/web/app.py` declares `POST /api/clean` 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-6f06a2242066d77a", "name": "Unused endpoint: POST /api/reanalyze", "shortDescription": {"text": "Unused endpoint: POST /api/reanalyze"}, "fullDescription": {"text": "`researchforge/web/app.py` declares `POST /api/reanalyze` 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-83f363da8e954ea8", "name": "Unused endpoint: POST /api/run", "shortDescription": {"text": "Unused endpoint: POST /api/run"}, "fullDescription": {"text": "`researchforge/web/app.py` declares `POST /api/run` 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-c524192cf3562808", "name": "Unused endpoint: GET /api/download/{run_name}", "shortDescription": {"text": "Unused endpoint: GET /api/download/{run_name}"}, "fullDescription": {"text": "`researchforge/web/app.py` declares `GET /api/download/{run_name}` 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/22048"}, "properties": {"repository": "Vambrocop/Researchforge", "repoUrl": "https://github.com/Vambrocop/Researchforge", "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-e2f1ab2a2ab67b4f", "level": "warning", "message": {"text": "Insecure pattern 'direct_innerhtml_assignment' in researchforge/web/static/index.html:258"}, "properties": {"repobilityId": "d2db89d87d9e384e", "scanner": "scanner-primary", "fingerprint": "e2f1ab2a2ab67b4f", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "direct_innerhtml_assignment"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "researchforge/web/static/index.html"}, "region": {"startLine": 258}}}]}, {"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-bcbf049ad2904c62", "level": "note", "message": {"text": "Very large file: researchforge/executor/run.py (7141 lines)"}, "properties": {"repobilityId": "4a6705254da6125e", "scanner": "scanner-primary", "fingerprint": "bcbf049ad2904c62", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["complexity"]}}, {"ruleId": "scanner-141b30a41e03817b", "level": "note", "message": {"text": "No license file detected"}, "properties": {"repobilityId": "7e915b7618d239d7", "scanner": "scanner-primary", "fingerprint": "141b30a41e03817b", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["license", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-3ab5d313dda8e5f9", "level": "note", "message": {"text": "Debug logging residue appears in source files"}, "properties": {"repobilityId": "add9a9dd1b6184b3", "scanner": "scanner-primary", "fingerprint": "3ab5d313dda8e5f9", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["debug", "cleanup", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-b9088664ace7f748", "level": "note", "message": {"text": "Composite production-readiness gap"}, "properties": {"repobilityId": "650b980a014340b7", "scanner": "scanner-primary", "fingerprint": "b9088664ace7f748", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["production-readiness", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-749d4bc1bd66df5f", "level": "warning", "message": {"text": "Agent instructions exist but release-hardening basics are missing"}, "properties": {"repobilityId": "a42041f39b1a8a72", "scanner": "scanner-primary", "fingerprint": "749d4bc1bd66df5f", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["agent-instructions", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-ea8f3013f588db25", "level": "note", "message": {"text": "Shallow git history limits provenance confidence"}, "properties": {"repobilityId": "095a34a30e20f575", "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": "4209d68c470bac1c", "scanner": "scanner-primary", "fingerprint": "8424db9c75e04ba4", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["provenance", "git-history", "generated-repo-pattern"]}}, {"ruleId": "scanner-93d005be2c0552aa", "level": "note", "message": {"text": "Legacy-named symbol `d_old` in researchforge/executor/run.py:2031"}, "properties": {"repobilityId": "e7c23e2aab737319", "scanner": "scanner-primary", "fingerprint": "93d005be2c0552aa", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["integrity", "legacy-marker", "dead-code"]}}, {"ruleId": "scanner-7c8dc1bfaed92795", "level": "none", "message": {"text": "Commented-code block (5 lines) in researchforge/executor/run.py:1025"}, "properties": {"repobilityId": "d7b7d2db54542bad", "scanner": "scanner-primary", "fingerprint": "7c8dc1bfaed92795", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}, {"ruleId": "scanner-c2b7f804fddf6800", "level": "error", "message": {"text": "FastAPI POST `api_analyze` without auth dependency \u2014 researchforge/web/app.py:71"}, "properties": {"repobilityId": "f5b1ccb8fde992b1", "scanner": "scanner-primary", "fingerprint": "c2b7f804fddf6800", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "researchforge/web/app.py"}, "region": {"startLine": 71}}}]}, {"ruleId": "scanner-64d4c8f92526a090", "level": "error", "message": {"text": "FastAPI POST `api_clean` without auth dependency \u2014 researchforge/web/app.py:85"}, "properties": {"repobilityId": "15e858239d09e73a", "scanner": "scanner-primary", "fingerprint": "64d4c8f92526a090", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "researchforge/web/app.py"}, "region": {"startLine": 85}}}]}, {"ruleId": "scanner-6a2fdbc212649254", "level": "error", "message": {"text": "FastAPI POST `api_reanalyze` without auth dependency \u2014 researchforge/web/app.py:102"}, "properties": {"repobilityId": "fd2ddfb426aae16d", "scanner": "scanner-primary", "fingerprint": "6a2fdbc212649254", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "researchforge/web/app.py"}, "region": {"startLine": 102}}}]}, {"ruleId": "scanner-75fc5365765682b5", "level": "error", "message": {"text": "FastAPI POST `api_run` without auth dependency \u2014 researchforge/web/app.py:115"}, "properties": {"repobilityId": "5da79ef587f9941b", "scanner": "scanner-primary", "fingerprint": "75fc5365765682b5", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "researchforge/web/app.py"}, "region": {"startLine": 115}}}]}, {"ruleId": "scanner-5baa8971ebe192a1", "level": "note", "message": {"text": "Unused endpoint: GET /"}, "properties": {"repobilityId": "39912e0b75c19a38", "scanner": "scanner-primary", "fingerprint": "5baa8971ebe192a1", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-d7e90783dee3618a", "level": "note", "message": {"text": "Unused endpoint: POST /api/analyze"}, "properties": {"repobilityId": "2a580bf868cffebe", "scanner": "scanner-primary", "fingerprint": "d7e90783dee3618a", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-13fdaf6ecb7b5be9", "level": "note", "message": {"text": "Unused endpoint: POST /api/clean"}, "properties": {"repobilityId": "0dee98aa547283c2", "scanner": "scanner-primary", "fingerprint": "13fdaf6ecb7b5be9", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-6f06a2242066d77a", "level": "note", "message": {"text": "Unused endpoint: POST /api/reanalyze"}, "properties": {"repobilityId": "74e917bd6b2527a2", "scanner": "scanner-primary", "fingerprint": "6f06a2242066d77a", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-83f363da8e954ea8", "level": "note", "message": {"text": "Unused endpoint: POST /api/run"}, "properties": {"repobilityId": "3fc77181d2f086df", "scanner": "scanner-primary", "fingerprint": "83f363da8e954ea8", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-c524192cf3562808", "level": "note", "message": {"text": "Unused endpoint: GET /api/download/{run_name}"}, "properties": {"repobilityId": "2904aa788877f2c4", "scanner": "scanner-primary", "fingerprint": "c524192cf3562808", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}]}]}