{"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-25dda1aed8d2f477", "name": "Possibly dead Python function: require_api_key", "shortDescription": {"text": "Possibly dead Python function: require_api_key"}, "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-eed26ddef91e3e33", "name": "Possibly dead Python function: social_sim", "shortDescription": {"text": "Possibly dead Python function: social_sim"}, "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-bd1e7979aeaf624e", "name": "Possibly dead Python function: instagram_sim", "shortDescription": {"text": "Possibly dead Python function: instagram_sim"}, "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-fe39463780382254", "name": "Possibly dead Python function: twitter_sim", "shortDescription": {"text": "Possibly dead Python function: twitter_sim"}, "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-c35d953b31068767", "name": "Possibly dead Python function: reshare_sim", "shortDescription": {"text": "Possibly dead Python function: reshare_sim"}, "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-e066691601852931", "name": "Docker base image is tag-pinned but not digest-pinned: python:3.11-slim", "shortDescription": {"text": "Docker base image is tag-pinned but not digest-pinned: python:3.11-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-aa5acaa49eb8315b", "name": "Containers defined but no K8s/orchestration manifest found", "shortDescription": {"text": "Containers defined but no K8s/orchestration manifest found"}, "fullDescription": {"text": "Repo has Dockerfiles/compose but no Kubernetes/Nomad manifests. If the target deployment is K8s, the manifests may live in a separate ops repo."}, "properties": {"scanner": "scanner-primary", "layer": "hardware", "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-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 19 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-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-21483852cb94af0f", "name": "Network/subprocess call without timeout or try/except \u2014 bench/corpus.py:20", "shortDescription": {"text": "Network/subprocess call without timeout or try/except \u2014 bench/corpus.py:20"}, "fullDescription": {"text": "`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-1a23613ab10783d1", "name": "Network/subprocess call without timeout or try/except \u2014 bench/attacks.py:7", "shortDescription": {"text": "Network/subprocess call without timeout or try/except \u2014 bench/attacks.py:7"}, "fullDescription": {"text": "`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-1b5a76780c3df9aa", "name": "1 env vars used in code but missing from .env.example", "shortDescription": {"text": "1 env vars used in code but missing from .env.example"}, "fullDescription": {"text": "Drift between code and config docs. The first few: `FPWM_BENCH_ENGINE`. Add them (with a placeholder/comment) to .env.example so onboarding doesn't break."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "info", "confidence": 1.0}}, {"id": "scanner-2c04133e54348533", "name": "Near-duplicate function bodies in 2 places", "shortDescription": {"text": "Near-duplicate function bodies in 2 places"}, "fullDescription": {"text": "Functions with the same first-5-line body hash:\napp/routes/image.py:watermark_image_job_status, app/routes/image.py:detect_image_job_status\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-04345becac64e2d6", "name": "FastAPI POST `create_watermark` without auth dependency \u2014 app/routes/watermark.py:14", "shortDescription": {"text": "FastAPI POST `create_watermark` without auth dependency \u2014 app/routes/watermark.py:14"}, "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-6faa5090955138e6", "name": "FastAPI POST `watermark_image` without auth dependency \u2014 app/routes/image.py:81", "shortDescription": {"text": "FastAPI POST `watermark_image` without auth dependency \u2014 app/routes/image.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-25d04602342ebfe2", "name": "FastAPI POST `create_watermark_image_job` without auth dependency \u2014 app/routes/image.py:113", "shortDescription": {"text": "FastAPI POST `create_watermark_image_job` without auth dependency \u2014 app/routes/image.py:113"}, "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-18c8f62f875f22d8", "name": "FastAPI POST `detect_image` without auth dependency \u2014 app/routes/image.py:153", "shortDescription": {"text": "FastAPI POST `detect_image` without auth dependency \u2014 app/routes/image.py:153"}, "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-7a55a512b77e5792", "name": "FastAPI POST `create_detect_image_job` without auth dependency \u2014 app/routes/image.py:179", "shortDescription": {"text": "FastAPI POST `create_detect_image_job` without auth dependency \u2014 app/routes/image.py:179"}, "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-d1047e99d3bd746a", "name": "FastAPI POST `create_detect` without auth dependency \u2014 app/routes/detect.py:12", "shortDescription": {"text": "FastAPI POST `create_detect` without auth dependency \u2014 app/routes/detect.py:12"}, "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": "`app/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-8ad816262b88fef4", "name": "Unused endpoint: POST /video", "shortDescription": {"text": "Unused endpoint: POST /video"}, "fullDescription": {"text": "`app/routes/watermark.py` declares `POST /video` 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-ee53a8b03729481e", "name": "Unused endpoint: GET /jobs/{job_id}", "shortDescription": {"text": "Unused endpoint: GET /jobs/{job_id}"}, "fullDescription": {"text": "`app/routes/watermark.py` declares `GET /jobs/{job_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-d10e5c556d4bcff6", "name": "Unused endpoint: GET /capabilities", "shortDescription": {"text": "Unused endpoint: GET /capabilities"}, "fullDescription": {"text": "`app/routes/image.py` declares `GET /capabilities` 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-de4eef328738f061", "name": "Unused endpoint: POST /watermark", "shortDescription": {"text": "Unused endpoint: POST /watermark"}, "fullDescription": {"text": "`app/routes/image.py` declares `POST /watermark` 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-ddbd8ea2056d96a0", "name": "Unused endpoint: POST /watermark/jobs", "shortDescription": {"text": "Unused endpoint: POST /watermark/jobs"}, "fullDescription": {"text": "`app/routes/image.py` declares `POST /watermark/jobs` 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-f19e20d60f4d0e92", "name": "Unused endpoint: GET /watermark/jobs/{job_id}", "shortDescription": {"text": "Unused endpoint: GET /watermark/jobs/{job_id}"}, "fullDescription": {"text": "`app/routes/image.py` declares `GET /watermark/jobs/{job_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-aa11ba9351e569ed", "name": "Unused endpoint: POST /detect", "shortDescription": {"text": "Unused endpoint: POST /detect"}, "fullDescription": {"text": "`app/routes/image.py` declares `POST /detect` 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-85b1e5922dfaa584", "name": "Unused endpoint: POST /detect/jobs", "shortDescription": {"text": "Unused endpoint: POST /detect/jobs"}, "fullDescription": {"text": "`app/routes/image.py` declares `POST /detect/jobs` 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-e03d3011396f8901", "name": "Unused endpoint: GET /detect/jobs/{job_id}", "shortDescription": {"text": "Unused endpoint: GET /detect/jobs/{job_id}"}, "fullDescription": {"text": "`app/routes/image.py` declares `GET /detect/jobs/{job_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}}]}}, "automationDetails": {"id": "repobility/18721"}, "properties": {"repository": "Sadiq-Teslim/watermarking-engine", "repoUrl": "https://github.com/Sadiq-Teslim/watermarking-engine", "branch": "main"}, "results": [{"ruleId": "scanner-25dda1aed8d2f477", "level": "note", "message": {"text": "Possibly dead Python function: require_api_key"}, "properties": {"repobilityId": "44e8e9840fc57179", "scanner": "scanner-primary", "fingerprint": "25dda1aed8d2f477", "layer": "software", "severity": "low", "confidence": 1.0, "tags": ["dead-code"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/auth.py:9"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-eed26ddef91e3e33", "level": "note", "message": {"text": "Possibly dead Python function: social_sim"}, "properties": {"repobilityId": "54c45515a1d8f91b", "scanner": "scanner-primary", "fingerprint": "eed26ddef91e3e33", "layer": "software", "severity": "low", "confidence": 1.0, "tags": ["dead-code"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "bench/image_attacks.py:69"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-bd1e7979aeaf624e", "level": "note", "message": {"text": "Possibly dead Python function: instagram_sim"}, "properties": {"repobilityId": "53154434f41bfca2", "scanner": "scanner-primary", "fingerprint": "bd1e7979aeaf624e", "layer": "software", "severity": "low", "confidence": 1.0, "tags": ["dead-code"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "bench/image_attacks.py:75"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-fe39463780382254", "level": "note", "message": {"text": "Possibly dead Python function: twitter_sim"}, "properties": {"repobilityId": "ee1cbea4be349549", "scanner": "scanner-primary", "fingerprint": "fe39463780382254", "layer": "software", "severity": "low", "confidence": 1.0, "tags": ["dead-code"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "bench/image_attacks.py:79"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-c35d953b31068767", "level": "note", "message": {"text": "Possibly dead Python function: reshare_sim"}, "properties": {"repobilityId": "6c9e7a5ab1c9f2b9", "scanner": "scanner-primary", "fingerprint": "c35d953b31068767", "layer": "software", "severity": "low", "confidence": 1.0, "tags": ["dead-code"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "bench/image_attacks.py:87"}, "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-e066691601852931", "level": "note", "message": {"text": "Docker base image is tag-pinned but not digest-pinned: python:3.11-slim"}, "properties": {"repobilityId": "3044d52e5a59b171", "scanner": "scanner-primary", "fingerprint": "e066691601852931", "layer": "hardware", "severity": "low", "confidence": 1.0, "tags": ["supply-chain", "docker", "pinned-dependencies"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 3}}}]}, {"ruleId": "scanner-aa5acaa49eb8315b", "level": "note", "message": {"text": "Containers defined but no K8s/orchestration manifest found"}, "properties": {"repobilityId": "b230ea9b68736081", "scanner": "scanner-primary", "fingerprint": "aa5acaa49eb8315b", "layer": "hardware", "severity": "low", "confidence": 1.0, "tags": ["coverage", "deployment"]}}, {"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-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": "c4f820980fa2a749", "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": "cf4cb31fd5c5785b", "scanner": "scanner-primary", "fingerprint": "3ab5d313dda8e5f9", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["debug", "cleanup", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-ea8f3013f588db25", "level": "note", "message": {"text": "Shallow git history limits provenance confidence"}, "properties": {"repobilityId": "44b06691995a7528", "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": "6da6b14b2cb093ab", "scanner": "scanner-primary", "fingerprint": "8424db9c75e04ba4", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["provenance", "git-history", "generated-repo-pattern"]}}, {"ruleId": "scanner-21483852cb94af0f", "level": "warning", "message": {"text": "Network/subprocess call without timeout or try/except \u2014 bench/corpus.py:20"}, "properties": {"repobilityId": "ccf9adef23f16f94", "scanner": "scanner-primary", "fingerprint": "21483852cb94af0f", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-1a23613ab10783d1", "level": "warning", "message": {"text": "Network/subprocess call without timeout or try/except \u2014 bench/attacks.py:7"}, "properties": {"repobilityId": "7b73c33d11b93553", "scanner": "scanner-primary", "fingerprint": "1a23613ab10783d1", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-1b5a76780c3df9aa", "level": "none", "message": {"text": "1 env vars used in code but missing from .env.example"}, "properties": {"repobilityId": "d04379b337b44a15", "scanner": "scanner-primary", "fingerprint": "1b5a76780c3df9aa", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "config-drift"]}}, {"ruleId": "scanner-2c04133e54348533", "level": "note", "message": {"text": "Near-duplicate function bodies in 2 places"}, "properties": {"repobilityId": "15a22171f0809bad", "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": "3368f9a34f6f9e1a", "scanner": "scanner-primary", "fingerprint": "2c04133e54348533", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["integrity", "duplicate", "dry"]}}, {"ruleId": "scanner-04345becac64e2d6", "level": "error", "message": {"text": "FastAPI POST `create_watermark` without auth dependency \u2014 app/routes/watermark.py:14"}, "properties": {"repobilityId": "6a9db6b238c8caf2", "scanner": "scanner-primary", "fingerprint": "04345becac64e2d6", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routes/watermark.py"}, "region": {"startLine": 14}}}]}, {"ruleId": "scanner-6faa5090955138e6", "level": "error", "message": {"text": "FastAPI POST `watermark_image` without auth dependency \u2014 app/routes/image.py:81"}, "properties": {"repobilityId": "5ae8cd7b662776a5", "scanner": "scanner-primary", "fingerprint": "6faa5090955138e6", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routes/image.py"}, "region": {"startLine": 81}}}]}, {"ruleId": "scanner-25d04602342ebfe2", "level": "error", "message": {"text": "FastAPI POST `create_watermark_image_job` without auth dependency \u2014 app/routes/image.py:113"}, "properties": {"repobilityId": "cc224aa2ea21ac21", "scanner": "scanner-primary", "fingerprint": "25d04602342ebfe2", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routes/image.py"}, "region": {"startLine": 113}}}]}, {"ruleId": "scanner-18c8f62f875f22d8", "level": "error", "message": {"text": "FastAPI POST `detect_image` without auth dependency \u2014 app/routes/image.py:153"}, "properties": {"repobilityId": "cae3b72ef2f0812e", "scanner": "scanner-primary", "fingerprint": "18c8f62f875f22d8", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routes/image.py"}, "region": {"startLine": 153}}}]}, {"ruleId": "scanner-7a55a512b77e5792", "level": "error", "message": {"text": "FastAPI POST `create_detect_image_job` without auth dependency \u2014 app/routes/image.py:179"}, "properties": {"repobilityId": "d255d703a8e7deb8", "scanner": "scanner-primary", "fingerprint": "7a55a512b77e5792", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routes/image.py"}, "region": {"startLine": 179}}}]}, {"ruleId": "scanner-d1047e99d3bd746a", "level": "error", "message": {"text": "FastAPI POST `create_detect` without auth dependency \u2014 app/routes/detect.py:12"}, "properties": {"repobilityId": "d1c07a2a202ef9ea", "scanner": "scanner-primary", "fingerprint": "d1047e99d3bd746a", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app/routes/detect.py"}, "region": {"startLine": 12}}}]}, {"ruleId": "scanner-5baa8971ebe192a1", "level": "note", "message": {"text": "Unused endpoint: GET /"}, "properties": {"repobilityId": "d8721f71fae1e2af", "scanner": "scanner-primary", "fingerprint": "5baa8971ebe192a1", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-8ad816262b88fef4", "level": "note", "message": {"text": "Unused endpoint: POST /video"}, "properties": {"repobilityId": "9918ff4d8801896a", "scanner": "scanner-primary", "fingerprint": "8ad816262b88fef4", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-ee53a8b03729481e", "level": "note", "message": {"text": "Unused endpoint: GET /jobs/{job_id}"}, "properties": {"repobilityId": "d034f9989f3cc765", "scanner": "scanner-primary", "fingerprint": "ee53a8b03729481e", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-d10e5c556d4bcff6", "level": "note", "message": {"text": "Unused endpoint: GET /capabilities"}, "properties": {"repobilityId": "03317f1fe3099887", "scanner": "scanner-primary", "fingerprint": "d10e5c556d4bcff6", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-de4eef328738f061", "level": "note", "message": {"text": "Unused endpoint: POST /watermark"}, "properties": {"repobilityId": "0fdb08d3a00bf2a7", "scanner": "scanner-primary", "fingerprint": "de4eef328738f061", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-ddbd8ea2056d96a0", "level": "note", "message": {"text": "Unused endpoint: POST /watermark/jobs"}, "properties": {"repobilityId": "fc86806397e509ac", "scanner": "scanner-primary", "fingerprint": "ddbd8ea2056d96a0", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-f19e20d60f4d0e92", "level": "note", "message": {"text": "Unused endpoint: GET /watermark/jobs/{job_id}"}, "properties": {"repobilityId": "81f4e26fa69bf10d", "scanner": "scanner-primary", "fingerprint": "f19e20d60f4d0e92", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-aa11ba9351e569ed", "level": "note", "message": {"text": "Unused endpoint: POST /detect"}, "properties": {"repobilityId": "1e6a41e426e005b8", "scanner": "scanner-primary", "fingerprint": "aa11ba9351e569ed", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-85b1e5922dfaa584", "level": "note", "message": {"text": "Unused endpoint: POST /detect/jobs"}, "properties": {"repobilityId": "8dafe6f7316baae6", "scanner": "scanner-primary", "fingerprint": "85b1e5922dfaa584", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-e03d3011396f8901", "level": "note", "message": {"text": "Unused endpoint: GET /detect/jobs/{job_id}"}, "properties": {"repobilityId": "2686d47ab527eb66", "scanner": "scanner-primary", "fingerprint": "e03d3011396f8901", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}]}]}