{"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-c05f9c8559936452", "name": "Possibly dead Python function: current_user", "shortDescription": {"text": "Possibly dead Python function: current_user"}, "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-d63da3583b14afc0", "name": "Dockerfile runs as root: Dockerfile", "shortDescription": {"text": "Dockerfile runs as root: Dockerfile"}, "fullDescription": {"text": "No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image."}, "properties": {"scanner": "scanner-primary", "layer": "hardware", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-de3c1f217d72a063", "name": "Docker base image is tag-pinned but not digest-pinned: python:3.12-slim", "shortDescription": {"text": "Docker base image is tag-pinned but not digest-pinned: python:3.12-slim"}, "fullDescription": {"text": "Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter."}, "properties": {"scanner": "scanner-primary", "layer": "hardware", "severity": "low", "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-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 5 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-72b2a6250083a784", "name": "Placeholder or mock-heavy implementation detected", "shortDescription": {"text": "Placeholder or mock-heavy implementation detected"}, "fullDescription": {"text": "Found 21 placeholder/mock markers across 7 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "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. 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-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:\napp/routers/datacenters.py:parse_instances, app/routers/datacenters.py:parse_subnets\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-c942948c56883f65", "name": "FastAPI POST `dc_create` without auth dependency \u2014 app/routers/datacenters.py:92", "shortDescription": {"text": "FastAPI POST `dc_create` without auth dependency \u2014 app/routers/datacenters.py:92"}, "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-ceef10f48264ee0a", "name": "FastAPI POST `dc_delete` without auth dependency \u2014 app/routers/datacenters.py:144", "shortDescription": {"text": "FastAPI POST `dc_delete` without auth dependency \u2014 app/routers/datacenters.py:144"}, "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-b8705ad4a26672c0", "name": "FastAPI POST `activity_clear` without auth dependency \u2014 app/routers/activity.py:43", "shortDescription": {"text": "FastAPI POST `activity_clear` without auth dependency \u2014 app/routers/activity.py:43"}, "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-afee5cc998d2ebf6", "name": "FastAPI POST `gaia_login` without auth dependency \u2014 app/routers/gaia_mock.py:101", "shortDescription": {"text": "FastAPI POST `gaia_login` without auth dependency \u2014 app/routers/gaia_mock.py:101"}, "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-03583ef833debdf9", "name": "FastAPI POST `gaia_login` without auth dependency \u2014 app/routers/gaia_mock.py:102", "shortDescription": {"text": "FastAPI POST `gaia_login` without auth dependency \u2014 app/routers/gaia_mock.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-cd08b6dbdbf84bf4", "name": "FastAPI POST `gaia_set_dynamic_content` without auth dependency \u2014 app/routers/gaia_mock.py:107", "shortDescription": {"text": "FastAPI POST `gaia_set_dynamic_content` without auth dependency \u2014 app/routers/gaia_mock.py:107"}, "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-00df9635c1a1b25f", "name": "FastAPI POST `gaia_set_dynamic_content` without auth dependency \u2014 app/routers/gaia_mock.py:108", "shortDescription": {"text": "FastAPI POST `gaia_set_dynamic_content` without auth dependency \u2014 app/routers/gaia_mock.py:108"}, "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-080370560267fed2", "name": "FastAPI POST `gaia_show_task` without auth dependency \u2014 app/routers/gaia_mock.py:116", "shortDescription": {"text": "FastAPI POST `gaia_show_task` without auth dependency \u2014 app/routers/gaia_mock.py:116"}, "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-964b8a0d6c8fd749", "name": "FastAPI POST `gaia_show_task` without auth dependency \u2014 app/routers/gaia_mock.py:117", "shortDescription": {"text": "FastAPI POST `gaia_show_task` without auth dependency \u2014 app/routers/gaia_mock.py:117"}, "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-150bcca66a494dcf", "name": "FastAPI POST `gaia_logout` without auth dependency \u2014 app/routers/gaia_mock.py:122", "shortDescription": {"text": "FastAPI POST `gaia_logout` without auth dependency \u2014 app/routers/gaia_mock.py:122"}, "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-da18c3b50d3443a4", "name": "FastAPI POST `gaia_logout` without auth dependency \u2014 app/routers/gaia_mock.py:123", "shortDescription": {"text": "FastAPI POST `gaia_logout` without auth dependency \u2014 app/routers/gaia_mock.py:123"}, "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-37b58637913fe337", "name": "FastAPI POST `keystone_auth` without auth dependency \u2014 app/routers/openstack_mock.py:39", "shortDescription": {"text": "FastAPI POST `keystone_auth` without auth dependency \u2014 app/routers/openstack_mock.py:39"}, "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-3ea133fd1af3d160", "name": "FastAPI POST `create_generic` without auth dependency \u2014 app/routers/ui.py:226", "shortDescription": {"text": "FastAPI POST `create_generic` without auth dependency \u2014 app/routers/ui.py:226"}, "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-95a6f06677016224", "name": "FastAPI POST `create_network` without auth dependency \u2014 app/routers/ui.py:281", "shortDescription": {"text": "FastAPI POST `create_network` without auth dependency \u2014 app/routers/ui.py:281"}, "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-d37504814dee70e5", "name": "FastAPI POST `delete_feed_form` without auth dependency \u2014 app/routers/ui.py:358", "shortDescription": {"text": "FastAPI POST `delete_feed_form` without auth dependency \u2014 app/routers/ui.py:358"}, "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-d0fe75cae881b64b", "name": "FastAPI POST `layers_create` without auth dependency \u2014 app/routers/dynamic_layers.py:108", "shortDescription": {"text": "FastAPI POST `layers_create` without auth dependency \u2014 app/routers/dynamic_layers.py:108"}, "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-76ca87e919f8f133", "name": "FastAPI POST `apply_start` without auth dependency \u2014 app/routers/dynamic_layers.py:205", "shortDescription": {"text": "FastAPI POST `apply_start` without auth dependency \u2014 app/routers/dynamic_layers.py:205"}, "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-d1f1c4f02bdb4af4", "name": "FastAPI POST `fetch_cert` without auth dependency \u2014 app/routers/dynamic_layers.py:254", "shortDescription": {"text": "FastAPI POST `fetch_cert` without auth dependency \u2014 app/routers/dynamic_layers.py:254"}, "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-df0c2ba5e8ca3a9d", "name": "FastAPI POST `layer_delete` without auth dependency \u2014 app/routers/dynamic_layers.py:273", "shortDescription": {"text": "FastAPI POST `layer_delete` without auth dependency \u2014 app/routers/dynamic_layers.py:273"}, "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-5ad176a6035c2dc6", "name": "FastAPI POST `gateways_create` without auth dependency \u2014 app/routers/gateways.py:56", "shortDescription": {"text": "FastAPI POST `gateways_create` without auth dependency \u2014 app/routers/gateways.py:56"}, "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-40d9b29eafb12eed", "name": "FastAPI POST `gateways_update` without auth dependency \u2014 app/routers/gateways.py:81", "shortDescription": {"text": "FastAPI POST `gateways_update` without auth dependency \u2014 app/routers/gateways.py:81"}, "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-a8f2cbae8ab9bf76", "name": "FastAPI POST `gateways_delete` without auth dependency \u2014 app/routers/gateways.py:95", "shortDescription": {"text": "FastAPI POST `gateways_delete` without auth dependency \u2014 app/routers/gateways.py:95"}, "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}}]}}, "automationDetails": {"id": "repobility/24126"}, "properties": {"repository": "alshawwaf/Datacenter-Integration-Simulator", "repoUrl": "https://github.com/alshawwaf/Datacenter-Integration-Simulator", "branch": "main"}, "results": [{"ruleId": "scanner-c05f9c8559936452", "level": "note", "message": {"text": "Possibly dead Python function: current_user"}, "properties": {"repobilityId": "271089411e6e6afb", "scanner": "scanner-primary", "fingerprint": "c05f9c8559936452", "layer": "software", "severity": "low", "confidence": 1.0, "tags": ["dead-code"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/security.py:49"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-d63da3583b14afc0", "level": "warning", "message": {"text": "Dockerfile runs as root: Dockerfile"}, "properties": {"repobilityId": "a2ed1bd120e507db", "scanner": "scanner-primary", "fingerprint": "d63da3583b14afc0", "layer": "hardware", "severity": "medium", "confidence": 1.0, "tags": ["security", "container"]}}, {"ruleId": "scanner-de3c1f217d72a063", "level": "note", "message": {"text": "Docker base image is tag-pinned but not digest-pinned: python:3.12-slim"}, "properties": {"repobilityId": "cfda208142768223", "scanner": "scanner-primary", "fingerprint": "de3c1f217d72a063", "layer": "hardware", "severity": "low", "confidence": 1.0, "tags": ["supply-chain", "docker", "pinned-dependencies"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 2}}}]}, {"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-141b30a41e03817b", "level": "note", "message": {"text": "No license file detected"}, "properties": {"repobilityId": "499961646e474b5e", "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": "bec37cd7365cdbca", "scanner": "scanner-primary", "fingerprint": "3ab5d313dda8e5f9", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["debug", "cleanup", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-72b2a6250083a784", "level": "warning", "message": {"text": "Placeholder or mock-heavy implementation detected"}, "properties": {"repobilityId": "a8026a8f444058ab", "scanner": "scanner-primary", "fingerprint": "72b2a6250083a784", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["placeholder", "mock-data", "incomplete", "generated-repo-pattern"]}}, {"ruleId": "scanner-2d0c7b7ab8f8aacf", "level": "warning", "message": {"text": "Critical user flow still appears backed by mock or placeholder data"}, "properties": {"repobilityId": "311d20bf2e58fbf5", "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": "note", "message": {"text": "Composite production-readiness gap"}, "properties": {"repobilityId": "6f6389f4d1718bbf", "scanner": "scanner-primary", "fingerprint": "b9088664ace7f748", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["production-readiness", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-2c04133e54348533", "level": "note", "message": {"text": "Near-duplicate function bodies in 2 places"}, "properties": {"repobilityId": "ac0d7e4cd0e0993b", "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": "73e6def78560b998", "scanner": "scanner-primary", "fingerprint": "2c04133e54348533", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["integrity", "duplicate", "dry"]}}, {"ruleId": "scanner-c942948c56883f65", "level": "error", "message": {"text": "FastAPI POST `dc_create` without auth dependency \u2014 app/routers/datacenters.py:92"}, "properties": {"repobilityId": "47ca00b0fd5620cb", "scanner": "scanner-primary", "fingerprint": "c942948c56883f65", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/datacenters.py"}, "region": {"startLine": 92}}}]}, {"ruleId": "scanner-ceef10f48264ee0a", "level": "error", "message": {"text": "FastAPI POST `dc_delete` without auth dependency \u2014 app/routers/datacenters.py:144"}, "properties": {"repobilityId": "0c6719528aa41353", "scanner": "scanner-primary", "fingerprint": "ceef10f48264ee0a", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/datacenters.py"}, "region": {"startLine": 144}}}]}, {"ruleId": "scanner-b8705ad4a26672c0", "level": "error", "message": {"text": "FastAPI POST `activity_clear` without auth dependency \u2014 app/routers/activity.py:43"}, "properties": {"repobilityId": "3341d641dc7a26ce", "scanner": "scanner-primary", "fingerprint": "b8705ad4a26672c0", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/activity.py"}, "region": {"startLine": 43}}}]}, {"ruleId": "scanner-afee5cc998d2ebf6", "level": "error", "message": {"text": "FastAPI POST `gaia_login` without auth dependency \u2014 app/routers/gaia_mock.py:101"}, "properties": {"repobilityId": "2834983b33f83ee0", "scanner": "scanner-primary", "fingerprint": "afee5cc998d2ebf6", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/gaia_mock.py"}, "region": {"startLine": 101}}}]}, {"ruleId": "scanner-03583ef833debdf9", "level": "error", "message": {"text": "FastAPI POST `gaia_login` without auth dependency \u2014 app/routers/gaia_mock.py:102"}, "properties": {"repobilityId": "4fd52a0e6de56e12", "scanner": "scanner-primary", "fingerprint": "03583ef833debdf9", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/gaia_mock.py"}, "region": {"startLine": 102}}}]}, {"ruleId": "scanner-cd08b6dbdbf84bf4", "level": "error", "message": {"text": "FastAPI POST `gaia_set_dynamic_content` without auth dependency \u2014 app/routers/gaia_mock.py:107"}, "properties": {"repobilityId": "3fbd0738d7779e92", "scanner": "scanner-primary", "fingerprint": "cd08b6dbdbf84bf4", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/gaia_mock.py"}, "region": {"startLine": 107}}}]}, {"ruleId": "scanner-00df9635c1a1b25f", "level": "error", "message": {"text": "FastAPI POST `gaia_set_dynamic_content` without auth dependency \u2014 app/routers/gaia_mock.py:108"}, "properties": {"repobilityId": "77e8d416e1a91625", "scanner": "scanner-primary", "fingerprint": "00df9635c1a1b25f", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/gaia_mock.py"}, "region": {"startLine": 108}}}]}, {"ruleId": "scanner-080370560267fed2", "level": "error", "message": {"text": "FastAPI POST `gaia_show_task` without auth dependency \u2014 app/routers/gaia_mock.py:116"}, "properties": {"repobilityId": "a92db9142082841d", "scanner": "scanner-primary", "fingerprint": "080370560267fed2", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/gaia_mock.py"}, "region": {"startLine": 116}}}]}, {"ruleId": "scanner-964b8a0d6c8fd749", "level": "error", "message": {"text": "FastAPI POST `gaia_show_task` without auth dependency \u2014 app/routers/gaia_mock.py:117"}, "properties": {"repobilityId": "2a98d173040da406", "scanner": "scanner-primary", "fingerprint": "964b8a0d6c8fd749", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/gaia_mock.py"}, "region": {"startLine": 117}}}]}, {"ruleId": "scanner-150bcca66a494dcf", "level": "error", "message": {"text": "FastAPI POST `gaia_logout` without auth dependency \u2014 app/routers/gaia_mock.py:122"}, "properties": {"repobilityId": "91b4abea668f4f51", "scanner": "scanner-primary", "fingerprint": "150bcca66a494dcf", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/gaia_mock.py"}, "region": {"startLine": 122}}}]}, {"ruleId": "scanner-da18c3b50d3443a4", "level": "error", "message": {"text": "FastAPI POST `gaia_logout` without auth dependency \u2014 app/routers/gaia_mock.py:123"}, "properties": {"repobilityId": "f342f0963dfe5147", "scanner": "scanner-primary", "fingerprint": "da18c3b50d3443a4", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/gaia_mock.py"}, "region": {"startLine": 123}}}]}, {"ruleId": "scanner-37b58637913fe337", "level": "error", "message": {"text": "FastAPI POST `keystone_auth` without auth dependency \u2014 app/routers/openstack_mock.py:39"}, "properties": {"repobilityId": "b8302c7228937332", "scanner": "scanner-primary", "fingerprint": "37b58637913fe337", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/openstack_mock.py"}, "region": {"startLine": 39}}}]}, {"ruleId": "scanner-3ea133fd1af3d160", "level": "error", "message": {"text": "FastAPI POST `create_generic` without auth dependency \u2014 app/routers/ui.py:226"}, "properties": {"repobilityId": "86d40b65397ba59b", "scanner": "scanner-primary", "fingerprint": "3ea133fd1af3d160", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/ui.py"}, "region": {"startLine": 226}}}]}, {"ruleId": "scanner-95a6f06677016224", "level": "error", "message": {"text": "FastAPI POST `create_network` without auth dependency \u2014 app/routers/ui.py:281"}, "properties": {"repobilityId": "d775a1c7ec05e9de", "scanner": "scanner-primary", "fingerprint": "95a6f06677016224", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/ui.py"}, "region": {"startLine": 281}}}]}, {"ruleId": "scanner-d37504814dee70e5", "level": "error", "message": {"text": "FastAPI POST `delete_feed_form` without auth dependency \u2014 app/routers/ui.py:358"}, "properties": {"repobilityId": "103ae9050dc0bb81", "scanner": "scanner-primary", "fingerprint": "d37504814dee70e5", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/ui.py"}, "region": {"startLine": 358}}}]}, {"ruleId": "scanner-d0fe75cae881b64b", "level": "error", "message": {"text": "FastAPI POST `layers_create` without auth dependency \u2014 app/routers/dynamic_layers.py:108"}, "properties": {"repobilityId": "6c83b46c850934d6", "scanner": "scanner-primary", "fingerprint": "d0fe75cae881b64b", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/dynamic_layers.py"}, "region": {"startLine": 108}}}]}, {"ruleId": "scanner-76ca87e919f8f133", "level": "error", "message": {"text": "FastAPI POST `apply_start` without auth dependency \u2014 app/routers/dynamic_layers.py:205"}, "properties": {"repobilityId": "c1e8a6c90cbbdeb4", "scanner": "scanner-primary", "fingerprint": "76ca87e919f8f133", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/dynamic_layers.py"}, "region": {"startLine": 205}}}]}, {"ruleId": "scanner-d1f1c4f02bdb4af4", "level": "error", "message": {"text": "FastAPI POST `fetch_cert` without auth dependency \u2014 app/routers/dynamic_layers.py:254"}, "properties": {"repobilityId": "f8286941d4701e40", "scanner": "scanner-primary", "fingerprint": "d1f1c4f02bdb4af4", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/dynamic_layers.py"}, "region": {"startLine": 254}}}]}, {"ruleId": "scanner-df0c2ba5e8ca3a9d", "level": "error", "message": {"text": "FastAPI POST `layer_delete` without auth dependency \u2014 app/routers/dynamic_layers.py:273"}, "properties": {"repobilityId": "62caed7b0bf93545", "scanner": "scanner-primary", "fingerprint": "df0c2ba5e8ca3a9d", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/dynamic_layers.py"}, "region": {"startLine": 273}}}]}, {"ruleId": "scanner-5ad176a6035c2dc6", "level": "error", "message": {"text": "FastAPI POST `gateways_create` without auth dependency \u2014 app/routers/gateways.py:56"}, "properties": {"repobilityId": "c1f9a445cc16d8bf", "scanner": "scanner-primary", "fingerprint": "5ad176a6035c2dc6", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/gateways.py"}, "region": {"startLine": 56}}}]}, {"ruleId": "scanner-40d9b29eafb12eed", "level": "error", "message": {"text": "FastAPI POST `gateways_update` without auth dependency \u2014 app/routers/gateways.py:81"}, "properties": {"repobilityId": "0492193d91f9c9cc", "scanner": "scanner-primary", "fingerprint": "40d9b29eafb12eed", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/gateways.py"}, "region": {"startLine": 81}}}]}, {"ruleId": "scanner-a8f2cbae8ab9bf76", "level": "error", "message": {"text": "FastAPI POST `gateways_delete` without auth dependency \u2014 app/routers/gateways.py:95"}, "properties": {"repobilityId": "4b125e720b9894b0", "scanner": "scanner-primary", "fingerprint": "a8f2cbae8ab9bf76", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routers/gateways.py"}, "region": {"startLine": 95}}}]}]}]}