{"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-d4a3e01069983f95", "name": "Possibly dead Python function: handle", "shortDescription": {"text": "Possibly dead Python function: handle"}, "fullDescription": {"text": "No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler."}, "properties": {"scanner": "scanner-primary", "layer": "software", "severity": "low", "confidence": 1.0}}, {"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-361d5a264d39452a", "name": "Insecure pattern 'direct_innerhtml_assignment' in frontend/src/ui.ts:114", "shortDescription": {"text": "Insecure pattern 'direct_innerhtml_assignment' in frontend/src/ui.ts:114"}, "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-5fbd4348f3cd3da3", "name": "Insecure pattern 'direct_innerhtml_assignment' in frontend/src/main.ts:451", "shortDescription": {"text": "Insecure pattern 'direct_innerhtml_assignment' in frontend/src/main.ts:451"}, "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-be2f26e89ff64443", "name": "Insecure pattern 'cors_wildcard' in backend/src/memworld/main.py:50", "shortDescription": {"text": "Insecure pattern 'cors_wildcard' in backend/src/memworld/main.py:50"}, "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-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-6893a6c8b0861585", "name": "Very low test-to-source ratio", "shortDescription": {"text": "Very low test-to-source ratio"}, "fullDescription": {"text": "0 test file(s) for 19 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-3ab5d313dda8e5f9", "name": "Debug logging residue appears in source files", "shortDescription": {"text": "Debug logging residue appears in source files"}, "fullDescription": {"text": "Found 7 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, 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-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, tests. 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-9255e5e2ab94c373", "name": "`fetch()` without try/.catch or AbortSignal \u2014 frontend/src/api.ts:35", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 frontend/src/api.ts:35"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-676ddd74df847efb", "name": "FastAPI POST `create_item` without auth dependency \u2014 backend/src/memworld/main.py:102", "shortDescription": {"text": "FastAPI POST `create_item` without auth dependency \u2014 backend/src/memworld/main.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-e866d1b49d759b06", "name": "FastAPI POST `upload_file` without auth dependency \u2014 backend/src/memworld/main.py:109", "shortDescription": {"text": "FastAPI POST `upload_file` without auth dependency \u2014 backend/src/memworld/main.py:109"}, "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-4ddff8668f524233", "name": "FastAPI PUT `update_item` without auth dependency \u2014 backend/src/memworld/main.py:145", "shortDescription": {"text": "FastAPI PUT `update_item` without auth dependency \u2014 backend/src/memworld/main.py:145"}, "fullDescription": {"text": "`@router.put` 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-0b2f23f9dc9c0c8d", "name": "FastAPI DELETE `delete_item` without auth dependency \u2014 backend/src/memworld/main.py:156", "shortDescription": {"text": "FastAPI DELETE `delete_item` without auth dependency \u2014 backend/src/memworld/main.py:156"}, "fullDescription": {"text": "`@router.delete` 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-eaef061c5a40b08b", "name": "FastAPI PATCH `set_position` without auth dependency \u2014 backend/src/memworld/main.py:179", "shortDescription": {"text": "FastAPI PATCH `set_position` without auth dependency \u2014 backend/src/memworld/main.py:179"}, "fullDescription": {"text": "`@router.patch` 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-963710f42a2c8219", "name": "Unused endpoint: GET /api/status", "shortDescription": {"text": "Unused endpoint: GET /api/status"}, "fullDescription": {"text": "`backend/src/memworld/main.py` declares `GET /api/status` 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-e0bae061bbd60c5e", "name": "Unused endpoint: GET /api/world", "shortDescription": {"text": "Unused endpoint: GET /api/world"}, "fullDescription": {"text": "`backend/src/memworld/main.py` declares `GET /api/world` 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-b7c6e2f07a224fa2", "name": "Unused endpoint: GET /api/items/{item_id}", "shortDescription": {"text": "Unused endpoint: GET /api/items/{item_id}"}, "fullDescription": {"text": "`backend/src/memworld/main.py` declares `GET /api/items/{item_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-089cf5cc3456ad69", "name": "Unused endpoint: POST /api/items", "shortDescription": {"text": "Unused endpoint: POST /api/items"}, "fullDescription": {"text": "`backend/src/memworld/main.py` declares `POST /api/items` 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-536fc60d1287e634", "name": "Unused endpoint: POST /api/upload", "shortDescription": {"text": "Unused endpoint: POST /api/upload"}, "fullDescription": {"text": "`backend/src/memworld/main.py` declares `POST /api/upload` 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-8f1b00aa6bde8b46", "name": "Unused endpoint: PUT /api/items/{item_id}", "shortDescription": {"text": "Unused endpoint: PUT /api/items/{item_id}"}, "fullDescription": {"text": "`backend/src/memworld/main.py` declares `PUT /api/items/{item_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-15d4bdc11b592859", "name": "Unused endpoint: DELETE /api/items/{item_id}", "shortDescription": {"text": "Unused endpoint: DELETE /api/items/{item_id}"}, "fullDescription": {"text": "`backend/src/memworld/main.py` declares `DELETE /api/items/{item_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-66682a93f74ef9cd", "name": "Unused endpoint: GET /api/items/{item_id}/file", "shortDescription": {"text": "Unused endpoint: GET /api/items/{item_id}/file"}, "fullDescription": {"text": "`backend/src/memworld/main.py` declares `GET /api/items/{item_id}/file` 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-51ce2768439e7dc5", "name": "Unused endpoint: PATCH /api/items/{item_id}/position", "shortDescription": {"text": "Unused endpoint: PATCH /api/items/{item_id}/position"}, "fullDescription": {"text": "`backend/src/memworld/main.py` declares `PATCH /api/items/{item_id}/position` 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-2205760646975fb8", "name": "Unused endpoint: GET /api/search", "shortDescription": {"text": "Unused endpoint: GET /api/search"}, "fullDescription": {"text": "`backend/src/memworld/main.py` declares `GET /api/search` 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/18099"}, "properties": {"repository": "rheeld/mem-world", "repoUrl": "https://github.com/rheeld/mem-world", "branch": "main"}, "results": [{"ruleId": "scanner-d4a3e01069983f95", "level": "note", "message": {"text": "Possibly dead Python function: handle"}, "properties": {"repobilityId": "fc5b886fd2624c94", "scanner": "scanner-primary", "fingerprint": "d4a3e01069983f95", "layer": "software", "severity": "low", "confidence": 1.0, "tags": ["dead-code"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/fetch_wikipedia_vital.py:157"}, "region": {"startLine": 1}}}]}, {"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-361d5a264d39452a", "level": "warning", "message": {"text": "Insecure pattern 'direct_innerhtml_assignment' in frontend/src/ui.ts:114"}, "properties": {"repobilityId": "3a228301366f74bd", "scanner": "scanner-primary", "fingerprint": "361d5a264d39452a", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "direct_innerhtml_assignment"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/ui.ts"}, "region": {"startLine": 114}}}]}, {"ruleId": "scanner-5fbd4348f3cd3da3", "level": "warning", "message": {"text": "Insecure pattern 'direct_innerhtml_assignment' in frontend/src/main.ts:451"}, "properties": {"repobilityId": "f8d1fc4b4b1baec6", "scanner": "scanner-primary", "fingerprint": "5fbd4348f3cd3da3", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "direct_innerhtml_assignment"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/main.ts"}, "region": {"startLine": 451}}}]}, {"ruleId": "scanner-be2f26e89ff64443", "level": "warning", "message": {"text": "Insecure pattern 'cors_wildcard' in backend/src/memworld/main.py:50"}, "properties": {"repobilityId": "1298d8d99175f156", "scanner": "scanner-primary", "fingerprint": "be2f26e89ff64443", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "cors_wildcard"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "backend/src/memworld/main.py"}, "region": {"startLine": 50}}}]}, {"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-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": "4bffcde25bf10307", "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": "1e3fe49596a8672e", "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": "ca51f5e56dd91161", "scanner": "scanner-primary", "fingerprint": "b9088664ace7f748", "layer": "quality", "severity": "medium", "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": "4abd2ff4a734fb08", "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": "aaccad2cfafb9b3a", "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": "6843f4116967b155", "scanner": "scanner-primary", "fingerprint": "8424db9c75e04ba4", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["provenance", "git-history", "generated-repo-pattern"]}}, {"ruleId": "scanner-9255e5e2ab94c373", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 frontend/src/api.ts:35"}, "properties": {"repobilityId": "1305190669a6758b", "scanner": "scanner-primary", "fingerprint": "9255e5e2ab94c373", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-676ddd74df847efb", "level": "error", "message": {"text": "FastAPI POST `create_item` without auth dependency \u2014 backend/src/memworld/main.py:102"}, "properties": {"repobilityId": "308272a16834066a", "scanner": "scanner-primary", "fingerprint": "676ddd74df847efb", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "backend/src/memworld/main.py"}, "region": {"startLine": 102}}}]}, {"ruleId": "scanner-e866d1b49d759b06", "level": "error", "message": {"text": "FastAPI POST `upload_file` without auth dependency \u2014 backend/src/memworld/main.py:109"}, "properties": {"repobilityId": "f8dcc94280ba7137", "scanner": "scanner-primary", "fingerprint": "e866d1b49d759b06", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "backend/src/memworld/main.py"}, "region": {"startLine": 109}}}]}, {"ruleId": "scanner-4ddff8668f524233", "level": "error", "message": {"text": "FastAPI PUT `update_item` without auth dependency \u2014 backend/src/memworld/main.py:145"}, "properties": {"repobilityId": "a9f62454465b90a7", "scanner": "scanner-primary", "fingerprint": "4ddff8668f524233", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "backend/src/memworld/main.py"}, "region": {"startLine": 145}}}]}, {"ruleId": "scanner-0b2f23f9dc9c0c8d", "level": "error", "message": {"text": "FastAPI DELETE `delete_item` without auth dependency \u2014 backend/src/memworld/main.py:156"}, "properties": {"repobilityId": "6eeec73912de63d3", "scanner": "scanner-primary", "fingerprint": "0b2f23f9dc9c0c8d", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "backend/src/memworld/main.py"}, "region": {"startLine": 156}}}]}, {"ruleId": "scanner-eaef061c5a40b08b", "level": "error", "message": {"text": "FastAPI PATCH `set_position` without auth dependency \u2014 backend/src/memworld/main.py:179"}, "properties": {"repobilityId": "781d7cf1b974d921", "scanner": "scanner-primary", "fingerprint": "eaef061c5a40b08b", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "backend/src/memworld/main.py"}, "region": {"startLine": 179}}}]}, {"ruleId": "scanner-963710f42a2c8219", "level": "note", "message": {"text": "Unused endpoint: GET /api/status"}, "properties": {"repobilityId": "5a42b970e01479bd", "scanner": "scanner-primary", "fingerprint": "963710f42a2c8219", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-e0bae061bbd60c5e", "level": "note", "message": {"text": "Unused endpoint: GET /api/world"}, "properties": {"repobilityId": "4f8becfa5d0937ef", "scanner": "scanner-primary", "fingerprint": "e0bae061bbd60c5e", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-b7c6e2f07a224fa2", "level": "note", "message": {"text": "Unused endpoint: GET /api/items/{item_id}"}, "properties": {"repobilityId": "10c255adffc915e5", "scanner": "scanner-primary", "fingerprint": "b7c6e2f07a224fa2", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-089cf5cc3456ad69", "level": "note", "message": {"text": "Unused endpoint: POST /api/items"}, "properties": {"repobilityId": "aee47d0c96a03252", "scanner": "scanner-primary", "fingerprint": "089cf5cc3456ad69", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-536fc60d1287e634", "level": "note", "message": {"text": "Unused endpoint: POST /api/upload"}, "properties": {"repobilityId": "d0ad7a63da06ed68", "scanner": "scanner-primary", "fingerprint": "536fc60d1287e634", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-8f1b00aa6bde8b46", "level": "note", "message": {"text": "Unused endpoint: PUT /api/items/{item_id}"}, "properties": {"repobilityId": "3660008f8ce1f78b", "scanner": "scanner-primary", "fingerprint": "8f1b00aa6bde8b46", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-15d4bdc11b592859", "level": "note", "message": {"text": "Unused endpoint: DELETE /api/items/{item_id}"}, "properties": {"repobilityId": "ea2c124c36671fc8", "scanner": "scanner-primary", "fingerprint": "15d4bdc11b592859", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-66682a93f74ef9cd", "level": "note", "message": {"text": "Unused endpoint: GET /api/items/{item_id}/file"}, "properties": {"repobilityId": "96a3ef04f6e8aed5", "scanner": "scanner-primary", "fingerprint": "66682a93f74ef9cd", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-51ce2768439e7dc5", "level": "note", "message": {"text": "Unused endpoint: PATCH /api/items/{item_id}/position"}, "properties": {"repobilityId": "04a61e393ae2f0eb", "scanner": "scanner-primary", "fingerprint": "51ce2768439e7dc5", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-2205760646975fb8", "level": "note", "message": {"text": "Unused endpoint: GET /api/search"}, "properties": {"repobilityId": "78778348ff856494", "scanner": "scanner-primary", "fingerprint": "2205760646975fb8", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}]}]}