{"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": "MINED111", "name": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or ", "shortDescription": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "fullDescription": {"text": "Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "JRN003", "name": "Frontend API reference is not matched by discovered backend routes", "shortDescription": {"text": "Frontend API reference is not matched by discovered backend routes"}, "fullDescription": {"text": "Add the backend route, update the frontend constant to the implemented endpoint, or document that the route is served by another service and exclude it with .repobilityignore."}, "properties": {"scanner": "repobility-journey-contract", "category": "quality", "severity": "medium", "confidence": 0.74, "cwe": "", "owasp": ""}}, {"id": "AUC009", "name": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function", "shortDescription": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: DELETE "}, "fullDescription": {"text": "Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.68, "cwe": "", "owasp": ""}}, {"id": "AUC004", "name": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence ", "shortDescription": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: GET /grids."}, "fullDescription": {"text": "Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.66, "cwe": "", "owasp": ""}}, {"id": "AUC002", "name": "[AUC002] Low visible authorization coverage in route inventory: Only 38.1% of discovered routes show nearby authenticati", "shortDescription": {"text": "[AUC002] Low visible authorization coverage in route inventory: Only 38.1% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence."}, "fullDescription": {"text": "Review the access matrix and add explicit framework auth declarations or policy-file exceptions for intentionally public routes."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.74, "cwe": "", "owasp": ""}}, {"id": "DKC005", "name": "Compose service adds dangerous Linux capabilities", "shortDescription": {"text": "Compose service adds dangerous Linux capabilities"}, "fullDescription": {"text": "Drop all capabilities by default and add only narrowly required capabilities after review."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "DKR003", "name": "Compose service `arcreel` image uses the latest tag", "shortDescription": {"text": "Compose service `arcreel` image uses the latest tag"}, "fullDescription": {"text": "Pin to a maintained version tag or digest and update it deliberately through dependency automation."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.94, "cwe": "", "owasp": ""}}, {"id": "AGT007", "name": "localStorage write failures are swallowed silently", "shortDescription": {"text": "localStorage write failures are swallowed silently"}, "fullDescription": {"text": "Handle QuotaExceededError explicitly, show a toast or error state, and guide the user to export/clear old local data. Log non-quota failures for diagnostics."}, "properties": {"scanner": "repobility-agent-runtime", "category": "quality", "severity": "medium", "confidence": 0.8, "cwe": "", "owasp": ""}}, {"id": "AGT015", "name": "Remote install command pipes network code directly to a shell", "shortDescription": {"text": "Remote install command pipes network code directly to a shell"}, "fullDescription": {"text": "Publish a package-manager install path or add checksum/signature verification before execution. For docs, show the inspect-then-run flow and pin the downloaded artifact version."}, "properties": {"scanner": "repobility-agent-runtime", "category": "dependency", "severity": "medium", "confidence": 0.7, "cwe": "", "owasp": ""}}, {"id": "SEC015", "name": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable.", "shortDescription": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "fullDescription": {"text": "Use secrets module (Python) or crypto.getRandomValues() (JS) for security-sensitive randomness."}, "properties": {"scanner": "repobility-threat-engine", "category": "crypto", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC045", "name": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a latera", "shortDescription": {"text": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a lateral-movement vector after any one credential compromise. Sandboxes (__builtins__ cleared) are escapable: attackers use obj"}, "fullDescription": {"text": "For literal data structures: use ast.literal_eval(text) \u2014 only parses literals, raises on code.\nFor formula evaluation: use asteval or simpleeval (purpose-built sandboxes with allow-lists).\nFor Odoo: use odoo.tools.safe_eval(expr, locals_dict, mode='exec').\nIf you genuinely need to execute admin-stored code: require explicit super-admin permission AND log every execution with a stack trace."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "ERR002", "name": "[ERR002] Empty Catch Block: Empty catch blocks hide errors.", "shortDescription": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "fullDescription": {"text": "Log the error or rethrow it. Use console.error() at minimum."}, "properties": {"scanner": "repobility-threat-engine", "category": "error_handling", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC139", "name": "[SEC139] AI-generated migration/route without companion test file: Route or migration touching auth, admin, users, payme", "shortDescription": {"text": "[SEC139] AI-generated migration/route without companion test file: Route or migration touching auth, admin, users, payments, or webhooks \u2014 exactly the surfaces that need tests \u2014 with no companion test file. AI agents rewrite handlers fluent"}, "fullDescription": {"text": "Require a companion test file for any change to auth/admin/users/payments/webhooks paths. CI gate: if `src/auth/*.py` changed in a PR, fail if `tests/auth/*.py` did not also change. For migrations, require an explicit rollback (`op.execute('-- rollback ...')`) plus a test that exercises both directions."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "COMP001", "name": "[COMP001] High cognitive complexity: Function `find_char_offset` has cognitive complexity 18 (SonarSource scale). Cognit", "shortDescription": {"text": "[COMP001] High cognitive complexity: Function `find_char_offset` has cognitive complexity 18 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recurs"}, "fullDescription": {"text": "Extract nested branches into named helper functions; flatten early-return / guard clauses; replace long if/elif chains with dispatch dicts or polymorphism. SonarQube's threshold for 'should refactor' is 15 \u2014 yours is 18."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 0.95, "cwe": "", "owasp": ""}}, {"id": "WEB003", "name": "Public web service has no security.txt", "shortDescription": {"text": "Public web service has no security.txt"}, "fullDescription": {"text": "Add /.well-known/security.txt with Contact, Expires, Canonical, Preferred-Languages, and Policy fields. Keep the contact endpoint monitored."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "medium", "confidence": 0.78, "cwe": "", "owasp": ""}}, {"id": "JRN002", "name": "Browser storage is used for session token material", "shortDescription": {"text": "Browser storage is used for session token material"}, "fullDescription": {"text": "Prefer httpOnly, Secure, SameSite cookies or short-lived in-memory tokens. Avoid persistent browser storage for access, refresh, ID, or partner session tokens."}, "properties": {"scanner": "repobility-journey-contract", "category": "auth", "severity": "medium", "confidence": 0.82, "cwe": "", "owasp": ""}}, {"id": "AUC012", "name": "[AUC012] FastAPI interactive docs may be exposed by framework defaults: FastAPI exposes /docs, /redoc, and /openapi.json", "shortDescription": {"text": "[AUC012] FastAPI interactive docs may be exposed by framework defaults: FastAPI exposes /docs, /redoc, and /openapi.json by default. Public production APIs should explicitly disable those defaults, protect them behind admin authentication, "}, "fullDescription": {"text": "Set docs_url=None, redoc_url=None, and openapi_url=None for production apps unless the docs are intentionally public and protected by routing, ingress, or an authenticated docs handler."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "AUC001", "name": "[AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobilit", "shortDescription": {"text": "[AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation."}, "fullDescription": {"text": "Add .repobility/access.yml mapping routes to anonymous, authenticated, owner, admin, and super_admin. Keep business-specific rules in the repo so CI can enforce them."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.92, "cwe": "", "owasp": ""}}, {"id": "DKR001", "name": "Docker final stage has no non-root USER", "shortDescription": {"text": "Docker final stage has no non-root USER"}, "fullDescription": {"text": "Add a non-root USER in the final runtime stage after files and permissions are prepared."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.82, "cwe": "", "owasp": ""}}, {"id": "ERR001", "name": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG ", "shortDescription": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "fullDescription": {"text": "Log the error: `except Exception: logger.debug('cleanup failed', exc_info=True)`. Or handle specific exception types."}, "properties": {"scanner": "repobility-threat-engine", "category": "error_handling", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC001", "name": "[SEC001] Hardcoded Password: Hardcoded password found in source code.", "shortDescription": {"text": "[SEC001] Hardcoded Password: Hardcoded password found in source code."}, "fullDescription": {"text": "Use environment variables or a secrets manager."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "medium", "confidence": 0.3, "cwe": "", "owasp": ""}}, {"id": "AIC003", "name": "Duplicated implementation block across source files", "shortDescription": {"text": "Duplicated implementation block across source files"}, "fullDescription": {"text": "Duplicated blocks are a common artifact when generated code is pasted or recreated instead of reused. They increase maintenance cost because every future bug fix must be found in multiple locations."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "medium", "confidence": 0.86, "cwe": "", "owasp": ""}}, {"id": "AIC004", "name": "Suspicious implementation file appears unreferenced", "shortDescription": {"text": "Suspicious implementation file appears unreferenced"}, "fullDescription": {"text": "Confirm whether this file is reachable. If not, delete it; if yes, wire it through explicit imports, routes, or entry points and add a test that proves the path executes."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "medium", "confidence": 0.78, "cwe": "", "owasp": ""}}, {"id": "DKC010", "name": "Compose service lacks no-new-privileges hardening", "shortDescription": {"text": "Compose service lacks no-new-privileges hardening"}, "fullDescription": {"text": "Add `security_opt: [\"no-new-privileges:true\"]` unless the service has a documented need for privilege escalation."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.62, "cwe": "", "owasp": ""}}, {"id": "DKC006", "name": "Compose service does not declare a runtime user", "shortDescription": {"text": "Compose service does not declare a runtime user"}, "fullDescription": {"text": "Set a non-root `user:` in Compose or ensure the final image stage has a non-root USER directive."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.56, "cwe": "", "owasp": ""}}, {"id": "DKC017", "name": "Database password is wired through an environment variable placeholder", "shortDescription": {"text": "Database password is wired through an environment variable placeholder"}, "fullDescription": {"text": "Prefer Compose secrets or your platform secret manager with *_FILE variables where the image supports them. Rotate only if a real value was committed."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.58, "cwe": "", "owasp": ""}}, {"id": "DKR008", "name": ".dockerignore misses sensitive defaults", "shortDescription": {"text": ".dockerignore misses sensitive defaults"}, "fullDescription": {"text": "Add missing patterns such as .env, .git, private keys, certificates, dependency folders, and local databases."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "AIC005", "name": "Duplicate top-level symbol appears in a patch-style file", "shortDescription": {"text": "Duplicate top-level symbol appears in a patch-style file"}, "fullDescription": {"text": "Keep one authoritative implementation, update imports to point at it, and remove or rename the duplicate symbol."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "low", "confidence": 0.64, "cwe": "", "owasp": ""}}, {"id": "AIC002", "name": "Source file name looks like an AI patch artifact", "shortDescription": {"text": "Source file name looks like an AI patch artifact"}, "fullDescription": {"text": "Rename it to the domain concept it implements or merge it into the existing module it was meant to change."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "low", "confidence": 0.62, "cwe": "", "owasp": ""}}, {"id": "SEC135", "name": "[SEC135] Auth/permission check missing on AI-generated endpoint (and 4 more): Same pattern found in 4 additional files. ", "shortDescription": {"text": "[SEC135] Auth/permission check missing on AI-generated endpoint (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "fullDescription": {"text": "Add the project's auth decorator/middleware: `@login_required` (Django/Flask), `@permission_classes([IsAuthenticated])` (DRF), `Depends(get_current_user)` (FastAPI), `requireAuth` middleware (Express). For genuinely public endpoints, add a `# public-endpoint` marker comment so future scans skip them."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED047", "name": "[MINED047] Emoji In Source (and 2 more): Same pattern found in 2 additional files. Review if needed.", "shortDescription": {"text": "[MINED047] Emoji In Source (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED045", "name": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong.", "shortDescription": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-476 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED044", "name": "[MINED044] Js Console Log Prod (and 3 more): Same pattern found in 3 additional files. Review if needed.", "shortDescription": {"text": "[MINED044] Js Console Log Prod (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-532 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED056", "name": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order.", "shortDescription": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-682 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC128", "name": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 5 more): Same pattern found in 5 addit", "shortDescription": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 5 more): Same pattern found in 5 additional files. Review if needed."}, "fullDescription": {"text": "Add `await` before each async call, or chain with `.then`. If you intentionally want fire-and-forget, prefix with `void` (TS) or assign to `_` (Python with `asyncio.create_task`) to make the intent explicit and survive lint."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC029", "name": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 13 more): Same pattern found in 13 addi", "shortDescription": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 13 more): Same pattern found in 13 additional files. Review if needed."}, "fullDescription": {"text": "Validate the URL against an allowlist BEFORE fetching:\n  ALLOWED = {'images.example.com', 'cdn.example.com'}\n  host = urlparse(url).hostname\n  if host not in ALLOWED: abort(400)\nOr use a server-side proxy (Imgproxy / serve-files-only-from-S3) that isolates outbound network access from the request handler.\nBlock private CIDRs explicitly: 10/8, 172.16/12, 192.168/16, 169.254/16."}, "properties": {"scanner": "repobility-threat-engine", "category": "ssrf", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED050", "name": "[MINED050] Stub Only Function (and 3 more): Same pattern found in 3 additional files. Review if needed.", "shortDescription": {"text": "[MINED050] Stub Only Function (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-1188 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED001", "name": "[MINED001] Bare Except Pass (and 1 more): Same pattern found in 1 additional files. Review if needed.", "shortDescription": {"text": "[MINED001] Bare Except Pass (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-755 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC002", "name": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code.", "shortDescription": {"text": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code."}, "fullDescription": {"text": "Use environment variables. Add the pattern to .gitignore."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "cwe": "", "owasp": ""}}, {"id": "SEC020", "name": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequen", "shortDescription": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "fullDescription": {"text": "Log only redacted, hashed, or last-four-style metadata. Rotate any secret that may have reached logs."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "cwe": "", "owasp": ""}}, {"id": "MINED115", "name": "[MINED115] Action `aquasecurity/trivy-action` pinned to mutable ref `@v0.36.0`: `uses: aquasecurity/trivy-action@v0.36.0", "shortDescription": {"text": "[MINED115] Action `aquasecurity/trivy-action` pinned to mutable ref `@v0.36.0`: `uses: aquasecurity/trivy-action@v0.36.0` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/change"}, "fullDescription": {"text": "Replace with: `uses: aquasecurity/trivy-action@<40-char-sha>  # v0.36.0` and let Dependabot bump it on a scheduled cadence."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED126", "name": "[MINED126] Workflow container/services image `postgres:16` unpinned: `container/services image: postgres:16` without `@s", "shortDescription": {"text": "[MINED126] Workflow container/services image `postgres:16` unpinned: `container/services image: postgres:16` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain disc"}, "fullDescription": {"text": "Replace with `postgres:16@sha256:<digest>`. Re-pin via Dependabot Docker scope."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED118", "name": "[MINED118] Dockerfile FROM `python:3.12-slim` not pinned by digest: `FROM python:3.12-slim` resolves the tag at build ti", "shortDescription": {"text": "[MINED118] Dockerfile FROM `python:3.12-slim` not pinned by digest: `FROM python:3.12-slim` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production ima"}, "fullDescription": {"text": "Replace with: `FROM python:3.12-slim@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot)."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED106", "name": "[MINED106] Phantom test coverage: test_execute_generation_task_rejects_unknown_type: Test function `test_execute_generat", "shortDescription": {"text": "[MINED106] Phantom test coverage: test_execute_generation_task_rejects_unknown_type: Test function `test_execute_generation_task_rejects_unknown_type` runs code but contains no assert / expect / should call \u2014 it passes regardless of behavio"}, "fullDescription": {"text": "Add an explicit assertion that captures the test's intent, or remove the test."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED108", "name": "[MINED108] `self._validate_generated_assets` used but never assigned in __init__: Method `_validate_scenes` of class `Da", "shortDescription": {"text": "[MINED108] `self._validate_generated_assets` used but never assigned in __init__: Method `_validate_scenes` of class `DataValidator` reads `self._validate_generated_assets`, but no assignment to it exists in __init__ (and no class-level fal"}, "fullDescription": {"text": "Initialize `self._validate_generated_assets = <default>` in __init__, or add a class-level default."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "JRN009", "name": "Secret-like setting is echoed into a password input value", "shortDescription": {"text": "Secret-like setting is echoed into a password input value"}, "fullDescription": {"text": "Never prefill secret fields with stored values. Show a masked status such as configured/not configured, require explicit rotation to replace the value, and return the raw key only once at creation time."}, "properties": {"scanner": "repobility-journey-contract", "category": "auth", "severity": "high", "confidence": 0.83, "cwe": "", "owasp": ""}}, {"id": "AUC003", "name": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby a", "shortDescription": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: DELETE /episodes/{episode}/units/{"}, "fullDescription": {"text": "Add ownership, tenant, relationship, or policy checks before reading or mutating the target object."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "high", "confidence": 0.7, "cwe": "", "owasp": ""}}, {"id": "MINED009", "name": "[MINED009] Floats For Money: Variable named price/amount/cost typed as float instead of Decimal.", "shortDescription": {"text": "[MINED009] Floats For Money: Variable named price/amount/cost typed as float instead of Decimal."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-682 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED006", "name": "[MINED006] Overcatch Baseexception: except BaseException: ... \u2014 prevents Ctrl+C and SystemExit from working.", "shortDescription": {"text": "[MINED006] Overcatch Baseexception: except BaseException: ... \u2014 prevents Ctrl+C and SystemExit from working."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-705 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC085", "name": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. ", "shortDescription": {"text": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. Ported from eslint-plugin-security detect-child-process (Apache-2.0)."}, "fullDescription": {"text": "Use execFile / spawn with separate args array; never pass shell strings."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "DKC013", "name": "Database service has no persistent data volume", "shortDescription": {"text": "Database service has no persistent data volume"}, "fullDescription": {"text": "Mount the database data directory to a named Docker volume or managed persistent disk, and document backup and restore testing."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED116", "name": "[MINED116] Workflow uses `secrets.CODECOV_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, ", "shortDescription": {"text": "[MINED116] Workflow uses `secrets.CODECOV_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CODECOV_TOKEN }` lets a PR from any fork exfiltrate the secret"}, "fullDescription": {"text": "Either remove the secret reference, or switch the trigger to `pull_request_target` AND ensure no fork-controlled code runs before the secret is consumed."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "critical", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED107", "name": "[MINED107] Missing import: `warnings` used but not imported: The file uses `warnings.something(...)` but never imports `", "shortDescription": {"text": "[MINED107] Missing import: `warnings` used but not imported: The file uses `warnings.something(...)` but never imports `warnings`. This raises NameError at runtime the first time the line executes."}, "fullDescription": {"text": "Add `import warnings` at the top of the file."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "DKC007", "name": "Compose service contains a literal secret environment value", "shortDescription": {"text": "Compose service contains a literal secret environment value"}, "fullDescription": {"text": "Literal secrets in Compose files are committed to source and exposed through container inspection."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "critical", "confidence": 0.96, "cwe": "", "owasp": ""}}]}}, "automationDetails": {"id": "repobility/219"}, "properties": {"repository": "ArcReel/ArcReel", "repoUrl": "https://github.com/ArcReel/ArcReel", "branch": "main"}, "results": [{"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47700, "scanner": "repobility-ast-engine", "fingerprint": "9633aa93373c7c8b2a340b8dca019ec9cde85caad7c5d99332b37f6caadccd80", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|9633aa93373c7c8b2a340b8dca019ec9cde85caad7c5d99332b37f6caadccd80"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/agent_runtime/session_actor.py"}, "region": {"startLine": 154}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47697, "scanner": "repobility-ast-engine", "fingerprint": "7df4d4c257cc3cac0d3de193a856db6b6ea53e79a2b83c96ec59e5e5728bbf68", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|7df4d4c257cc3cac0d3de193a856db6b6ea53e79a2b83c96ec59e5e5728bbf68"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/services/cost_estimation.py"}, "region": {"startLine": 130}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47696, "scanner": "repobility-ast-engine", "fingerprint": "c1af515c5e790c2459095d44c103649c7156e503d812f07d68c4950e82327456", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|c1af515c5e790c2459095d44c103649c7156e503d812f07d68c4950e82327456"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/services/cost_estimation.py"}, "region": {"startLine": 64}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47695, "scanner": "repobility-ast-engine", "fingerprint": "93c3bcfb2a12c91df61a1aec1068cf07dec48ed3eb514163dff68c465a34c198", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|93c3bcfb2a12c91df61a1aec1068cf07dec48ed3eb514163dff68c465a34c198"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/services/cost_estimation.py"}, "region": {"startLine": 59}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47694, "scanner": "repobility-ast-engine", "fingerprint": "6aa3319401d8c7dbbda56d6a98d611fec55169b5ad879dbb4e527a72e16e6c28", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|6aa3319401d8c7dbbda56d6a98d611fec55169b5ad879dbb4e527a72e16e6c28"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/services/cost_estimation.py"}, "region": {"startLine": 54}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47692, "scanner": "repobility-ast-engine", "fingerprint": "dab7d03fe065481f8c63a4def8c014508dcb145562a1f59fd4afdd71eac64a6a", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|dab7d03fe065481f8c63a4def8c014508dcb145562a1f59fd4afdd71eac64a6a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/services/diagnostics.py"}, "region": {"startLine": 85}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47691, "scanner": "repobility-ast-engine", "fingerprint": "f39ad4528fe8a32380ccc6848ead8fe54697601c71e1352de88ef4476579e1af", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f39ad4528fe8a32380ccc6848ead8fe54697601c71e1352de88ef4476579e1af"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/services/diagnostics.py"}, "region": {"startLine": 42}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47690, "scanner": "repobility-ast-engine", "fingerprint": "fbb2f3eb636b61e6d8a8577937968dab79fd8784cb31e357ff9f3a02fcfcb87d", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|fbb2f3eb636b61e6d8a8577937968dab79fd8784cb31e357ff9f3a02fcfcb87d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/services/diagnostics.py"}, "region": {"startLine": 22}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47689, "scanner": "repobility-ast-engine", "fingerprint": "ea54fa8ee60df88c33afb229004a8fe4bda0990ef137bae4649ca2a83f0f8536", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ea54fa8ee60df88c33afb229004a8fe4bda0990ef137bae4649ca2a83f0f8536"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/services/generation_tasks.py"}, "region": {"startLine": 848}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47688, "scanner": "repobility-ast-engine", "fingerprint": "d70a57ad7eafbf503ce751358a2ddfbede33d9a6daca1f8606667b1fe94fcfce", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|d70a57ad7eafbf503ce751358a2ddfbede33d9a6daca1f8606667b1fe94fcfce"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/services/generation_tasks.py"}, "region": {"startLine": 836}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47687, "scanner": "repobility-ast-engine", "fingerprint": "be510010c7c26a1e03e3d0764a84b7f64ca6ec9e857f2d9dd9c78e1ef80ac407", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|be510010c7c26a1e03e3d0764a84b7f64ca6ec9e857f2d9dd9c78e1ef80ac407"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/services/generation_tasks.py"}, "region": {"startLine": 571}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47686, "scanner": "repobility-ast-engine", "fingerprint": "c1a9f34c3423446b26eeca741828dc5d76b9c35439f4cbde14d6f19fbbf7cb8a", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|c1a9f34c3423446b26eeca741828dc5d76b9c35439f4cbde14d6f19fbbf7cb8a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/services/generation_tasks.py"}, "region": {"startLine": 558}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47681, "scanner": "repobility-ast-engine", "fingerprint": "ca0e3d41cc7275908789910eb5b5cc9729983e9fc8f0d72c9075df50de344874", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ca0e3d41cc7275908789910eb5b5cc9729983e9fc8f0d72c9075df50de344874"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 991}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47680, "scanner": "repobility-ast-engine", "fingerprint": "7736934c35f6ae9c6f733543f436813910ea88eee8e4d63ac4236bbbf43eb26c", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|7736934c35f6ae9c6f733543f436813910ea88eee8e4d63ac4236bbbf43eb26c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "agent_runtime_profile/.claude/skills/compose-video/scripts/compose_video.py"}, "region": {"startLine": 723}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47679, "scanner": "repobility-ast-engine", "fingerprint": "b67cc1473646ec99977b1e61d8d2fada5c4aad63f63875dbde0fefd74dae7317", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b67cc1473646ec99977b1e61d8d2fada5c4aad63f63875dbde0fefd74dae7317"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/db/repositories/task_repo.py"}, "region": {"startLine": 34}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47678, "scanner": "repobility-ast-engine", "fingerprint": "58d9638bdeaffaea91e61dc9049088de14c129563c7106656c7415d953754392", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|58d9638bdeaffaea91e61dc9049088de14c129563c7106656c7415d953754392"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/i18n/__init__.py"}, "region": {"startLine": 105}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47677, "scanner": "repobility-ast-engine", "fingerprint": "4d657ef1669849587e567336c08c3263cbc23f318e88816d93662728cb5dc701", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|4d657ef1669849587e567336c08c3263cbc23f318e88816d93662728cb5dc701"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/project_migrations/v0_to_v1_clues_to_scenes_props.py"}, "region": {"startLine": 88}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47675, "scanner": "repobility-ast-engine", "fingerprint": "81a79b18ab19f96a5aaa4e87f8a72fdd5877954782bdae224d154cd2fe9ecc65", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|81a79b18ab19f96a5aaa4e87f8a72fdd5877954782bdae224d154cd2fe9ecc65"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_project_manager_concurrent_save.py"}, "region": {"startLine": 112}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47674, "scanner": "repobility-ast-engine", "fingerprint": "5c7e9e5961afe9a75e889d3e5119043fcd64f45d582458b88b0fd943c1f00435", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|5c7e9e5961afe9a75e889d3e5119043fcd64f45d582458b88b0fd943c1f00435"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_project_manager_concurrent_save.py"}, "region": {"startLine": 105}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47673, "scanner": "repobility-ast-engine", "fingerprint": "a697105d488dabf57e1a68aad2eff1f99f93c9439839e2b04313c980f17b8f3b", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|a697105d488dabf57e1a68aad2eff1f99f93c9439839e2b04313c980f17b8f3b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_project_manager_migration.py"}, "region": {"startLine": 148}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47643, "scanner": "repobility-ast-engine", "fingerprint": "91ed64fbdafaeb4699c67b8feb429cd425dbea0c6c27e7bc91659d6869c28a9d", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|91ed64fbdafaeb4699c67b8feb429cd425dbea0c6c27e7bc91659d6869c28a9d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/probe_smoke.py"}, "region": {"startLine": 34}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47642, "scanner": "repobility-ast-engine", "fingerprint": "533f9b4d452d50ecb0a0fe96615aa5ea3bdc8dee1248017ed8b33d3c2607143a", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|533f9b4d452d50ecb0a0fe96615aa5ea3bdc8dee1248017ed8b33d3c2607143a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/generate_style_thumbnails.py"}, "region": {"startLine": 111}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47641, "scanner": "repobility-ast-engine", "fingerprint": "7d8d64ed2d7c12da8229cb99564968d92c7fefdf195948b01abf1551f9a4f923", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|7d8d64ed2d7c12da8229cb99564968d92c7fefdf195948b01abf1551f9a4f923"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/verify_reference_video_sdks.py"}, "region": {"startLine": 182}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47640, "scanner": "repobility-ast-engine", "fingerprint": "0290f65343b75a9c560de5e805bab47646f8c6d6c4450a9ac41d1810136b3ab3", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|0290f65343b75a9c560de5e805bab47646f8c6d6c4450a9ac41d1810136b3ab3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/generation_queue_client.py"}, "region": {"startLine": 454}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 47638, "scanner": "repobility-ast-engine", "fingerprint": "ec81f0532c2ca4432ca3ec1e85a62c161ae10e7b272bb582d3796a9f84b8e667", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ec81f0532c2ca4432ca3ec1e85a62c161ae10e7b272bb582d3796a9f84b8e667"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/logging_utils.py"}, "region": {"startLine": 119}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 47609, "scanner": "repobility-journey-contract", "fingerprint": "3bac0c387a60370d9fcfb5e226e0b5401a542f863efa6d175bcc9b60216e8bfe", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/v1/auth/token", "correlation_key": "fp|3bac0c387a60370d9fcfb5e226e0b5401a542f863efa6d175bcc9b60216e8bfe", "backend_endpoint_count": 118}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/pages/LoginPage.tsx"}, "region": {"startLine": 46}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 47608, "scanner": "repobility-journey-contract", "fingerprint": "6514f9f345d65b2d1ac566daa2b22b028180e17419c526a7ddf750f73d85ca79", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/v1", "correlation_key": "fp|6514f9f345d65b2d1ac566daa2b22b028180e17419c526a7ddf750f73d85ca79", "backend_endpoint_count": 118}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/api.ts"}, "region": {"startLine": 252}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: DELETE /sessions/{session_id}."}, "properties": {"repobilityId": 47607, "scanner": "repobility-access-control", "fingerprint": "68970f5c4f982e6d6e154254e81b67957a2c900ca4cc83af936aef4f875ca476", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/sessions/{session_id}", "method": "DELETE", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/assistant.py|137|auc009", "identity_targets": ["authenticated", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/assistant.py"}, "region": {"startLine": 137}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: DELETE /episodes/{episode}/units/{unit_id}."}, "properties": {"repobilityId": 47606, "scanner": "repobility-access-control", "fingerprint": "23967deb01e51616a7706b12a745a28c12cca2ef95a836c34dd2d39347595da6", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/episodes/{episode}/units/{unit_id}", "method": "DELETE", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|token|271|auc009", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/reference_videos.py"}, "region": {"startLine": 271}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /projects/{name}/export/jianying-draft."}, "properties": {"repobilityId": 47605, "scanner": "repobility-access-control", "fingerprint": "eaa945eb721a524d3fca08dd946afd48ff9062e965d70571f939c38abfff16ab", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}/export/jianying-draft", "method": "GET", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|302|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 302}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /projects/{name}/export."}, "properties": {"repobilityId": 47604, "scanner": "repobility-access-control", "fingerprint": "3ce0ad0d037b557b82ef3d4556c0dab77c559ea85f4296b15da3d1978e0a6feb", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}/export", "method": "GET", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|240|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 240}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /projects/{name}/export/token."}, "properties": {"repobilityId": 47603, "scanner": "repobility-access-control", "fingerprint": "64bd915a71c0c54218d5f3d68ea67cdc438a1d5c83ec6f1714ef7dad0e226bd6", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}/export/token", "method": "POST", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|208|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 208}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /projects/import."}, "properties": {"repobilityId": 47602, "scanner": "repobility-access-control", "fingerprint": "94aedc903f8e5b2e025c54a9f810d8079875c87106d25641388afbcd7853c959", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/import", "method": "POST", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|138|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 138}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /projects/{project_name}/versions/{resource_type}/{resource_id}/restore/{version}."}, "properties": {"repobilityId": 47601, "scanner": "repobility-access-control", "fingerprint": "3f0a3c6c2d731a542a7d041647176389eee2d636bb27c210389c767b03b09f5e", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{project_name}/versions/{resource_type}/{resource_id}/restore/{version}", "method": "POST", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/versions.py|165|auc009", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/versions.py"}, "region": {"startLine": 165}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: GET /grids."}, "properties": {"repobilityId": 47600, "scanner": "repobility-access-control", "fingerprint": "f740c86a368272bb50261b5e48d3839ef53051111722eb4bbd0c7d0be2047b62", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/grids", "method": "GET", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/grids.py|227|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/grids.py"}, "region": {"startLine": 227}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: PATCH /projects/{name}/overview."}, "properties": {"repobilityId": 47599, "scanner": "repobility-access-control", "fingerprint": "beeb5f296ef73591972d02143a12a4c926551b9d6fd093eafaca007fa7df3d16", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}/overview", "method": "PATCH", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|1027|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 1027}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: POST /projects/{name}/generate-overview."}, "properties": {"repobilityId": 47598, "scanner": "repobility-access-control", "fingerprint": "795bc84ec6708ef480119349f7f3dff2ee3bd0f1a1c1132fcdc847cdc9eed88e", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}/generate-overview", "method": "POST", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|1009|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 1009}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: PATCH /projects/{name}/segments/{segment_id}."}, "properties": {"repobilityId": 47597, "scanner": "repobility-access-control", "fingerprint": "cc973f06d4727077ff6fe987cd1ac0528716c2487e8f90f907c74bddf4f9fb80", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}/segments/{segment_id}", "method": "PATCH", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|855|auc004", "identity_targets": ["unknown", "owner", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 855}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: GET /projects/{name}/scripts/{script_file}."}, "properties": {"repobilityId": 47596, "scanner": "repobility-access-control", "fingerprint": "58989fbde50d45ff5c5c71f6a1df25937315604f4c1d4aa13679d645d8cbbbdb", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}/scripts/{script_file}", "method": "GET", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|757|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 757}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: DELETE /projects/{name}."}, "properties": {"repobilityId": 47595, "scanner": "repobility-access-control", "fingerprint": "5b3bfe6c1d121552eb87c5a0b49d5a1ee7d4e19500f2616586d7217c2e71ef98", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}", "method": "DELETE", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|737|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 737}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: PATCH /projects/{name}."}, "properties": {"repobilityId": 47594, "scanner": "repobility-access-control", "fingerprint": "4fc7d0e483baf6f0ec2d34f56e2c9a663d6ccb69661180d373c6b2a36850c5b7", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}", "method": "PATCH", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|603|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 603}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: GET /projects."}, "properties": {"repobilityId": 47593, "scanner": "repobility-access-control", "fingerprint": "550c9c406efa4ece36ec5da3a4ec169574cc3bef5098d4faf6929d3e953b5928", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects", "method": "GET", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|354|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 354}}}]}, {"ruleId": "AUC002", "level": "warning", "message": {"text": "[AUC002] Low visible authorization coverage in route inventory: Only 38.1% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence."}, "properties": {"repobilityId": 47586, "scanner": "repobility-access-control", "fingerprint": "17a31bcf5d57374dd06c9abff53047d983e1c3e216faabb0889163a69d826b93", "category": "auth", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"scanner": "repobility-access-control", "endpoint_count": 118, "correlation_key": "fp|17a31bcf5d57374dd06c9abff53047d983e1c3e216faabb0889163a69d826b93", "auth_visible_percent": 38.1}}}, {"ruleId": "DKC005", "level": "warning", "message": {"text": "Compose service adds dangerous Linux capabilities"}, "properties": {"repobilityId": 47583, "scanner": "repobility-docker", "fingerprint": "3c9ca077150cbedf772f9c9adc9c0711f7557ae66f17ef9f151e746df2385aa1", "category": "docker", "severity": "medium", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "cap_add includes broad or sensitive Linux capabilities.", "evidence": {"rule_id": "DKC005", "scanner": "repobility-docker", "service": "arcreel", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "capabilities": ["NET_ADMIN"], "correlation_key": "fp|3c9ca077150cbedf772f9c9adc9c0711f7557ae66f17ef9f151e746df2385aa1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "deploy/production/docker-compose.yml"}, "region": {"startLine": 17}}}]}, {"ruleId": "DKR003", "level": "warning", "message": {"text": "Compose service `arcreel` image uses the latest tag"}, "properties": {"repobilityId": 47582, "scanner": "repobility-docker", "fingerprint": "ecfeb4ff72905a2f6397409ef5b31440e3ed29c13681bd0cc731015a91d15195", "category": "docker", "severity": "medium", "confidence": 0.94, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image tag is latest.", "evidence": {"image": "ghcr.io/arcreel/arcreel:latest", "rule_id": "DKR003", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|ecfeb4ff72905a2f6397409ef5b31440e3ed29c13681bd0cc731015a91d15195"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "deploy/production/docker-compose.yml"}, "region": {"startLine": 17}}}]}, {"ruleId": "DKC005", "level": "warning", "message": {"text": "Compose service adds dangerous Linux capabilities"}, "properties": {"repobilityId": 47580, "scanner": "repobility-docker", "fingerprint": "6f31e9d3f44b766a738346a42fc38faeab5c0685ad1586bbc68487a47526613f", "category": "docker", "severity": "medium", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "cap_add includes broad or sensitive Linux capabilities.", "evidence": {"rule_id": "DKC005", "scanner": "repobility-docker", "service": "arcreel", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "capabilities": ["NET_ADMIN"], "correlation_key": "fp|6f31e9d3f44b766a738346a42fc38faeab5c0685ad1586bbc68487a47526613f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "deploy/docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "AGT007", "level": "warning", "message": {"text": "localStorage write failures are swallowed silently"}, "properties": {"repobilityId": 47579, "scanner": "repobility-agent-runtime", "fingerprint": "1a350bcd53d2d022d228da2077f9d9e40e39d489f411014f0868792a5054206d", "category": "quality", "severity": "medium", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File writes to localStorage and has an empty or ignore-only catch block without QuotaExceededError handling.", "evidence": {"rule_id": "AGT007", "scanner": "repobility-agent-runtime", "references": ["https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API"], "correlation_key": "fp|1a350bcd53d2d022d228da2077f9d9e40e39d489f411014f0868792a5054206d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/stores/app-store.ts"}, "region": {"startLine": 223}}}]}, {"ruleId": "AGT015", "level": "warning", "message": {"text": "Remote install command pipes network code directly to a shell"}, "properties": {"repobilityId": 47578, "scanner": "repobility-agent-runtime", "fingerprint": "9b35f9d5850d0556db5649b0d77eb21e52d379bb1b6e9edeb2978578efa41b4f", "category": "dependency", "severity": "medium", "confidence": 0.7, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File contains a remote download piped directly to a shell without visible checksum or signature verification.", "evidence": {"rule_id": "AGT015", "scanner": "repobility-agent-runtime", "references": [], "correlation_key": "fp|9b35f9d5850d0556db5649b0d77eb21e52d379bb1b6e9edeb2978578efa41b4f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/getting-started.md"}, "region": {"startLine": 86}}}]}, {"ruleId": "SEC015", "level": "warning", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 47556, "scanner": "repobility-threat-engine", "fingerprint": "dfadf4ca6856a36a071c1471f5d29c249faaaae1847425dddd44d1027218b327", "category": "crypto", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "evidence": {"match": "def create_api_key", "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|crypto|server/routers/api_keys.py|72|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/api_keys.py"}, "region": {"startLine": 72}}}]}, {"ruleId": "SEC045", "level": "warning", "message": {"text": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a lateral-movement vector after any one credential compromise. Sandboxes (__builtins__ cleared) are escapable: attackers use object introspection (().__class__.__mro__[-1].__subclasses__()) to reach os.system. CWE-95 (eval injection)."}, "properties": {"repobilityId": 47544, "scanner": "repobility-threat-engine", "fingerprint": "2e5596bdb2d0a7e367440e590de29f179fd47bf3a1c578bca720cb8287cf2cd7", "category": "injection", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".exec(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC045", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|60|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/utils/duration_format.ts"}, "region": {"startLine": 60}}}]}, {"ruleId": "SEC045", "level": "warning", "message": {"text": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a lateral-movement vector after any one credential compromise. Sandboxes (__builtins__ cleared) are escapable: attackers use object introspection (().__class__.__mro__[-1].__subclasses__()) to reach os.system. CWE-95 (eval injection)."}, "properties": {"repobilityId": 47543, "scanner": "repobility-threat-engine", "fingerprint": "93339f3d0eba1f1230993a2953ebec7d74731392708ca6aaf7e5504b6ccb3fea", "category": "injection", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".exec(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC045", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|84|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/copilot/chat/ToolCallWithResult.tsx"}, "region": {"startLine": 84}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 47533, "scanner": "repobility-threat-engine", "fingerprint": "b05ee6f0fcd7e5b2ecb6ed0df28ce731d9853a0d79bd1298c39fb4ce60586ffc", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".catch(() => {})", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR002", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|b05ee6f0fcd7e5b2ecb6ed0df28ce731d9853a0d79bd1298c39fb4ce60586ffc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/canvas/grid/GridPreviewView.tsx"}, "region": {"startLine": 57}}}]}, {"ruleId": "SEC139", "level": "warning", "message": {"text": "[SEC139] AI-generated migration/route without companion test file: Route or migration touching auth, admin, users, payments, or webhooks \u2014 exactly the surfaces that need tests \u2014 with no companion test file. AI agents rewrite handlers fluently but skip the test diff almost every time, leaving high-blast-radius code uncovered. Distinct from generic 'no tests' because we target sensitive surfaces where the absence of tests is itself a risk signal. CWE-1078 (missing test coverage of security-critica"}, "properties": {"repobilityId": 47523, "scanner": "repobility-threat-engine", "fingerprint": "dd4eb4335cf737df6e90b94c130fa8dd9a7c97f1cd89cda5137e5649c91b1679", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "op.execute(\"DELETE", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC139", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|dd4eb4335cf737df6e90b94c130fa8dd9a7c97f1cd89cda5137e5649c91b1679"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "alembic/versions/802fa55d8aff_sdk_session_id_upgrade_to_unique_not_.py"}, "region": {"startLine": 25}}}]}, {"ruleId": "SEC139", "level": "warning", "message": {"text": "[SEC139] AI-generated migration/route without companion test file: Route or migration touching auth, admin, users, payments, or webhooks \u2014 exactly the surfaces that need tests \u2014 with no companion test file. AI agents rewrite handlers fluently but skip the test diff almost every time, leaving high-blast-radius code uncovered. Distinct from generic 'no tests' because we target sensitive surfaces where the absence of tests is itself a risk signal. CWE-1078 (missing test coverage of security-critica"}, "properties": {"repobilityId": 47522, "scanner": "repobility-threat-engine", "fingerprint": "fea0b7b0fe848c9ec1a2adb2be8f23afdaca1943dfd4a3aed6dec7e636441a90", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "op.execute(\"DELETE", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC139", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|fea0b7b0fe848c9ec1a2adb2be8f23afdaca1943dfd4a3aed6dec7e636441a90"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "alembic/versions/5b87accc10dd_split_default_image_backend_setting_.py"}, "region": {"startLine": 48}}}]}, {"ruleId": "SEC139", "level": "warning", "message": {"text": "[SEC139] AI-generated migration/route without companion test file: Route or migration touching auth, admin, users, payments, or webhooks \u2014 exactly the surfaces that need tests \u2014 with no companion test file. AI agents rewrite handlers fluently but skip the test diff almost every time, leaving high-blast-radius code uncovered. Distinct from generic 'no tests' because we target sensitive surfaces where the absence of tests is itself a risk signal. CWE-1078 (missing test coverage of security-critica"}, "properties": {"repobilityId": 47521, "scanner": "repobility-threat-engine", "fingerprint": "971674f0612a41b8ce6e4ef4d2746eae3c28a718cc640dfa5aeea3279330a96d", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "op.execute(\"UPDATE", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC139", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|971674f0612a41b8ce6e4ef4d2746eae3c28a718cc640dfa5aeea3279330a96d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "alembic/versions/3c6d6152046e_rename_seedance_provider_to_ark.py"}, "region": {"startLine": 22}}}]}, {"ruleId": "COMP001", "level": "warning", "message": {"text": "[COMP001] High cognitive complexity: Function `find_char_offset` has cognitive complexity 18 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weigh in. Breakdown: continue=2, for=2, if=5, nested_bonus=9."}, "properties": {"repobilityId": 47509, "scanner": "repobility-threat-engine", "fingerprint": "b64b9653e35bd956cf21048edbffba49347e3ce8c2969cde71b2e3ce6b315da8", "category": "quality", "severity": "medium", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 18 (severity threshold for medium: 15+).", "evidence": {"scanner": "repobility-threat-engine", "function": "find_char_offset", "breakdown": {"if": 5, "for": 2, "continue": 2, "nested_bonus": 9}, "complexity": 18, "correlation_key": "fp|b64b9653e35bd956cf21048edbffba49347e3ce8c2969cde71b2e3ce6b315da8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "agent_runtime_profile/.claude/skills/manage-project/scripts/_text_utils.py"}, "region": {"startLine": 25}}}]}, {"ruleId": "WEB003", "level": "warning", "message": {"text": "Public web service has no security.txt"}, "properties": {"repobilityId": 6882, "scanner": "repobility-web-presence", "fingerprint": "5cd26606c5a53c9f403ff7a92a6917c19cf440a23ce03e2b90e8c493312ef8cd", "category": "quality", "severity": "medium", "confidence": 0.78, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app/API but no security.txt file or route was discovered.", "evidence": {"rule_id": "WEB003", "scanner": "repobility-web-presence", "references": ["https://www.rfc-editor.org/rfc/rfc9116", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|5cd26606c5a53c9f403ff7a92a6917c19cf440a23ce03e2b90e8c493312ef8cd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".well-known/security.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 6877, "scanner": "repobility-journey-contract", "fingerprint": "f5afbf428283bd697877e855350958e24916763791b8e1789e6f209d9fcb5301", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/v1/auth/status", "correlation_key": "fp|f5afbf428283bd697877e855350958e24916763791b8e1789e6f209d9fcb5301", "backend_endpoint_count": 118}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/stores/auth-store.ts"}, "region": {"startLine": 32}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 6876, "scanner": "repobility-journey-contract", "fingerprint": "cb8e401fe3f75cfd19066d383555304bd55ae86ce1711aa0cde233bdaff04310", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/v1/auth/token", "correlation_key": "fp|cb8e401fe3f75cfd19066d383555304bd55ae86ce1711aa0cde233bdaff04310", "backend_endpoint_count": 117}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/pages/LoginPage.tsx"}, "region": {"startLine": 44}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 6875, "scanner": "repobility-journey-contract", "fingerprint": "23a388b96557c71e987932a046f3b3f8c9ff1975481e6fe1a8201b35a7c9b5fe", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/v1", "correlation_key": "fp|23a388b96557c71e987932a046f3b3f8c9ff1975481e6fe1a8201b35a7c9b5fe", "backend_endpoint_count": 117}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/api.ts"}, "region": {"startLine": 238}}}]}, {"ruleId": "JRN002", "level": "warning", "message": {"text": "Browser storage is used for session token material"}, "properties": {"repobilityId": 6874, "scanner": "repobility-journey-contract", "fingerprint": "ce889a7220d356602d4a2bdbaa9f1462bcd9ea898dfd66475c22a6219cf2e9b8", "category": "auth", "severity": "medium", "confidence": 0.82, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Storage API call references token-like key or value names.", "evidence": {"rule_id": "JRN002", "scanner": "repobility-journey-contract", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html"], "correlation_key": "code|auth|frontend/src/utils/auth.ts|8|jrn002"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/utils/auth.ts"}, "region": {"startLine": 8}}}]}, {"ruleId": "JRN002", "level": "warning", "message": {"text": "Browser storage is used for session token material"}, "properties": {"repobilityId": 6873, "scanner": "repobility-journey-contract", "fingerprint": "8d8e64753bfd3a9eaea982a56bafea5f7bc0f2b0110f56dea51b1a808f4d9e28", "category": "auth", "severity": "medium", "confidence": 0.82, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Storage API call references token-like key or value names.", "evidence": {"rule_id": "JRN002", "scanner": "repobility-journey-contract", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html"], "correlation_key": "code|auth|frontend/src/utils/auth.ts|4|jrn002"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/utils/auth.ts"}, "region": {"startLine": 4}}}]}, {"ruleId": "AUC012", "level": "warning", "message": {"text": "[AUC012] FastAPI interactive docs may be exposed by framework defaults: FastAPI exposes /docs, /redoc, and /openapi.json by default. Public production APIs should explicitly disable those defaults, protect them behind admin authentication, or publish a reviewed OpenAPI spec with declared security requirements."}, "properties": {"repobilityId": 6872, "scanner": "repobility-access-control", "fingerprint": "27f8c50db94c1d5138790446654bd4d0b5823ce185d040059e5a7502358b5899", "category": "auth", "severity": "medium", "confidence": 0.72, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"apps": [{"line": 444, "file_path": "server/app.py", "docs_url_disabled": false, "redoc_url_disabled": false, "openapi_url_disabled": false}, {"line": 31, "file_path": "tests/test_auth_router.py", "docs_url_disabled": false, "redoc_url_disabled": false, "openapi_url_disabled": false}, {"line": 53, "file_path": "tests/test_files_router.py", "docs_url_disabled": false, "redoc_url_disabled": false, "openapi_url_disabled": false}, {"line": 18, "file_path": "tests/test_agent_config_router.py", "docs_url_disabled": false, "redoc_url_disabled": false, "openapi_url_disabled": false}, {"line": 18, "file_path": "tests/test_discover_anthropic_fallback.py", "docs_url_disabled": false, "redoc_url_disabled": false, "openapi_url_disabled": false}], "scanner": "repobility-access-control", "correlation_key": "fp|27f8c50db94c1d5138790446654bd4d0b5823ce185d040059e5a7502358b5899"}}}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /auth/token."}, "properties": {"repobilityId": 6871, "scanner": "repobility-access-control", "fingerprint": "22303edde307e7da7fed26e1e8237ef56b96ee05c477b7580a5df02f9e1342d4", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/auth/token", "method": "POST", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/auth.py|59|cwe-285", "identity_targets": ["authenticated"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/auth.py"}, "region": {"startLine": 59}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /{asset_id}/image."}, "properties": {"repobilityId": 6870, "scanner": "repobility-access-control", "fingerprint": "25154fcfeb4ea78a38637f1052361815734182b7eb344d1e0e94d334d6b8c552", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/{asset_id}/image", "method": "POST", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/assets.py|211|auc009", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/assets.py"}, "region": {"startLine": 211}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: DELETE /{asset_id}."}, "properties": {"repobilityId": 6869, "scanner": "repobility-access-control", "fingerprint": "f6f3cf40e938224f465eb116f0cbba7cd003f094ea85a4bd13c8510d037e51be", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/{asset_id}", "method": "DELETE", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/assets.py|198|auc009", "identity_targets": ["authenticated", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/assets.py"}, "region": {"startLine": 198}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: DELETE /api-keys/{key_id}."}, "properties": {"repobilityId": 6868, "scanner": "repobility-access-control", "fingerprint": "37cdd07e670028217fe9bdd2e92124ef780ca0dd4c4ac47376f00754ccedfe33", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/api-keys/{key_id}", "method": "DELETE", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/api_keys.py|128|auc009", "identity_targets": ["authenticated", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/api_keys.py"}, "region": {"startLine": 128}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: DELETE /sessions/{session_id}."}, "properties": {"repobilityId": 6867, "scanner": "repobility-access-control", "fingerprint": "6ab52ad91a930ec63ee37e213ced82eb4df39cb423a6de286562be3208a2399c", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/sessions/{session_id}", "method": "DELETE", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/assistant.py|132|cwe-285", "identity_targets": ["authenticated", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/assistant.py"}, "region": {"startLine": 132}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /projects/{name}/export/jianying-draft."}, "properties": {"repobilityId": 6866, "scanner": "repobility-access-control", "fingerprint": "04bef2e9dba37c2b41aef086707306e369535c6730413bc569699bdb279ca6b4", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}/export/jianying-draft", "method": "GET", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|301|cwe-285", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 301}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /projects/{name}/export."}, "properties": {"repobilityId": 6865, "scanner": "repobility-access-control", "fingerprint": "f1f1f75e7c51ffd7a5169e6b9d218aa0b2ef154d40787147272566e957f8a4bb", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}/export", "method": "GET", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|239|cwe-285", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 239}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /projects/{name}/export/token."}, "properties": {"repobilityId": 6864, "scanner": "repobility-access-control", "fingerprint": "82571b20a0c32e6859194991395c5474c1a02d279fa0357f5fbbe2ba3e61d4b3", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}/export/token", "method": "POST", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|207|cwe-285", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 207}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /projects/import."}, "properties": {"repobilityId": 6863, "scanner": "repobility-access-control", "fingerprint": "a6679237a14582f305c21b57a104f6a3b0bf01872d2286ee80c3f110bffa6b2f", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/import", "method": "POST", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|137|cwe-285", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 137}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /projects/{project_name}/versions/{resource_type}/{resource_id}/restore/{version}."}, "properties": {"repobilityId": 6862, "scanner": "repobility-access-control", "fingerprint": "1381bb092f687e6f6caa4dad3ae080a7ed94f26f414123370a8221c1c723028f", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{project_name}/versions/{resource_type}/{resource_id}/restore/{version}", "method": "POST", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/versions.py|154|cwe-285", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/versions.py"}, "region": {"startLine": 154}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: GET /projects/{project_name}/cost-estimate."}, "properties": {"repobilityId": 6861, "scanner": "repobility-access-control", "fingerprint": "9ffd351409a3b6a9169565e9b0e94ac2549e397045645f9f018c23edb6f5bc3c", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{project_name}/cost-estimate", "method": "GET", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|token|24|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/cost_estimation.py"}, "region": {"startLine": 24}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: DELETE /episodes/{episode}/units/{unit_id}."}, "properties": {"repobilityId": 6860, "scanner": "repobility-access-control", "fingerprint": "2c1794006790a838aa22b2d02a0b64bdb894d9b35ddbf46cfddc61537a6fd4f3", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/episodes/{episode}/units/{unit_id}", "method": "DELETE", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|token|222|cwe-285", "identity_targets": ["unknown", "owner", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/reference_videos.py"}, "region": {"startLine": 222}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: DELETE /projects/{{project_name}}/{spec.subdir}/{{entry_name}}."}, "properties": {"repobilityId": 6859, "scanner": "repobility-access-control", "fingerprint": "742421d7b415f0aaed4c6c2948605ae7bcbff491e3618a8c403af09b556ae3ab", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{{project_name}}/{spec.subdir}/{{entry_name}}", "method": "DELETE", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|token|157|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/_asset_router_factory.py"}, "region": {"startLine": 157}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: PATCH /projects/{name}/overview."}, "properties": {"repobilityId": 6858, "scanner": "repobility-access-control", "fingerprint": "a12db487853d979dbd5b40de5b9414aecf4f97c357f2d377886b6a73debdc4c5", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}/overview", "method": "PATCH", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|1012|cwe-285", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 1012}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: POST /projects/{name}/generate-overview."}, "properties": {"repobilityId": 6857, "scanner": "repobility-access-control", "fingerprint": "689e68d5f7d1c5bea79fd00d4520bd1469986b133c058bc1d88e948e82e5b6c0", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}/generate-overview", "method": "POST", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|994|cwe-285", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 994}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: PATCH /projects/{name}/segments/{segment_id}."}, "properties": {"repobilityId": 6856, "scanner": "repobility-access-control", "fingerprint": "aad0f428a1a050443d280891827709521e39693cf3f3f19a553dc8659a333560", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}/segments/{segment_id}", "method": "PATCH", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|848|cwe-285", "identity_targets": ["unknown", "owner", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 848}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: GET /projects/{name}/scripts/{script_file}."}, "properties": {"repobilityId": 6855, "scanner": "repobility-access-control", "fingerprint": "47e6942ccf98d550025040a38e5b46e7d6064610dae70edb7545c3169a0ee3aa", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}/scripts/{script_file}", "method": "GET", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|755|cwe-285", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 755}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: DELETE /projects/{name}."}, "properties": {"repobilityId": 6854, "scanner": "repobility-access-control", "fingerprint": "af95161a6422a3b8301bf82311351de57866738c54274173e597f2f5616b784b", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}", "method": "DELETE", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|735|cwe-285", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 735}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: PATCH /projects/{name}."}, "properties": {"repobilityId": 6853, "scanner": "repobility-access-control", "fingerprint": "7b0915128812d10ccf04617ea3ebb253446b79134c4befd17fbb2caac353abd5", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}", "method": "PATCH", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|596|cwe-285", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 596}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: GET /projects."}, "properties": {"repobilityId": 6852, "scanner": "repobility-access-control", "fingerprint": "74063df42f1044207c9ead13e670d880e044b1ddf6ffc095c8d677d561c17458", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects", "method": "GET", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|353|cwe-285", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 353}}}]}, {"ruleId": "AUC002", "level": "warning", "message": {"text": "[AUC002] Low visible authorization coverage in route inventory: Only 39.3% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence."}, "properties": {"repobilityId": 6841, "scanner": "repobility-access-control", "fingerprint": "9dfc9e604ec8ea980af0524c9c0c9b2df03f39c8fd9863b207e7b8046059328f", "category": "auth", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"scanner": "repobility-access-control", "endpoint_count": 117, "correlation_key": "fp|9dfc9e604ec8ea980af0524c9c0c9b2df03f39c8fd9863b207e7b8046059328f", "auth_visible_percent": 39.3}}}, {"ruleId": "AUC001", "level": "warning", "message": {"text": "[AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation."}, "properties": {"repobilityId": 6840, "scanner": "repobility-access-control", "fingerprint": "f1305052c3ba1e6c1cdb5dccc19e58a8168cf78b176658f32b1fc823df3e9d10", "category": "auth", "severity": "medium", "confidence": 0.92, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"scanner": "repobility-access-control", "frameworks": ["FastAPI"], "expected_files": [".repobility/access.yml", ".repobility/access.yaml", ".repobility/access.json", ".repobility/authorization.yml"], "correlation_key": "fp|f1305052c3ba1e6c1cdb5dccc19e58a8168cf78b176658f32b1fc823df3e9d10"}}}, {"ruleId": "DKR003", "level": "warning", "message": {"text": "Compose service `arcreel` image uses the latest tag"}, "properties": {"repobilityId": 6837, "scanner": "repobility-docker", "fingerprint": "0de18b9c9cec795a37855a48cc7807787d253a0e7e607b0bf5d9767f2f58ead7", "category": "docker", "severity": "medium", "confidence": 0.94, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Image tag is latest.", "evidence": {"image": "ghcr.io/arcreel/arcreel:latest", "rule_id": "DKR003", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|0de18b9c9cec795a37855a48cc7807787d253a0e7e607b0bf5d9767f2f58ead7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "deploy/production/docker-compose.yml"}, "region": {"startLine": 16}}}]}, {"ruleId": "DKR003", "level": "warning", "message": {"text": "Compose service `arcreel` image uses the latest tag"}, "properties": {"repobilityId": 6832, "scanner": "repobility-docker", "fingerprint": "89d434c4dbafa0290aedd0e8fcb0a60649c9e873c3bf9ad64e0d28e23fa56426", "category": "docker", "severity": "medium", "confidence": 0.94, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image tag is latest.", "evidence": {"image": "ghcr.io/arcreel/arcreel:latest", "rule_id": "DKR003", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|89d434c4dbafa0290aedd0e8fcb0a60649c9e873c3bf9ad64e0d28e23fa56426"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "deploy/docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 6830, "scanner": "repobility-docker", "fingerprint": "edd4ad7c778ba6f686f663d96dfcfdb008fa6049b9755a23ce7c7c4e93c1cb67", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "python:3.12-slim", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|edd4ad7c778ba6f686f663d96dfcfdb008fa6049b9755a23ce7c7c4e93c1cb67"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 25}}}]}, {"ruleId": "ERR001", "level": "warning", "message": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "properties": {"repobilityId": 6829, "scanner": "repobility-threat-engine", "fingerprint": "ba3ce9a48a7690a702116df19b83443b831fe8fd88aa4948f6d5ec3bac7b8496", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "except Exception:\n                pass", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|ba3ce9a48a7690a702116df19b83443b831fe8fd88aa4948f6d5ec3bac7b8496"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/agent_runtime/session_manager.py"}, "region": {"startLine": 1691}}}]}, {"ruleId": "ERR001", "level": "warning", "message": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "properties": {"repobilityId": 6828, "scanner": "repobility-threat-engine", "fingerprint": "e7fb6d5bbd24709a3e31851b845d902f9d1034b5d7be021c8fef59cfacb7c7c4", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "except Exception:\n        pass", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e7fb6d5bbd24709a3e31851b845d902f9d1034b5d7be021c8fef59cfacb7c7c4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/system_config.py"}, "region": {"startLine": 165}}}]}, {"ruleId": "ERR001", "level": "warning", "message": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "properties": {"repobilityId": 6827, "scanner": "repobility-threat-engine", "fingerprint": "0c1019ec2409e582b42a9da0dc140939a303e360747d32d3c17556b6b4c42d67", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "except Exception:\n            pass", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|0c1019ec2409e582b42a9da0dc140939a303e360747d32d3c17556b6b4c42d67"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/custom_providers.py"}, "region": {"startLine": 250}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 6823, "scanner": "repobility-threat-engine", "fingerprint": "5640093f77ffca6ad78ebb5a1e9345d8f1addeeef007ade9ebb63d05980d5f6a", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".catch(() => {})", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR002", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|5640093f77ffca6ad78ebb5a1e9345d8f1addeeef007ade9ebb63d05980d5f6a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/layout/GlobalHeader.tsx"}, "region": {"startLine": 75}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 6822, "scanner": "repobility-threat-engine", "fingerprint": "7f16f1e62c2190a90a124568662449a7d9f8d7eeea68cffa16e53e0a5907768e", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".catch(() => {})", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR002", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|7f16f1e62c2190a90a124568662449a7d9f8d7eeea68cffa16e53e0a5907768e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/canvas/StudioCanvasRouter.tsx"}, "region": {"startLine": 80}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 6821, "scanner": "repobility-threat-engine", "fingerprint": "51cccf8d16f1980c3e95fe146e206b7980e1f2ec81ab8c71f4317b7636102280", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".catch(() => {})", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR002", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|51cccf8d16f1980c3e95fe146e206b7980e1f2ec81ab8c71f4317b7636102280"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/hooks/useAssistantSession.ts"}, "region": {"startLine": 389}}}]}, {"ruleId": "SEC001", "level": "warning", "message": {"text": "[SEC001] Hardcoded Password: Hardcoded password found in source code."}, "properties": {"repobilityId": 6818, "scanner": "repobility-threat-engine", "fingerprint": "92652ccb627fbb8a36650264698f3e5cfe6884190baf0aba9e08b60c017d8408", "category": "credential_exposure", "severity": "medium", "confidence": 0.3, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Low entropy value (3.0 bits) \u2014 may be placeholder or common string", "evidence": {"match": "PASSWORD=\"<redacted>\n                    new_lines.append(f\"", "reason": "Low entropy value (3.0 bits) \u2014 may be placeholder or common string", "rule_id": "SEC001", "scanner": "repobility-threat-engine", "confidence": 0.3, "correlation_key": "secret|server/auth.py|23|password redacted new_lines.append f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/auth.py"}, "region": {"startLine": 239}}}]}, {"ruleId": "AGT007", "level": "warning", "message": {"text": "localStorage write failures are swallowed silently"}, "properties": {"repobilityId": 6817, "scanner": "repobility-agent-runtime", "fingerprint": "61bbee8e9a0bcbdfe826f98d213fb166a09c58665352169bc516d6d8ce30c93d", "category": "quality", "severity": "medium", "confidence": 0.8, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "File writes to localStorage and has an empty or ignore-only catch block without QuotaExceededError handling.", "evidence": {"rule_id": "AGT007", "scanner": "repobility-agent-runtime", "references": ["https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API"], "correlation_key": "fp|61bbee8e9a0bcbdfe826f98d213fb166a09c58665352169bc516d6d8ce30c93d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/stores/app-store.ts"}, "region": {"startLine": 221}}}]}, {"ruleId": "AGT007", "level": "warning", "message": {"text": "localStorage write failures are swallowed silently"}, "properties": {"repobilityId": 6816, "scanner": "repobility-agent-runtime", "fingerprint": "248da66ef3d61829460e98fa21c8851d533de711b4824107374ef278bd9dbc8b", "category": "quality", "severity": "medium", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File writes to localStorage and has an empty or ignore-only catch block without QuotaExceededError handling.", "evidence": {"rule_id": "AGT007", "scanner": "repobility-agent-runtime", "references": ["https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API"], "correlation_key": "fp|248da66ef3d61829460e98fa21c8851d533de711b4824107374ef278bd9dbc8b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/hooks/useAssistantSession.ts"}, "region": {"startLine": 100}}}]}, {"ruleId": "AGT015", "level": "warning", "message": {"text": "Remote install command pipes network code directly to a shell"}, "properties": {"repobilityId": 6815, "scanner": "repobility-agent-runtime", "fingerprint": "6c73acf3e54c91eb04895d7d6aa46aba579da4865e066aa41047bae5be2f775a", "category": "dependency", "severity": "medium", "confidence": 0.7, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "File contains a remote download piped directly to a shell without visible checksum or signature verification.", "evidence": {"rule_id": "AGT015", "scanner": "repobility-agent-runtime", "references": [], "correlation_key": "fp|6c73acf3e54c91eb04895d7d6aa46aba579da4865e066aa41047bae5be2f775a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/getting-started.md"}, "region": {"startLine": 87}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6804, "scanner": "repobility-ai-code-hygiene", "fingerprint": "41db46304ebe3e2d7fedd2469363540d2b454efa6b0c9fdf4b716c914089b22c", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/canvas/OverviewCanvas.tsx", "duplicate_line": 184, "correlation_key": "fp|41db46304ebe3e2d7fedd2469363540d2b454efa6b0c9fdf4b716c914089b22c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/canvas/WelcomeCanvas.tsx"}, "region": {"startLine": 309}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6803, "scanner": "repobility-ai-code-hygiene", "fingerprint": "01b66f7ca189fcccc29a8d08eda34e800eb3e7e4497e24e1eff0dab1dac4c838", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/canvas/OverviewCanvas.tsx", "duplicate_line": 69, "correlation_key": "fp|01b66f7ca189fcccc29a8d08eda34e800eb3e7e4497e24e1eff0dab1dac4c838"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/canvas/SourceFilesPage.tsx"}, "region": {"startLine": 84}}}]}, {"ruleId": "AIC004", "level": "warning", "message": {"text": "Suspicious implementation file appears unreferenced"}, "properties": {"repobilityId": 6801, "scanner": "repobility-ai-code-hygiene", "fingerprint": "39d752b44327f59c9406eab2028dc7c7092289ef91208187068f7aaabd224f08", "category": "quality", "severity": "medium", "confidence": 0.78, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Patch-style source file has no detected inbound reference from other repository files.", "evidence": {"suffix": "refactor", "rule_id": "AIC004", "scanner": "repobility-ai-code-hygiene", "references": ["https://knip.dev/", "https://github.com/jendrikseipp/vulture"], "correlation_key": "fp|39d752b44327f59c9406eab2028dc7c7092289ef91208187068f7aaabd224f08"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "alembic/versions/0426_endpoint_refactor.py"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 47585, "scanner": "repobility-docker", "fingerprint": "97ab4b85ba3e281a6221d2bc1a2ccf3e4a6e6dd83d8c19a0ca6c00e9955201ab", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "arcreel", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|97ab4b85ba3e281a6221d2bc1a2ccf3e4a6e6dd83d8c19a0ca6c00e9955201ab"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "deploy/production/docker-compose.yml"}, "region": {"startLine": 17}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 47584, "scanner": "repobility-docker", "fingerprint": "2974efd837fb96c22ee757a713c2d0b24e5efe01be709413a1ecd0ec74b08efc", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "arcreel", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|2974efd837fb96c22ee757a713c2d0b24e5efe01be709413a1ecd0ec74b08efc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "deploy/production/docker-compose.yml"}, "region": {"startLine": 17}}}]}, {"ruleId": "DKC017", "level": "note", "message": {"text": "Database password is wired through an environment variable placeholder"}, "properties": {"repobilityId": 47581, "scanner": "repobility-docker", "fingerprint": "9ddb3c84a3d8c72bc25b3a6d8bd77398986b77607e368b16e6a5bd947a3a0a05", "category": "docker", "severity": "low", "confidence": 0.58, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Database image supports file-based secret variables, but only placeholder environment variables were found.", "evidence": {"rule_id": "DKC017", "scanner": "repobility-docker", "service": "postgres", "variables": ["POSTGRES_PASSWORD"], "references": ["https://docs.docker.com/compose/how-tos/use-secrets/"], "correlation_key": "fp|9ddb3c84a3d8c72bc25b3a6d8bd77398986b77607e368b16e6a5bd947a3a0a05"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "deploy/production/docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47577, "scanner": "repobility-ai-code-hygiene", "fingerprint": "bcba271666df9a845dc26d65e22d3c682031c1cc51a8a5e0bd9caff1f550757f", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "lib/video_backends/newapi.py", "duplicate_line": 11, "correlation_key": "fp|bcba271666df9a845dc26d65e22d3c682031c1cc51a8a5e0bd9caff1f550757f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/video_backends/v2_video_generations.py"}, "region": {"startLine": 19}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47576, "scanner": "repobility-ai-code-hygiene", "fingerprint": "0a00291e7d8774ff4876e4b34cf71206bb503ed74b73f1c904da252ca4a1ff2e", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "lib/db/repositories/usage_repo.py", "duplicate_line": 58, "correlation_key": "fp|0a00291e7d8774ff4876e4b34cf71206bb503ed74b73f1c904da252ca4a1ff2e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/usage_tracker.py"}, "region": {"startLine": 16}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47575, "scanner": "repobility-ai-code-hygiene", "fingerprint": "a3d302dab04be39bc395c0389c957ee156b37bf1f3632ba7861a3eebe66e3764", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "lib/text_backends/ark.py", "duplicate_line": 105, "correlation_key": "fp|a3d302dab04be39bc395c0389c957ee156b37bf1f3632ba7861a3eebe66e3764"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/text_backends/openai.py"}, "region": {"startLine": 101}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47574, "scanner": "repobility-ai-code-hygiene", "fingerprint": "28092c65149b3cb824617e049eecce7da64021e427743e94706936a43dafb586", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "lib/db/repositories/task_repo.py", "duplicate_line": 83, "correlation_key": "fp|28092c65149b3cb824617e049eecce7da64021e427743e94706936a43dafb586"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/generation_queue.py"}, "region": {"startLine": 63}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47573, "scanner": "repobility-ai-code-hygiene", "fingerprint": "db6bec6f8e9e06e2390eea778a192314df2a3db018ae6233ea0c01cb7c79ab15", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "alembic/versions/4c643f3ff5b9_backfill_custom_model_durations.py", "duplicate_line": 21, "correlation_key": "fp|db6bec6f8e9e06e2390eea778a192314df2a3db018ae6233ea0c01cb7c79ab15"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/custom_provider/duration_presets.py"}, "region": {"startLine": 11}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47572, "scanner": "repobility-ai-code-hygiene", "fingerprint": "876d9a3d53328a776fa42dacefd044c09d8f61ad61c943da9e0cdc6a7364fd60", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/assets/AssetFormModal.tsx", "duplicate_line": 84, "correlation_key": "fp|876d9a3d53328a776fa42dacefd044c09d8f61ad61c943da9e0cdc6a7364fd60"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/ui/SegmentRefsEditModal.tsx"}, "region": {"startLine": 161}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47571, "scanner": "repobility-ai-code-hygiene", "fingerprint": "3e4fe0bfd209b0304fc098a9cd5434a81d2650e197c4a48214d6d38f1e104ea2", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/assets/AssetPickerModal.tsx", "duplicate_line": 96, "correlation_key": "fp|3e4fe0bfd209b0304fc098a9cd5434a81d2650e197c4a48214d6d38f1e104ea2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/ui/SegmentRefsEditModal.tsx"}, "region": {"startLine": 157}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47570, "scanner": "repobility-ai-code-hygiene", "fingerprint": "219dbf9cdf44402ba5d2c48731f06352cfec33bdd1e08cf27ec5ae865fe62832", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/canvas/ConflictModal.tsx", "duplicate_line": 27, "correlation_key": "fp|219dbf9cdf44402ba5d2c48731f06352cfec33bdd1e08cf27ec5ae865fe62832"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/ui/ConfirmDialog.tsx"}, "region": {"startLine": 52}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47569, "scanner": "repobility-ai-code-hygiene", "fingerprint": "9897dcf495ee56d062a51fab066000f2c70ca47a26fe7814dd2814c267493d01", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/layout/UsageDrawer.tsx", "duplicate_line": 87, "correlation_key": "fp|9897dcf495ee56d062a51fab066000f2c70ca47a26fe7814dd2814c267493d01"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/task-hud/TaskHud.tsx"}, "region": {"startLine": 464}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47568, "scanner": "repobility-ai-code-hygiene", "fingerprint": "e6e8f2132b143f7979d9dfad8adcb5ec74aafb62290de2a8366920437f0af39a", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/canvas/ConflictModal.tsx", "duplicate_line": 26, "correlation_key": "fp|e6e8f2132b143f7979d9dfad8adcb5ec74aafb62290de2a8366920437f0af39a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/shared/ArchiveDiagnosticsDialog.tsx"}, "region": {"startLine": 51}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47567, "scanner": "repobility-ai-code-hygiene", "fingerprint": "a1c7dc18e3f05f31bc7e48bbd89ee03423d4433b4be85ddd24717776024d54c0", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/pages/settings/CustomProviderDetail.tsx", "duplicate_line": 247, "correlation_key": "fp|a1c7dc18e3f05f31bc7e48bbd89ee03423d4433b4be85ddd24717776024d54c0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/pages/settings/CustomProviderForm.tsx"}, "region": {"startLine": 663}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47566, "scanner": "repobility-ai-code-hygiene", "fingerprint": "158bb8b60df02aaa848a66ce3cd0d0605cc4682185f1021c3a3eeb0d27d75cee", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/pages/CredentialList.tsx", "duplicate_line": 226, "correlation_key": "fp|158bb8b60df02aaa848a66ce3cd0d0605cc4682185f1021c3a3eeb0d27d75cee"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/pages/settings/CustomProviderForm.tsx"}, "region": {"startLine": 660}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47565, "scanner": "repobility-ai-code-hygiene", "fingerprint": "f9a8ef5e814023bd83684af6485d043b53271feaf370003249fc376cc96cd6ba", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/pages/CredentialList.tsx", "duplicate_line": 226, "correlation_key": "fp|f9a8ef5e814023bd83684af6485d043b53271feaf370003249fc376cc96cd6ba"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/pages/settings/CustomProviderDetail.tsx"}, "region": {"startLine": 244}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47564, "scanner": "repobility-ai-code-hygiene", "fingerprint": "a9c534678f1631c331ab71e9461d2b3010f4a0c5de1d45d9ac575f1692350dbe", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/pages/ProviderDetail.tsx", "duplicate_line": 292, "correlation_key": "fp|a9c534678f1631c331ab71e9461d2b3010f4a0c5de1d45d9ac575f1692350dbe"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/pages/settings/CustomProviderDetail.tsx"}, "region": {"startLine": 129}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47563, "scanner": "repobility-ai-code-hygiene", "fingerprint": "e4abb2b1b321f75429380deb2006f0f5957cfeb1a2e25532d3cf8efa9fe60c69", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/pages/create-project/WizardStep2Models.tsx", "duplicate_line": 77, "correlation_key": "fp|e4abb2b1b321f75429380deb2006f0f5957cfeb1a2e25532d3cf8efa9fe60c69"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/pages/create-project/WizardStep3Style.tsx"}, "region": {"startLine": 27}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47562, "scanner": "repobility-ai-code-hygiene", "fingerprint": "05b168bfcb8a42f57faff9f88c5cb4ad14abba08ec422601c14e4a5064e0109f", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/pages/ProviderDetail.tsx", "duplicate_line": 263, "correlation_key": "fp|05b168bfcb8a42f57faff9f88c5cb4ad14abba08ec422601c14e4a5064e0109f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/pages/ProviderSection.tsx"}, "region": {"startLine": 126}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47561, "scanner": "repobility-ai-code-hygiene", "fingerprint": "29f27307bb4b00cffc7bf34ec7a6d2c5f93e0b07dd1db0ad49468d408005c53e", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/layout/UsageDrawer.tsx", "duplicate_line": 91, "correlation_key": "fp|29f27307bb4b00cffc7bf34ec7a6d2c5f93e0b07dd1db0ad49468d408005c53e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/layout/WorkspaceNotificationsDrawer.tsx"}, "region": {"startLine": 75}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47560, "scanner": "repobility-ai-code-hygiene", "fingerprint": "dcae368ef4313fc5aa3c5e7a94e83dbb5635c845a0cc497341486a768dcc4452", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/copilot/chat/SkillContentBlock.tsx", "duplicate_line": 23, "correlation_key": "fp|dcae368ef4313fc5aa3c5e7a94e83dbb5635c845a0cc497341486a768dcc4452"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/copilot/chat/ThinkingBlock.tsx"}, "region": {"startLine": 13}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47559, "scanner": "repobility-ai-code-hygiene", "fingerprint": "3cd13d60229f495cecdb0295b2a7f8f3bce96b150589991ba8da23d440a192da", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/canvas/OverviewCanvas.tsx", "duplicate_line": 184, "correlation_key": "fp|3cd13d60229f495cecdb0295b2a7f8f3bce96b150589991ba8da23d440a192da"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/canvas/WelcomeCanvas.tsx"}, "region": {"startLine": 322}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 47558, "scanner": "repobility-ai-code-hygiene", "fingerprint": "e192cf4fdabe90c7d6eddba3dceab7b9263ae87769324f7338698229b861e9b7", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/canvas/OverviewCanvas.tsx", "duplicate_line": 69, "correlation_key": "fp|e192cf4fdabe90c7d6eddba3dceab7b9263ae87769324f7338698229b861e9b7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/canvas/SourceFilesPage.tsx"}, "region": {"startLine": 88}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `main` has cognitive complexity 10 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weigh in. Breakdown: for=1, if=3, nested_bonus=3, ternary=3."}, "properties": {"repobilityId": 47511, "scanner": "repobility-threat-engine", "fingerprint": "14d060cf166fbe0bc221de53651e42f5e432ac3ddea4392207c667b48f5262af", "category": "quality", "severity": "low", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 10 (severity threshold for low: 8+).", "evidence": {"scanner": "repobility-threat-engine", "function": "main", "breakdown": {"if": 3, "for": 1, "ternary": 3, "nested_bonus": 3}, "complexity": 10, "correlation_key": "fp|14d060cf166fbe0bc221de53651e42f5e432ac3ddea4392207c667b48f5262af"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "agent_runtime_profile/.claude/skills/manage-project/scripts/split_episode.py"}, "region": {"startLine": 90}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `_resolve_language` has cognitive complexity 12 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weigh in. Breakdown: else=1, except=1, if=4, nested_bonus=5, ternary=1."}, "properties": {"repobilityId": 47510, "scanner": "repobility-threat-engine", "fingerprint": "f5d071c1bba8f3be5433af2ab927bdcc26d798cf395c76205ff99d442e9532e2", "category": "quality", "severity": "low", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 12 (severity threshold for low: 8+).", "evidence": {"scanner": "repobility-threat-engine", "function": "_resolve_language", "breakdown": {"if": 4, "else": 1, "except": 1, "ternary": 1, "nested_bonus": 5}, "complexity": 12, "correlation_key": "fp|f5d071c1bba8f3be5433af2ab927bdcc26d798cf395c76205ff99d442e9532e2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "agent_runtime_profile/.claude/skills/manage-project/scripts/peek_split_point.py"}, "region": {"startLine": 97}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 6839, "scanner": "repobility-docker", "fingerprint": "6d79c14acaf0d8176387da7d4419732699f133efaadce0c8137dbc0b80e4450f", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "arcreel", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|6d79c14acaf0d8176387da7d4419732699f133efaadce0c8137dbc0b80e4450f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "deploy/production/docker-compose.yml"}, "region": {"startLine": 16}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 6838, "scanner": "repobility-docker", "fingerprint": "78c5699dd2c4371783a1aeee0f1f667c3069951d9a23038eb0a68ad75671b338", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "arcreel", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|78c5699dd2c4371783a1aeee0f1f667c3069951d9a23038eb0a68ad75671b338"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "deploy/production/docker-compose.yml"}, "region": {"startLine": 16}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 6834, "scanner": "repobility-docker", "fingerprint": "b9d5178b230b42c29fe4055fcc7ed36372906220632a5e6d18863c0424c4cbd2", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "arcreel", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|b9d5178b230b42c29fe4055fcc7ed36372906220632a5e6d18863c0424c4cbd2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "deploy/docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 6833, "scanner": "repobility-docker", "fingerprint": "3ac3e9a01571c870ed7ffe76d9b8fd9a1de370521beb2b0f377029714506c4d9", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "arcreel", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|3ac3e9a01571c870ed7ffe76d9b8fd9a1de370521beb2b0f377029714506c4d9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "deploy/docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR008", "level": "note", "message": {"text": ".dockerignore misses sensitive defaults"}, "properties": {"repobilityId": 6831, "scanner": "repobility-docker", "fingerprint": "aea2ad92c68c4ee1f8432bb1ec25e7d45ac12c9e1790ac2d3fffe638b1acce12", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "A Docker build context should exclude secrets and repository metadata.", "evidence": {"rule_id": "DKR008", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|aea2ad92c68c4ee1f8432bb1ec25e7d45ac12c9e1790ac2d3fffe638b1acce12", "missing_patterns": ["id_rsa", "*.pem", "*.key"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".dockerignore"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC005", "level": "note", "message": {"text": "Duplicate top-level symbol appears in a patch-style file"}, "properties": {"repobilityId": 6814, "scanner": "repobility-ai-code-hygiene", "fingerprint": "919c297405ce15152cf298ef5b02a3e6da444da479dd757e161c028c845c102d", "category": "quality", "severity": "low", "confidence": 0.64, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Patch-style file defines a top-level symbol also defined in another source file.", "evidence": {"symbol": "downgrade", "rule_id": "AIC005", "scanner": "repobility-ai-code-hygiene", "references": ["https://github.com/jendrikseipp/vulture", "https://knip.dev/"], "duplicate_file": "alembic/versions/13dcd54b4a4d_add_input_tokens_and_output_tokens_to_.py", "correlation_key": "fp|919c297405ce15152cf298ef5b02a3e6da444da479dd757e161c028c845c102d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "alembic/versions/0426_endpoint_refactor.py"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6813, "scanner": "repobility-ai-code-hygiene", "fingerprint": "97ca88e5412f493452072bf09ba53c47e2402473f4da256e79d60254fc1fa71c", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/canvas/grid/GridImageToVideoCanvas.tsx", "duplicate_line": 70, "correlation_key": "fp|97ca88e5412f493452072bf09ba53c47e2402473f4da256e79d60254fc1fa71c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/canvas/timeline/TimelineCanvas.tsx"}, "region": {"startLine": 61}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6812, "scanner": "repobility-ai-code-hygiene", "fingerprint": "95d23f2680096351891f5ed26c69f7bbcee6c8fd80aba4fde234662953c1f202", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/canvas/SourceFileViewer.tsx", "duplicate_line": 26, "correlation_key": "fp|95d23f2680096351891f5ed26c69f7bbcee6c8fd80aba4fde234662953c1f202"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/canvas/timeline/PreprocessingView.tsx"}, "region": {"startLine": 44}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6811, "scanner": "repobility-ai-code-hygiene", "fingerprint": "39f3182adb8f15d4f5278bd0b691fa099638ab6b4ff5b84e23e8fb9452402b42", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/canvas/lorebook/CharactersPage.tsx", "duplicate_line": 30, "correlation_key": "fp|39f3182adb8f15d4f5278bd0b691fa099638ab6b4ff5b84e23e8fb9452402b42"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/canvas/lorebook/ScenesPage.tsx"}, "region": {"startLine": 30}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6810, "scanner": "repobility-ai-code-hygiene", "fingerprint": "105e2af4eb2d86b5e0b657211cd99add4e9f39b4fa261da7e7282a79b831e790", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/canvas/lorebook/CharacterCard.tsx", "duplicate_line": 160, "correlation_key": "fp|105e2af4eb2d86b5e0b657211cd99add4e9f39b4fa261da7e7282a79b831e790"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/canvas/lorebook/SceneCard.tsx"}, "region": {"startLine": 93}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6809, "scanner": "repobility-ai-code-hygiene", "fingerprint": "7e1728b8ff82efed4765f2c441b059a0fe02c6f99db5eb9a043ffe0b8ae2f79d", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/canvas/lorebook/PropCard.tsx", "duplicate_line": 19, "correlation_key": "fp|7e1728b8ff82efed4765f2c441b059a0fe02c6f99db5eb9a043ffe0b8ae2f79d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/canvas/lorebook/SceneCard.tsx"}, "region": {"startLine": 19}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6808, "scanner": "repobility-ai-code-hygiene", "fingerprint": "40db1bf05a399195a80747301faac1946e2efe98daf19b02aa344217922f42e1", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/canvas/lorebook/CharactersPage.tsx", "duplicate_line": 30, "correlation_key": "fp|40db1bf05a399195a80747301faac1946e2efe98daf19b02aa344217922f42e1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/canvas/lorebook/PropsPage.tsx"}, "region": {"startLine": 30}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6807, "scanner": "repobility-ai-code-hygiene", "fingerprint": "9dd2ef01127085511eb2ce4dc3432a0d166d7df243fd3002700936e5702058f4", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/canvas/lorebook/CharacterCard.tsx", "duplicate_line": 160, "correlation_key": "fp|9dd2ef01127085511eb2ce4dc3432a0d166d7df243fd3002700936e5702058f4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/canvas/lorebook/PropCard.tsx"}, "region": {"startLine": 93}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6806, "scanner": "repobility-ai-code-hygiene", "fingerprint": "80f81dff231fc4afed41101f54cbd697cac8b442bed05073246138829eb0d7b8", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/canvas/SourceFilesPage.tsx", "duplicate_line": 215, "correlation_key": "fp|80f81dff231fc4afed41101f54cbd697cac8b442bed05073246138829eb0d7b8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/canvas/lorebook/GalleryToolbar.tsx"}, "region": {"startLine": 23}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6805, "scanner": "repobility-ai-code-hygiene", "fingerprint": "be99fd34f2d4ff8a9b4cf8f74458b03ffdfe08336d0715b7516b92ce828a1ea0", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/canvas/SourceFilesPage.tsx", "duplicate_line": 298, "correlation_key": "fp|be99fd34f2d4ff8a9b4cf8f74458b03ffdfe08336d0715b7516b92ce828a1ea0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/canvas/lorebook/GalleryEmptyState.tsx"}, "region": {"startLine": 27}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6802, "scanner": "repobility-ai-code-hygiene", "fingerprint": "1f1a343d16e8c6f7a491822052e470f7659d5bb1393bc0019b922f56f982ed8c", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "frontend/src/components/assets/AssetFormModal.tsx", "duplicate_line": 84, "correlation_key": "fp|1f1a343d16e8c6f7a491822052e470f7659d5bb1393bc0019b922f56f982ed8c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/assets/AssetPickerModal.tsx"}, "region": {"startLine": 100}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 6800, "scanner": "repobility-ai-code-hygiene", "fingerprint": "1c4c665d7cd03ec257ff4deb1992236c18258269bf6008a5b7a68c54ec91fc78", "category": "quality", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Source filename contains a temporary or patch-style suffix.", "evidence": {"suffix": "refactor", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|1c4c665d7cd03ec257ff4deb1992236c18258269bf6008a5b7a68c54ec91fc78"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "alembic/versions/0426_endpoint_refactor.py"}, "region": {"startLine": 1}}}]}, {"ruleId": "SEC135", "level": "none", "message": {"text": "[SEC135] Auth/permission check missing on AI-generated endpoint (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "properties": {"repobilityId": 47555, "scanner": "repobility-threat-engine", "fingerprint": "bc129f2192361c1cda8f5b32a77a57cd4e6101bf622fd0ba4e727442c6a135b6", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 4 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 4 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC135", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|bc129f2192361c1cda8f5b32a77a57cd4e6101bf622fd0ba4e727442c6a135b6"}}}, {"ruleId": "MINED047", "level": "none", "message": {"text": "[MINED047] Emoji In Source (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "properties": {"repobilityId": 47550, "scanner": "repobility-threat-engine", "fingerprint": "852d00a703e69f2982c3a9cfe2856f6c59102873501297dfe09abd0d56909979", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "emoji-in-source", "owasp": null, "cwe_ids": [], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348010+00:00", "triaged_in_corpus": 9, "observations_count": 1468364, "ai_coder_pattern_id": 29}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|852d00a703e69f2982c3a9cfe2856f6c59102873501297dfe09abd0d56909979", "aggregated_count": 2}}}, {"ruleId": "MINED047", "level": "none", "message": {"text": "[MINED047] Emoji In Source: Emoji \u2705 \u274c \ud83d\ude80 in code/comments \u2014 common AI output unless explicitly requested."}, "properties": {"repobilityId": 47549, "scanner": "repobility-threat-engine", "fingerprint": "5742e500ab85cab1d548d3e40edf09cec53503f1da975cb248b2652ade00ce71", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "emoji-in-source", "owasp": null, "cwe_ids": [], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348010+00:00", "triaged_in_corpus": 9, "observations_count": 1468364, "ai_coder_pattern_id": 29}, "scanner": "repobility-threat-engine", "correlation_key": "fp|5742e500ab85cab1d548d3e40edf09cec53503f1da975cb248b2652ade00ce71"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/i18n/vi/common.ts"}, "region": {"startLine": 38}}}]}, {"ruleId": "MINED047", "level": "none", "message": {"text": "[MINED047] Emoji In Source: Emoji \u2705 \u274c \ud83d\ude80 in code/comments \u2014 common AI output unless explicitly requested."}, "properties": {"repobilityId": 47548, "scanner": "repobility-threat-engine", "fingerprint": "686aada2dc900d84b63e3a3472f2320270dc5b909f70f29923ae3a2f6698a836", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "emoji-in-source", "owasp": null, "cwe_ids": [], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348010+00:00", "triaged_in_corpus": 9, "observations_count": 1468364, "ai_coder_pattern_id": 29}, "scanner": "repobility-threat-engine", "correlation_key": "fp|686aada2dc900d84b63e3a3472f2320270dc5b909f70f29923ae3a2f6698a836"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/i18n/vi/assets.ts"}, "region": {"startLine": 4}}}]}, {"ruleId": "MINED047", "level": "none", "message": {"text": "[MINED047] Emoji In Source: Emoji \u2705 \u274c \ud83d\ude80 in code/comments \u2014 common AI output unless explicitly requested."}, "properties": {"repobilityId": 47547, "scanner": "repobility-threat-engine", "fingerprint": "1df9c927cea33035fc3fd16eef836a53e9dd336b7a624ee2e14bdfbcd1098848", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "emoji-in-source", "owasp": null, "cwe_ids": [], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348010+00:00", "triaged_in_corpus": 9, "observations_count": 1468364, "ai_coder_pattern_id": 29}, "scanner": "repobility-threat-engine", "correlation_key": "fp|1df9c927cea33035fc3fd16eef836a53e9dd336b7a624ee2e14bdfbcd1098848"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/layout/EpisodeCard.tsx"}, "region": {"startLine": 53}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 47542, "scanner": "repobility-threat-engine", "fingerprint": "cdf7b59766620e5b4deebe19a26a71e9d59c08b65572918d9c18ea74079babcd", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-non-null-assertion", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348005+00:00", "triaged_in_corpus": 12, "observations_count": 1810954, "ai_coder_pattern_id": 105}, "scanner": "repobility-threat-engine", "correlation_key": "fp|cdf7b59766620e5b4deebe19a26a71e9d59c08b65572918d9c18ea74079babcd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/main.tsx"}, "region": {"startLine": 37}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 47541, "scanner": "repobility-threat-engine", "fingerprint": "bc62276f92fb1fec9a2c112c5e51774fe5ff22a86c2f52a7d6c86409cf6ac60c", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-non-null-assertion", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348005+00:00", "triaged_in_corpus": 12, "observations_count": 1810954, "ai_coder_pattern_id": 105}, "scanner": "repobility-threat-engine", "correlation_key": "fp|bc62276f92fb1fec9a2c112c5e51774fe5ff22a86c2f52a7d6c86409cf6ac60c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/copilot/pending-question.ts"}, "region": {"startLine": 80}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 47540, "scanner": "repobility-threat-engine", "fingerprint": "0e9942a7047977260fa6df542f8ef026007d7d3480acc605c5272ff97187c7fb", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-non-null-assertion", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348005+00:00", "triaged_in_corpus": 12, "observations_count": 1810954, "ai_coder_pattern_id": 105}, "scanner": "repobility-threat-engine", "correlation_key": "fp|0e9942a7047977260fa6df542f8ef026007d7d3480acc605c5272ff97187c7fb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/copilot/chat/ChatMessage.tsx"}, "region": {"startLine": 20}}}]}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "properties": {"repobilityId": 47539, "scanner": "repobility-threat-engine", "fingerprint": "4b3d1f5da7bc76208217d4630f94b5c604a37c1b24cbe552082771023e8fad2d", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 3 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "js-console-log-prod", "owasp": null, "cwe_ids": ["CWE-532"], "languages": ["javascript", "typescript", "tsx", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348003+00:00", "triaged_in_corpus": 10, "observations_count": 1940833, "ai_coder_pattern_id": 102}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|4b3d1f5da7bc76208217d4630f94b5c604a37c1b24cbe552082771023e8fad2d", "aggregated_count": 3}}}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger or removed."}, "properties": {"repobilityId": 47538, "scanner": "repobility-threat-engine", "fingerprint": "6c64926490bb82042626f0e3b7f17fa224bde069114daa2eab52617ea141318a", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "js-console-log-prod", "owasp": null, "cwe_ids": ["CWE-532"], "languages": ["javascript", "typescript", "tsx", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348003+00:00", "triaged_in_corpus": 10, "observations_count": 1940833, "ai_coder_pattern_id": 102}, "scanner": "repobility-threat-engine", "correlation_key": "fp|6c64926490bb82042626f0e3b7f17fa224bde069114daa2eab52617ea141318a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/i18n/index.ts"}, "region": {"startLine": 69}}}]}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger or removed."}, "properties": {"repobilityId": 47537, "scanner": "repobility-threat-engine", "fingerprint": "1f39f66a01a89c2fa06ebff61ee9d3067d1983741f87a1883f7097c445edf2fb", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "js-console-log-prod", "owasp": null, "cwe_ids": ["CWE-532"], "languages": ["javascript", "typescript", "tsx", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348003+00:00", "triaged_in_corpus": 10, "observations_count": 1940833, "ai_coder_pattern_id": 102}, "scanner": "repobility-threat-engine", "correlation_key": "fp|1f39f66a01a89c2fa06ebff61ee9d3067d1983741f87a1883f7097c445edf2fb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/copilot/chat/ContentBlockRenderer.tsx"}, "region": {"startLine": 34}}}]}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger or removed."}, "properties": {"repobilityId": 47536, "scanner": "repobility-threat-engine", "fingerprint": "6abc166bffcaa485b216ca49747f057c22bbdd0732ded1d2bd7cff0ca13e17c7", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "js-console-log-prod", "owasp": null, "cwe_ids": ["CWE-532"], "languages": ["javascript", "typescript", "tsx", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348003+00:00", "triaged_in_corpus": 10, "observations_count": 1940833, "ai_coder_pattern_id": 102}, "scanner": "repobility-threat-engine", "correlation_key": "fp|6abc166bffcaa485b216ca49747f057c22bbdd0732ded1d2bd7cff0ca13e17c7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/copilot/StreamMarkdown.tsx"}, "region": {"startLine": 25}}}]}, {"ruleId": "MINED056", "level": "none", "message": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "properties": {"repobilityId": 47535, "scanner": "repobility-threat-engine", "fingerprint": "decb0607733b2724836b296205aa342c517ea03bf35e270d0f1b60e83dcf3e2c", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "react-key-as-index", "owasp": null, "cwe_ids": ["CWE-682"], "languages": ["typescript", "tsx", "javascript", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348032+00:00", "triaged_in_corpus": 12, "observations_count": 299917, "ai_coder_pattern_id": 135}, "scanner": "repobility-threat-engine", "correlation_key": "fp|decb0607733b2724836b296205aa342c517ea03bf35e270d0f1b60e83dcf3e2c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/pages/settings/AboutSection.tsx"}, "region": {"startLine": 116}}}]}, {"ruleId": "MINED056", "level": "none", "message": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "properties": {"repobilityId": 47534, "scanner": "repobility-threat-engine", "fingerprint": "0cbe05aac328fbcf0d726508d1a0087f1226feb2b546c788a25386d13cf9897d", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "react-key-as-index", "owasp": null, "cwe_ids": ["CWE-682"], "languages": ["typescript", "tsx", "javascript", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348032+00:00", "triaged_in_corpus": 12, "observations_count": 299917, "ai_coder_pattern_id": 135}, "scanner": "repobility-threat-engine", "correlation_key": "fp|0cbe05aac328fbcf0d726508d1a0087f1226feb2b546c788a25386d13cf9897d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/canvas/timeline/DialogueListEditor.tsx"}, "region": {"startLine": 35}}}]}, {"ruleId": "SEC128", "level": "none", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 5 more): Same pattern found in 5 additional files. Review if needed."}, "properties": {"repobilityId": 47532, "scanner": "repobility-threat-engine", "fingerprint": "dfda4170aff520d17dd79e2ba83251ca47508d2ca8ba93d0fcc46ccc46e07c8c", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 5 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 5 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|dfda4170aff520d17dd79e2ba83251ca47508d2ca8ba93d0fcc46ccc46e07c8c"}}}, {"ruleId": "SEC029", "level": "none", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 13 more): Same pattern found in 13 additional files. Review if needed."}, "properties": {"repobilityId": 47528, "scanner": "repobility-threat-engine", "fingerprint": "67207f5a6f091578506eace9ca6ffadd0a3f381d921b44ecf0b5e41c235e25c5", "category": "ssrf", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 13 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 13 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|67207f5a6f091578506eace9ca6ffadd0a3f381d921b44ecf0b5e41c235e25c5"}}}, {"ruleId": "SEC139", "level": "none", "message": {"text": "[SEC139] AI-generated migration/route without companion test file (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "properties": {"repobilityId": 47524, "scanner": "repobility-threat-engine", "fingerprint": "f6e6da7e7662a0a63292fb61dd734ead5bddea75fcb5b0be6ef459f8c3f61b69", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 3 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 3 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC139", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|f6e6da7e7662a0a63292fb61dd734ead5bddea75fcb5b0be6ef459f8c3f61b69"}}}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "properties": {"repobilityId": 47520, "scanner": "repobility-threat-engine", "fingerprint": "97e83b35d6d87ad95e23d12f8a95338efdb63b7f12c389b8e08fe5a80cf94e6e", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 3 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|97e83b35d6d87ad95e23d12f8a95338efdb63b7f12c389b8e08fe5a80cf94e6e", "aggregated_count": 3}}}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "properties": {"repobilityId": 47519, "scanner": "repobility-threat-engine", "fingerprint": "d2950bf067ec1a2ecf19498206064a0cab425fa9e0e1f1efecde5037d974695b", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "correlation_key": "fp|d2950bf067ec1a2ecf19498206064a0cab425fa9e0e1f1efecde5037d974695b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "alembic/versions/4c643f3ff5b9_backfill_custom_model_durations.py"}, "region": {"startLine": 81}}}]}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "properties": {"repobilityId": 47518, "scanner": "repobility-threat-engine", "fingerprint": "132a338532079e7b703880bc3d2d84d8741da30b6d57d15ebccb2280e542833c", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "correlation_key": "fp|132a338532079e7b703880bc3d2d84d8741da30b6d57d15ebccb2280e542833c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "alembic/versions/3c8b0ae43345_fix_truncated_datetime_values.py"}, "region": {"startLine": 63}}}]}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "properties": {"repobilityId": 47517, "scanner": "repobility-threat-engine", "fingerprint": "7c46bd29bf4133e7f50a1bad24e0ee86d4473bdacddaeb0ea98ee451f86b431b", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "correlation_key": "fp|7c46bd29bf4133e7f50a1bad24e0ee86d4473bdacddaeb0ea98ee451f86b431b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "agent_runtime_profile/.claude/skills/manage-project/scripts/peek_split_point.py"}, "region": {"startLine": 115}}}]}, {"ruleId": "MINED001", "level": "none", "message": {"text": "[MINED001] Bare Except Pass (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 47516, "scanner": "repobility-threat-engine", "fingerprint": "3ed4a11ec48650075e843160edf55362aa121897a652d0286a1dc826dd94d954", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|3ed4a11ec48650075e843160edf55362aa121897a652d0286a1dc826dd94d954", "aggregated_count": 1}}}, {"ruleId": "COMP001", "level": "none", "message": {"text": "[COMP001] High cognitive complexity (and 36 more): Same pattern found in 36 additional files. Review if needed."}, "properties": {"repobilityId": 47512, "scanner": "repobility-threat-engine", "fingerprint": "e73953417d9f2ca9f8a94fbd30ff8e6f289ec5e7444c727341ccdd69f1a797de", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 36 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"scanner": "repobility-threat-engine", "function": "find_char_offset", "breakdown": {"if": 5, "for": 2, "continue": 2, "nested_bonus": 9}, "aggregated": true, "complexity": 18, "correlation_key": "fp|e73953417d9f2ca9f8a94fbd30ff8e6f289ec5e7444c727341ccdd69f1a797de", "aggregated_count": 36}}}, {"ruleId": "SEC015", "level": "none", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 6826, "scanner": "repobility-threat-engine", "fingerprint": "e71f3e066944997f1b86820dabf2a311d6455c840f566bf4bffc41fdd3a76cc7", "category": "crypto", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Weak PRNG appears to be used for non-security behavior (UI, sampling, demos, shuffling, or backoff), not for secrets", "evidence": {"match": "Math.random()", "reason": "Weak PRNG appears to be used for non-security behavior (UI, sampling, demos, shuffling, or backoff), not for secrets", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "code|crypto|token|133|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/stores/app-store.ts"}, "region": {"startLine": 133}}}]}, {"ruleId": "SEC015", "level": "none", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 6825, "scanner": "repobility-threat-engine", "fingerprint": "866c63f70cf3499467e7629c9edbd17d39845380fe2ad7f231515ab51a6bb668", "category": "crypto", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Weak PRNG appears to be used for non-security behavior (UI, sampling, demos, shuffling, or backoff), not for secrets", "evidence": {"match": "Math.random()", "reason": "Weak PRNG appears to be used for non-security behavior (UI, sampling, demos, shuffling, or backoff), not for secrets", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "code|crypto|frontend/src/utils/id.ts|3|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/utils/id.ts"}, "region": {"startLine": 3}}}]}, {"ruleId": "ERR002", "level": "none", "message": {"text": "[ERR002] Empty Catch Block (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "properties": {"repobilityId": 6824, "scanner": "repobility-threat-engine", "fingerprint": "2949c2702d7166dac258164d4c52ef70add92ecb6c82892fbc20aaf8046756af", "category": "error_handling", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "ERR002", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|2949c2702d7166dac258164d4c52ef70add92ecb6c82892fbc20aaf8046756af"}}}, {"ruleId": "SEC002", "level": "none", "message": {"text": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code."}, "properties": {"repobilityId": 6820, "scanner": "repobility-threat-engine", "fingerprint": "fb553729138dde0d6b9c51ae3a3387f6912a19734d969dda4e0f1f160e054114", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Value looks like a development placeholder, not a live credential", "evidence": {"match": "api_key=\"<redacted>\"", "reason": "Value looks like a development placeholder, not a live credential", "rule_id": "SEC002", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|scripts/probe_smoke.py|6|api_key redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/probe_smoke.py"}, "region": {"startLine": 70}}}]}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "properties": {"repobilityId": 6819, "scanner": "repobility-threat-engine", "fingerprint": "6b253806806a842d92d94ddaeb6491b2d0960bcfe5d398cf81acc967e20a6bb1", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "evidence": {"match": "logger.warning(\"\u5df2\u81ea\u52a8\u751f\u6210\u8ba4\u8bc1\u5bc6\u7801\uff0c\u8bf7\u67e5\u770b .env \u6587\u4ef6\u4e2d\u7684 AUTH_PASSWORD \u5b57\u6bb5\")", "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|server/auth.py|25|logger.warning .env auth_password"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/auth.py"}, "region": {"startLine": 257}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `aquasecurity/trivy-action` pinned to mutable ref `@v0.36.0`: `uses: aquasecurity/trivy-action@v0.36.0` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47732, "scanner": "repobility-supply-chain", "fingerprint": "6791f0b08e25becfd22c95743d3193deae56f6bfad40c59825b352a1d2b46df3", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|6791f0b08e25becfd22c95743d3193deae56f6bfad40c59825b352a1d2b46df3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/docker.yml"}, "region": {"startLine": 68}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47731, "scanner": "repobility-supply-chain", "fingerprint": "d3a5d3bd8945b6f9fdcd96c8a902d7106ab85089c04fc9624e03c10c367c058f", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|d3a5d3bd8945b6f9fdcd96c8a902d7106ab85089c04fc9624e03c10c367c058f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/docker.yml"}, "region": {"startLine": 28}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `astral-sh/setup-uv` pinned to mutable ref `@v7`: `uses: astral-sh/setup-uv@v7` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47730, "scanner": "repobility-supply-chain", "fingerprint": "cc94b09b5fdd9f5bf81c744c3fdf105fb6a66516cf0179cf3af89248919b4e92", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|cc94b09b5fdd9f5bf81c744c3fdf105fb6a66516cf0179cf3af89248919b4e92"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 45}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47729, "scanner": "repobility-supply-chain", "fingerprint": "eef11f5e9aee2b913741ae9a4ebb4dfb9adfdb5184f5b8ca5b491a87b2b5daeb", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|eef11f5e9aee2b913741ae9a4ebb4dfb9adfdb5184f5b8ca5b491a87b2b5daeb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 37}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `googleapis/release-please-action` pinned to mutable ref `@v5`: `uses: googleapis/release-please-action@v5` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47728, "scanner": "repobility-supply-chain", "fingerprint": "9cb7993c211c46847302e08df8fbb4669dbfcd2d285281717c82e4b95d0bc0f9", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|9cb7993c211c46847302e08df8fbb4669dbfcd2d285281717c82e4b95d0bc0f9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 24}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/create-github-app-token` pinned to mutable ref `@v3`: `uses: actions/create-github-app-token@v3` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47727, "scanner": "repobility-supply-chain", "fingerprint": "0ab704734138b9f411382f749dd6f0d7f5346f125ef3cc48f376b353d84bb7db", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|0ab704734138b9f411382f749dd6f0d7f5346f125ef3cc48f376b353d84bb7db"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 16}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `postgres:16` unpinned: `container/services image: postgres:16` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 47726, "scanner": "repobility-supply-chain", "fingerprint": "95ebb518336f36dbf3dd6a8c8d45f0639bb56b0d75125e318f695d56713873f4", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|95ebb518336f36dbf3dd6a8c8d45f0639bb56b0d75125e318f695d56713873f4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 79}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `codecov/codecov-action` pinned to mutable ref `@v6`: `uses: codecov/codecov-action@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47722, "scanner": "repobility-supply-chain", "fingerprint": "f76c62c942f3083b4a937e49b5d6eda674c4b7ea5702b588630d02035c87f85b", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|f76c62c942f3083b4a937e49b5d6eda674c4b7ea5702b588630d02035c87f85b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 164}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-node` pinned to mutable ref `@v6`: `uses: actions/setup-node@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47721, "scanner": "repobility-supply-chain", "fingerprint": "b4cc9a319aba26fc12ef3684cf2ffcdc06650ef1581f9dab1ebc6a14af0ea8e3", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|b4cc9a319aba26fc12ef3684cf2ffcdc06650ef1581f9dab1ebc6a14af0ea8e3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 140}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `pnpm/action-setup` pinned to mutable ref `@v6`: `uses: pnpm/action-setup@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47720, "scanner": "repobility-supply-chain", "fingerprint": "eb955db60ff2df9f9920ef4c48c7addfc674ad4c272adedb6b0285691013ae5f", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|eb955db60ff2df9f9920ef4c48c7addfc674ad4c272adedb6b0285691013ae5f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 136}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47719, "scanner": "repobility-supply-chain", "fingerprint": "529c817cbbcb9a375516f4dae71313caa490a5e9f8b6609f844392a1fb6b3872", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|529c817cbbcb9a375516f4dae71313caa490a5e9f8b6609f844392a1fb6b3872"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 135}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `codecov/codecov-action` pinned to mutable ref `@v6`: `uses: codecov/codecov-action@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47718, "scanner": "repobility-supply-chain", "fingerprint": "d681e267d85887944e6c5dfd910343ab10fe6e3afcc49545773944e16bf900f3", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|d681e267d85887944e6c5dfd910343ab10fe6e3afcc49545773944e16bf900f3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 122}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-python` pinned to mutable ref `@v6`: `uses: actions/setup-python@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47717, "scanner": "repobility-supply-chain", "fingerprint": "c60a31943aa21d027e5c172ef55572f5da93c18b0912f915fdb3c4b12a76459c", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|c60a31943aa21d027e5c172ef55572f5da93c18b0912f915fdb3c4b12a76459c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 99}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `astral-sh/setup-uv` pinned to mutable ref `@v7`: `uses: astral-sh/setup-uv@v7` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47716, "scanner": "repobility-supply-chain", "fingerprint": "5b7a55b93138be79d41e3d22f1500bd0546ef83a97b0efb8173861bb939042ee", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|5b7a55b93138be79d41e3d22f1500bd0546ef83a97b0efb8173861bb939042ee"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 95}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47715, "scanner": "repobility-supply-chain", "fingerprint": "41572f663452841d544fe0c6b587d95811730cf2db2a3430385f655d4db6a5cd", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|41572f663452841d544fe0c6b587d95811730cf2db2a3430385f655d4db6a5cd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 94}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `codecov/codecov-action` pinned to mutable ref `@v6`: `uses: codecov/codecov-action@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47714, "scanner": "repobility-supply-chain", "fingerprint": "90bf790d0b93fb9484eb238fd375accd9af2efd42292181a12cd82ddd16e5078", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|90bf790d0b93fb9484eb238fd375accd9af2efd42292181a12cd82ddd16e5078"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 63}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-python` pinned to mutable ref `@v6`: `uses: actions/setup-python@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47713, "scanner": "repobility-supply-chain", "fingerprint": "924f093a0b1808aec2bb582340a0818d8beb06cc33e5f165c3ba140d7d96695d", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|924f093a0b1808aec2bb582340a0818d8beb06cc33e5f165c3ba140d7d96695d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 42}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `astral-sh/setup-uv` pinned to mutable ref `@v7`: `uses: astral-sh/setup-uv@v7` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47712, "scanner": "repobility-supply-chain", "fingerprint": "51562ae7f6de12a61d2017eeab5cafe12ae48a744aa3af39270e3c1beff91b7a", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|51562ae7f6de12a61d2017eeab5cafe12ae48a744aa3af39270e3c1beff91b7a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 38}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47711, "scanner": "repobility-supply-chain", "fingerprint": "9023a0c09d237d711a26bc5ae725d9cbb9094b6b43ace24d4999ed9787d8df5c", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|9023a0c09d237d711a26bc5ae725d9cbb9094b6b43ace24d4999ed9787d8df5c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 37}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `dorny/paths-filter` pinned to mutable ref `@v4`: `uses: dorny/paths-filter@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47710, "scanner": "repobility-supply-chain", "fingerprint": "c056c27bd0f27bb1dde9942d5142ca528bc8d05331e6666490d87868ba27d0a4", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|c056c27bd0f27bb1dde9942d5142ca528bc8d05331e6666490d87868ba27d0a4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 19}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47709, "scanner": "repobility-supply-chain", "fingerprint": "04f292b83a928c28089d967ffc4421fcce1f6048282064b5a2e8099b02f39942", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|04f292b83a928c28089d967ffc4421fcce1f6048282064b5a2e8099b02f39942"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 18}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `github/codeql-action/analyze` pinned to mutable ref `@v4`: `uses: github/codeql-action/analyze@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47708, "scanner": "repobility-supply-chain", "fingerprint": "e96d6b5143b789dddc926bad1d0dcb57823af66d0cf39b3da95df677e02661a5", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|e96d6b5143b789dddc926bad1d0dcb57823af66d0cf39b3da95df677e02661a5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/codeql.yml"}, "region": {"startLine": 62}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `github/codeql-action/init` pinned to mutable ref `@v4`: `uses: github/codeql-action/init@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47707, "scanner": "repobility-supply-chain", "fingerprint": "50283b29bd964bbed34983108d71375a0e4989c666718c638ad792aa44fb7dce", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|50283b29bd964bbed34983108d71375a0e4989c666718c638ad792aa44fb7dce"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/codeql.yml"}, "region": {"startLine": 55}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47706, "scanner": "repobility-supply-chain", "fingerprint": "0a2ab5cceac214de5366d253dd131cc8e968d402104a310ade3edff7d7e6acd3", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|0a2ab5cceac214de5366d253dd131cc8e968d402104a310ade3edff7d7e6acd3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/codeql.yml"}, "region": {"startLine": 52}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `dorny/paths-filter` pinned to mutable ref `@v4`: `uses: dorny/paths-filter@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47705, "scanner": "repobility-supply-chain", "fingerprint": "e4de84e7bc937da04c79f44e16521278bede6e2131378e825580ff43f143eb3f", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|e4de84e7bc937da04c79f44e16521278bede6e2131378e825580ff43f143eb3f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/codeql.yml"}, "region": {"startLine": 18}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 47704, "scanner": "repobility-supply-chain", "fingerprint": "36e9565c6e083eeb71d677233e63da0315d5622651ce54222201bdac6ff2e327", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|36e9565c6e083eeb71d677233e63da0315d5622651ce54222201bdac6ff2e327"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/codeql.yml"}, "region": {"startLine": 17}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `python:3.12-slim` not pinned by digest: `FROM python:3.12-slim` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity."}, "properties": {"repobilityId": 47703, "scanner": "repobility-supply-chain", "fingerprint": "baed80b6bb7f69f825b966ed18e6ed43874d99cad6292eb58693198e3e7c5010", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "docker-from-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["dockerfile"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|baed80b6bb7f69f825b966ed18e6ed43874d99cad6292eb58693198e3e7c5010"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 25}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `node:22-slim` not pinned by digest: `FROM node:22-slim` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity."}, "properties": {"repobilityId": 47702, "scanner": "repobility-supply-chain", "fingerprint": "a4772e2c044d33f40029a1c564c4677269beb761a5e8581681475210f5e81d48", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "docker-from-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["dockerfile"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|a4772e2c044d33f40029a1c564c4677269beb761a5e8581681475210f5e81d48"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 4}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_execute_generation_task_rejects_unknown_type: Test function `test_execute_generation_task_rejects_unknown_type` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47669, "scanner": "repobility-ast-engine", "fingerprint": "cb78947f11ed24a5ca9e5599ecc88c9436f03bbe74b4e2c0c8734380e980437a", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|cb78947f11ed24a5ca9e5599ecc88c9436f03bbe74b4e2c0c8734380e980437a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_generation_tasks_dispatch.py"}, "region": {"startLine": 23}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_polling_timeout_raises: Test function `test_polling_timeout_raises` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47667, "scanner": "repobility-ast-engine", "fingerprint": "afe8f8310d635e00b1d28d927c286616259fb9793994ef5f2542c59f9c3517f4", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|afe8f8310d635e00b1d28d927c286616259fb9793994ef5f2542c59f9c3517f4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_newapi_video_backend.py"}, "region": {"startLine": 292}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_failed_status_raises: Test function `test_failed_status_raises` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47666, "scanner": "repobility-ast-engine", "fingerprint": "7e9d12a10a563ab4e67a7e8dc252d1f79f4cca984817f388ef7e60f0f9ced574", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|7e9d12a10a563ab4e67a7e8dc252d1f79f4cca984817f388ef7e60f0f9ced574"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_newapi_video_backend.py"}, "region": {"startLine": 209}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_empty_list_raises: Test function `test_empty_list_raises` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47665, "scanner": "repobility-ast-engine", "fingerprint": "78dba2e579d2f31c535e4af407cbae6d6e7ea786c3d59a4db7bbe75fc641d96c", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|78dba2e579d2f31c535e4af407cbae6d6e7ea786c3d59a4db7bbe75fc641d96c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_compose_video_filter_graph.py"}, "region": {"startLine": 391}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_video_thumbnail_runtime_write_passes_strict_validation: Test function `test_video_thumbnail_runtime_write_passes_strict_validation` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47664, "scanner": "repobility-ast-engine", "fingerprint": "e540761e7032f06a27ce9fa3ca3800fc6e518321046cbe1332058d6e57dd4fa4", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|e540761e7032f06a27ce9fa3ca3800fc6e518321046cbe1332058d6e57dd4fa4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_script_models.py"}, "region": {"startLine": 365}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_template_dict_validates_against_generated_assets_model: Test function `test_template_dict_validates_against_generated_assets_model` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47663, "scanner": "repobility-ast-engine", "fingerprint": "0745ec1a42f97878c9c73058bbbe47b90cd3f734a2dbf847ab9dabec79bc6b41", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|0745ec1a42f97878c9c73058bbbe47b90cd3f734a2dbf847ab9dabec79bc6b41"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_script_models.py"}, "region": {"startLine": 357}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_duration_rejects_out_of_range: Test function `test_duration_rejects_out_of_range` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47662, "scanner": "repobility-ast-engine", "fingerprint": "882c5f469af8f59a90f0ef557e93fbbeb3a2e2725106a13ea5d21140567da9a9", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|882c5f469af8f59a90f0ef557e93fbbeb3a2e2725106a13ea5d21140567da9a9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_script_models.py"}, "region": {"startLine": 78}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_split_unknown_id_raises: Test function `test_split_unknown_id_raises` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47660, "scanner": "repobility-ast-engine", "fingerprint": "6ec7296e37442984eaaac2a5773fce5831a74d379334d04a8c3323177f61e82f", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|6ec7296e37442984eaaac2a5773fce5831a74d379334d04a8c3323177f61e82f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_script_editor.py"}, "region": {"startLine": 310}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_split_requires_at_least_two_parts: Test function `test_split_requires_at_least_two_parts` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47659, "scanner": "repobility-ast-engine", "fingerprint": "2c992112673fd54c36967afc1721abc6b047525d44aa36d27301dda6bdc9ea4e", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|2c992112673fd54c36967afc1721abc6b047525d44aa36d27301dda6bdc9ea4e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_script_editor.py"}, "region": {"startLine": 306}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_remove_unknown_id_raises: Test function `test_remove_unknown_id_raises` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47658, "scanner": "repobility-ast-engine", "fingerprint": "bf036f077caa7899cb0addefffcb8f447ac6c07451b81892b929e1cc117c7ebb", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|bf036f077caa7899cb0addefffcb8f447ac6c07451b81892b929e1cc117c7ebb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_script_editor.py"}, "region": {"startLine": 284}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_insert_unknown_anchor_raises: Test function `test_insert_unknown_anchor_raises` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47657, "scanner": "repobility-ast-engine", "fingerprint": "d76943a5350c7da1be4b9ca1432aec31a71f8360643bc5f15ee1fc24b99b2c79", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|d76943a5350c7da1be4b9ca1432aec31a71f8360643bc5f15ee1fc24b99b2c79"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_script_editor.py"}, "region": {"startLine": 265}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_patch_missing_parent_path_raises: Test function `test_patch_missing_parent_path_raises` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47656, "scanner": "repobility-ast-engine", "fingerprint": "58223a3044af5b7ff87822fcba630d71916b00f9f44b9772f2f8da2101d38bbf", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|58223a3044af5b7ff87822fcba630d71916b00f9f44b9772f2f8da2101d38bbf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_script_editor.py"}, "region": {"startLine": 236}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_patch_id_field_rejected: Test function `test_patch_id_field_rejected` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47655, "scanner": "repobility-ast-engine", "fingerprint": "e325b7e91f77f5fd3a6cc5a77459484855138a7cbc99ed0fad78f1b5196cea3d", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|e325b7e91f77f5fd3a6cc5a77459484855138a7cbc99ed0fad78f1b5196cea3d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_script_editor.py"}, "region": {"startLine": 226}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_patch_generated_assets_rejected: Test function `test_patch_generated_assets_rejected` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47654, "scanner": "repobility-ast-engine", "fingerprint": "00186b64ea24741a18ce87c9a75052e8eac3f9d10e226b435a9e26172adfd071", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|00186b64ea24741a18ce87c9a75052e8eac3f9d10e226b435a9e26172adfd071"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_script_editor.py"}, "region": {"startLine": 221}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_patch_unknown_id_raises: Test function `test_patch_unknown_id_raises` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47653, "scanner": "repobility-ast-engine", "fingerprint": "b9b7f680909405ecf9c42ce77839c78f35808db88f79b0f29433d7b9dea21b81", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b9b7f680909405ecf9c42ce77839c78f35808db88f79b0f29433d7b9dea21b81"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_script_editor.py"}, "region": {"startLine": 217}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_present_but_null_fails_loud: Test function `test_present_but_null_fails_loud` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47652, "scanner": "repobility-ast-engine", "fingerprint": "f44a9e53a1ecee2c5c71c63bea1b813e138871b2fca86504ae3308c1c1893c67", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f44a9e53a1ecee2c5c71c63bea1b813e138871b2fca86504ae3308c1c1893c67"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_script_editor.py"}, "region": {"startLine": 172}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_non_list_items_fail_loud: Test function `test_non_list_items_fail_loud` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47651, "scanner": "repobility-ast-engine", "fingerprint": "048e98106c3bb0f7363c07c0e5235a6909593d2f2bd268ff092e57874701eac7", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|048e98106c3bb0f7363c07c0e5235a6909593d2f2bd268ff092e57874701eac7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_script_editor.py"}, "region": {"startLine": 167}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_raises_when_unresolvable: Test function `test_raises_when_unresolvable` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47650, "scanner": "repobility-ast-engine", "fingerprint": "c7e82349ca894e42f7ec8c60e913ceb0dd26f9a49e84ad7f1b8adf0a693956b5", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|c7e82349ca894e42f7ec8c60e913ceb0dd26f9a49e84ad7f1b8adf0a693956b5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_project_manager_more.py"}, "region": {"startLine": 719}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_save_script_rejects_traversal_filename: Test function `test_save_script_rejects_traversal_filename` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47649, "scanner": "repobility-ast-engine", "fingerprint": "595208319b57ce1d37171374342008b704f15569507a14e41563e514ec8f8285", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|595208319b57ce1d37171374342008b704f15569507a14e41563e514ec8f8285"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_project_manager_more.py"}, "region": {"startLine": 680}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_load_script_rejects_traversal_filename: Test function `test_load_script_rejects_traversal_filename` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47648, "scanner": "repobility-ast-engine", "fingerprint": "3f8ddc250fa79c732efaed5d87a4a94c74e9367be25822210622fa205cbae6b7", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|3f8ddc250fa79c732efaed5d87a4a94c74e9367be25822210622fa205cbae6b7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_project_manager_more.py"}, "region": {"startLine": 673}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_normalize_project_name_rejects_special_chars: Test function `test_normalize_project_name_rejects_special_chars` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47647, "scanner": "repobility-ast-engine", "fingerprint": "2a89750a74c7e6293d9ef5252ba03a17e4018da2e0ec160b903018247de4520b", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|2a89750a74c7e6293d9ef5252ba03a17e4018da2e0ec160b903018247de4520b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_project_manager_more.py"}, "region": {"startLine": 664}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_get_project_path_rejects_traversal: Test function `test_get_project_path_rejects_traversal` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47646, "scanner": "repobility-ast-engine", "fingerprint": "5e53c403c2fec894054e2d3dc34d3ffc9413e8cdc23aed16fc43c18043de1824", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|5e53c403c2fec894054e2d3dc34d3ffc9413e8cdc23aed16fc43c18043de1824"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_project_manager_more.py"}, "region": {"startLine": 655}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_from_cwd_raises_when_no_project_json: Test function `test_from_cwd_raises_when_no_project_json` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47645, "scanner": "repobility-ast-engine", "fingerprint": "2f179d5b742ae34415f13f6625e87fe89aff4eee42b0c6fc2d2af3fb9f5a2810", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|2f179d5b742ae34415f13f6625e87fe89aff4eee42b0c6fc2d2af3fb9f5a2810"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_project_manager_more.py"}, "region": {"startLine": 643}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_create_project_metadata_rejects_legacy_image_backend: Test function `test_create_project_metadata_rejects_legacy_image_backend` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47644, "scanner": "repobility-ast-engine", "fingerprint": "9f20d20897af4f2463725b150c67e7d47f1a2a0b27fcdac592d2e9c28005ff74", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|9f20d20897af4f2463725b150c67e7d47f1a2a0b27fcdac592d2e9c28005ff74"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_project_manager_more.py"}, "region": {"startLine": 82}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._validate_generated_assets` used but never assigned in __init__: Method `_validate_scenes` of class `DataValidator` reads `self._validate_generated_assets`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47637, "scanner": "repobility-ast-engine", "fingerprint": "5e699f3313fff81e3bb5d8a2ab4143b8be6de4bf462ea361a620102b08f82883", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|5e699f3313fff81e3bb5d8a2ab4143b8be6de4bf462ea361a620102b08f82883"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/data_validator.py"}, "region": {"startLine": 502}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._validate_generated_assets` used but never assigned in __init__: Method `_validate_segments` of class `DataValidator` reads `self._validate_generated_assets`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47636, "scanner": "repobility-ast-engine", "fingerprint": "bb7121a4b01c734898edcf957a4e1fa36b8d1e7b43df6edaf8e88ed4bc7f4e14", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|bb7121a4b01c734898edcf957a4e1fa36b8d1e7b43df6edaf8e88ed4bc7f4e14"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/data_validator.py"}, "region": {"startLine": 428}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._validate_segment_refs` used but never assigned in __init__: Method `_validate_segments` of class `DataValidator` reads `self._validate_segment_refs`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47635, "scanner": "repobility-ast-engine", "fingerprint": "57ba34d8390481650eaa002aa6ea694d33a8a106d3ac89b294d79f10c3dff635", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|57ba34d8390481650eaa002aa6ea694d33a8a106d3ac89b294d79f10c3dff635"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/data_validator.py"}, "region": {"startLine": 412}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._validate_segment_refs` used but never assigned in __init__: Method `_validate_segments` of class `DataValidator` reads `self._validate_segment_refs`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47634, "scanner": "repobility-ast-engine", "fingerprint": "97d3fcc40a0f9216463188bfa15da838a99eb62c8a6f39f52408a2d8c844b900", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|97d3fcc40a0f9216463188bfa15da838a99eb62c8a6f39f52408a2d8c844b900"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/data_validator.py"}, "region": {"startLine": 403}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._validate_local_reference` used but never assigned in __init__: Method `_validate_generated_assets` of class `DataValidator` reads `self._validate_local_reference`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47633, "scanner": "repobility-ast-engine", "fingerprint": "1d69ec8c830601d62d4ae331d637095d0f875179a385126998f6233774c5663b", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|1d69ec8c830601d62d4ae331d637095d0f875179a385126998f6233774c5663b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/data_validator.py"}, "region": {"startLine": 350}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._validate_local_reference` used but never assigned in __init__: Method `_validate_generated_assets` of class `DataValidator` reads `self._validate_local_reference`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47632, "scanner": "repobility-ast-engine", "fingerprint": "15a707a0fabddcbea15b1e954d664044f098f11c51f48c9cc7809c8db80b6107", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|15a707a0fabddcbea15b1e954d664044f098f11c51f48c9cc7809c8db80b6107"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/data_validator.py"}, "region": {"startLine": 343}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._validate_local_reference` used but never assigned in __init__: Method `_validate_generated_assets` of class `DataValidator` reads `self._validate_local_reference`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47631, "scanner": "repobility-ast-engine", "fingerprint": "c3879739b1cee37e60fc2c430530ddea175c734aec537d335b189bd601f33300", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|c3879739b1cee37e60fc2c430530ddea175c734aec537d335b189bd601f33300"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/data_validator.py"}, "region": {"startLine": 336}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._validate_local_reference` used but never assigned in __init__: Method `_validate_generated_assets` of class `DataValidator` reads `self._validate_local_reference`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47630, "scanner": "repobility-ast-engine", "fingerprint": "be3269a14771c28292db87bf946532e2c8e7f63cbc7cb7f3d3108847f164ac4f", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|be3269a14771c28292db87bf946532e2c8e7f63cbc7cb7f3d3108847f164ac4f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/data_validator.py"}, "region": {"startLine": 329}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._validate_project_payload` used but never assigned in __init__: Method `validate_project_dir` of class `DataValidator` reads `self._validate_project_payload`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47629, "scanner": "repobility-ast-engine", "fingerprint": "86fa073ecae2401cced2819b01da1f6218d4682a69ca0427ebf3971cb5db58b3", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|86fa073ecae2401cced2819b01da1f6218d4682a69ca0427ebf3971cb5db58b3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/data_validator.py"}, "region": {"startLine": 313}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.validate_project_dir` used but never assigned in __init__: Method `validate_project` of class `DataValidator` reads `self.validate_project_dir`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47628, "scanner": "repobility-ast-engine", "fingerprint": "394ebee87f555baa8a141361766019c719792821f392cc4163819a82fcc87a64", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|394ebee87f555baa8a141361766019c719792821f392cc4163819a82fcc87a64"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/data_validator.py"}, "region": {"startLine": 298}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._validate_project_payload` used but never assigned in __init__: Method `validate_project_payload` of class `DataValidator` reads `self._validate_project_payload`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47627, "scanner": "repobility-ast-engine", "fingerprint": "1e07d4aa88c85b2308bd66d73755bd26a9eb5a37ae68540ce82fa74c0b420bb4", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|1e07d4aa88c85b2308bd66d73755bd26a9eb5a37ae68540ce82fa74c0b420bb4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/data_validator.py"}, "region": {"startLine": 293}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._validate_project_catalog` used but never assigned in __init__: Method `_validate_project_payload` of class `DataValidator` reads `self._validate_project_catalog`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47626, "scanner": "repobility-ast-engine", "fingerprint": "4f97fe90b90822464a8b1be3338d93ab6aebe656779cabaacb453cf883a20952", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|4f97fe90b90822464a8b1be3338d93ab6aebe656779cabaacb453cf883a20952"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/data_validator.py"}, "region": {"startLine": 229}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._validate_project_catalog` used but never assigned in __init__: Method `_validate_project_payload` of class `DataValidator` reads `self._validate_project_catalog`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47625, "scanner": "repobility-ast-engine", "fingerprint": "022c0e667346381c85dba3ba123c88bdfaf87d00462b805c0dbcd36b32cf624e", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|022c0e667346381c85dba3ba123c88bdfaf87d00462b805c0dbcd36b32cf624e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/data_validator.py"}, "region": {"startLine": 223}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._resolve_existing_path` used but never assigned in __init__: Method `_validate_local_reference` of class `DataValidator` reads `self._resolve_existing_path`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47624, "scanner": "repobility-ast-engine", "fingerprint": "a45fb27d1f55e77202fd25e0c6f058c35e70a6aaa4ec82d91debbaab7ef44218", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|a45fb27d1f55e77202fd25e0c6f058c35e70a6aaa4ec82d91debbaab7ef44218"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/data_validator.py"}, "region": {"startLine": 150}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_vidu_connection: Test function `test_vidu_connection` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 47622, "scanner": "repobility-ast-engine", "fingerprint": "7c555678f6d2b89ad53f5d2ae16309d7a8debbcda9cc0438de93a84ed7115f8c", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|7c555678f6d2b89ad53f5d2ae16309d7a8debbcda9cc0438de93a84ed7115f8c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/vidu_shared.py"}, "region": {"startLine": 206}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._ensure_parent_dir` used but never assigned in __init__: Method `resume_video_async` of class `MediaGenerator` reads `self._ensure_parent_dir`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47621, "scanner": "repobility-ast-engine", "fingerprint": "24e58b33609e0a368a33ff438a34596e58c14346f0882beb56f0e1e708e63548", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|24e58b33609e0a368a33ff438a34596e58c14346f0882beb56f0e1e708e63548"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/media_generator.py"}, "region": {"startLine": 527}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._get_output_path` used but never assigned in __init__: Method `resume_video_async` of class `MediaGenerator` reads `self._get_output_path`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47620, "scanner": "repobility-ast-engine", "fingerprint": "187f459006f0fbc3e5ca8422283f4f672064caa22574c077b38972d849daa4da", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|187f459006f0fbc3e5ca8422283f4f672064caa22574c077b38972d849daa4da"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/media_generator.py"}, "region": {"startLine": 526}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._ensure_parent_dir` used but never assigned in __init__: Method `generate_video_async` of class `MediaGenerator` reads `self._ensure_parent_dir`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47619, "scanner": "repobility-ast-engine", "fingerprint": "34c3639e49c4a8f83cce5173998e4bac81703040a22a898a6447baa2b522847a", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|34c3639e49c4a8f83cce5173998e4bac81703040a22a898a6447baa2b522847a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/media_generator.py"}, "region": {"startLine": 364}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._get_output_path` used but never assigned in __init__: Method `generate_video_async` of class `MediaGenerator` reads `self._get_output_path`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47618, "scanner": "repobility-ast-engine", "fingerprint": "2408c26ead0f33333e9480d8949a9c4a33aa1e025f4d81798b1c7fc576b7dafc", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|2408c26ead0f33333e9480d8949a9c4a33aa1e025f4d81798b1c7fc576b7dafc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/media_generator.py"}, "region": {"startLine": 363}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.generate_video_async` used but never assigned in __init__: Method `generate_video` of class `MediaGenerator` reads `self.generate_video_async`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47617, "scanner": "repobility-ast-engine", "fingerprint": "fc656676a2e957235152494d451feb865cc0ed52b750d03ff80bb88e2702a6f5", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|fc656676a2e957235152494d451feb865cc0ed52b750d03ff80bb88e2702a6f5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/media_generator.py"}, "region": {"startLine": 317}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._sync` used but never assigned in __init__: Method `generate_video` of class `MediaGenerator` reads `self._sync`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47616, "scanner": "repobility-ast-engine", "fingerprint": "76298beaa09ae3837da4db2d3c0917feeeafbcaccb76bdd45d4849a89f978a8c", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|76298beaa09ae3837da4db2d3c0917feeeafbcaccb76bdd45d4849a89f978a8c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/media_generator.py"}, "region": {"startLine": 316}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._ensure_parent_dir` used but never assigned in __init__: Method `generate_image_async` of class `MediaGenerator` reads `self._ensure_parent_dir`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47615, "scanner": "repobility-ast-engine", "fingerprint": "f10825fd2d52385ab4475bb7a122ce50557c5da0876e8d4ed15ffe900eb69d8f", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f10825fd2d52385ab4475bb7a122ce50557c5da0876e8d4ed15ffe900eb69d8f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/media_generator.py"}, "region": {"startLine": 179}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._get_output_path` used but never assigned in __init__: Method `generate_image_async` of class `MediaGenerator` reads `self._get_output_path`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47614, "scanner": "repobility-ast-engine", "fingerprint": "0a17602f5b0e15a53d148e97d0c673a6518227478e808a2e67f995c3a88f5791", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|0a17602f5b0e15a53d148e97d0c673a6518227478e808a2e67f995c3a88f5791"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/media_generator.py"}, "region": {"startLine": 178}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.generate_image_async` used but never assigned in __init__: Method `generate_image` of class `MediaGenerator` reads `self.generate_image_async`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47613, "scanner": "repobility-ast-engine", "fingerprint": "f0d57ec84144d20c540e9da3c9cce860b687c9b34aed08cb8e6af1437fdd7042", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f0d57ec84144d20c540e9da3c9cce860b687c9b34aed08cb8e6af1437fdd7042"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/media_generator.py"}, "region": {"startLine": 140}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._sync` used but never assigned in __init__: Method `generate_image` of class `MediaGenerator` reads `self._sync`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47612, "scanner": "repobility-ast-engine", "fingerprint": "878889275c473b59b4060bc1b17f387c356c3dfdc9aaf3517e3eec6f9403c938", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|878889275c473b59b4060bc1b17f387c356c3dfdc9aaf3517e3eec6f9403c938"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/media_generator.py"}, "region": {"startLine": 139}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._calculate_custom_cost` used but never assigned in __init__: Method `calculate_cost` of class `CostCalculator` reads `self._calculate_custom_cost`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 47611, "scanner": "repobility-ast-engine", "fingerprint": "27390572699570c38031e9358a51ab69536dc97799f1dad39a8ecbcf123b220c", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|27390572699570c38031e9358a51ab69536dc97799f1dad39a8ecbcf123b220c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/cost_calculator.py"}, "region": {"startLine": 56}}}]}, {"ruleId": "JRN009", "level": "error", "message": {"text": "Secret-like setting is echoed into a password input value"}, "properties": {"repobilityId": 47610, "scanner": "repobility-journey-contract", "fingerprint": "fa8016dc45f6c3db61cf6754cd3d4f3bff4b20d7b108e48305e4631917e0f60b", "category": "auth", "severity": "high", "confidence": 0.83, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "A password or secret-named input is populated from a secret-like variable instead of a masked placeholder.", "evidence": {"rule_id": "JRN009", "scanner": "repobility-journey-contract", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html"], "correlation_key": "code|auth|token|117|jrn009"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/pages/LoginPage.tsx"}, "region": {"startLine": 117}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: DELETE /episodes/{episode}/units/{unit_id}."}, "properties": {"repobilityId": 47592, "scanner": "repobility-access-control", "fingerprint": "86fd7c50413211659582e8abb4bc7e2e6208ebdc3ecbe01c1ff66dbb7ff99811", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/episodes/{episode}/units/{unit_id}", "method": "DELETE", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|token|271|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/reference_videos.py"}, "region": {"startLine": 271}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: PATCH /episodes/{episode}/units/{unit_id}."}, "properties": {"repobilityId": 47591, "scanner": "repobility-access-control", "fingerprint": "10eb77103e555e8b391100fbe2d90663a4fd5d70c3b1c2948cb6ab4a7d6547de", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/episodes/{episode}/units/{unit_id}", "method": "PATCH", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|token|233|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/reference_videos.py"}, "region": {"startLine": 233}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: PATCH /projects/{name}/segments/{segment_id}."}, "properties": {"repobilityId": 47590, "scanner": "repobility-access-control", "fingerprint": "7aa23457719139985671b67e9c64ed1c78895e965a0e526bf97923f1f7e158c0", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}/segments/{segment_id}", "method": "PATCH", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|855|auc003", "identity_targets": ["unknown", "owner", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 855}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: PATCH /projects/{name}/script-scenes/{scene_id}."}, "properties": {"repobilityId": 47589, "scanner": "repobility-access-control", "fingerprint": "8818446d106442ae5b45ae856a7a2bf4a32a77868edec5e592bd866cf74b0e20", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}/script-scenes/{scene_id}", "method": "PATCH", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|777|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 777}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: POST /projects/{project_name}/versions/{resource_type}/{resource_id}/restore/{version}."}, "properties": {"repobilityId": 47588, "scanner": "repobility-access-control", "fingerprint": "ed8a5549138a4bf1bf20f01a4ac1b7ec73a1ad0cc42ae8c64317cb25fc5b8508", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{project_name}/versions/{resource_type}/{resource_id}/restore/{version}", "method": "POST", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/versions.py|165|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/versions.py"}, "region": {"startLine": 165}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: GET /projects/{project_name}/versions/{resource_type}/{resource_id}."}, "properties": {"repobilityId": 47587, "scanner": "repobility-access-control", "fingerprint": "178b81f26b20bce4890e3e75637b07d214367ae5562bd823512204a50df5afa4", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{project_name}/versions/{resource_type}/{resource_id}", "method": "GET", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/versions.py|129|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/versions.py"}, "region": {"startLine": 129}}}]}, {"ruleId": "MINED009", "level": "error", "message": {"text": "[MINED009] Floats For Money: Variable named price/amount/cost typed as float instead of Decimal."}, "properties": {"repobilityId": 47557, "scanner": "repobility-threat-engine", "fingerprint": "e3af6bf920fd4350ac614ce0013294a9b2ff5994cc55c239af234f802d965643", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "floats-for-money", "owasp": null, "cwe_ids": ["CWE-682"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347918+00:00", "triaged_in_corpus": 15, "observations_count": 208571, "ai_coder_pattern_id": 20}, "scanner": "repobility-threat-engine", "correlation_key": "fp|e3af6bf920fd4350ac614ce0013294a9b2ff5994cc55c239af234f802d965643"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/services/cost_estimation.py"}, "region": {"startLine": 22}}}]}, {"ruleId": "SEC135", "level": "error", "message": {"text": "[SEC135] Auth/permission check missing on AI-generated endpoint: Mutating HTTP endpoint generated by an AI agent without an auth decorator or middleware. The number-one production-incident pattern we see in AI-generated SaaS code: the AI builds the route, builds the handler, and forgets to wire the auth check that the rest of the codebase uses. CWE-862 (missing authorization). High-severity because the route is fully functional, just unprotected \u2014 attackers can call it directly."}, "properties": {"repobilityId": 47554, "scanner": "repobility-threat-engine", "fingerprint": "5fb908d3500bbc7c846d69bae2570e6ebdaea359947e542f163e081cf2357ee2", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "@router.post(\"/sessions/send\")\nasync def send_message(\n    project_name: str,\n    req: SendRequest,", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC135", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|5fb908d3500bbc7c846d69bae2570e6ebdaea359947e542f163e081cf2357ee2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/assistant.py"}, "region": {"startLine": 68}}}]}, {"ruleId": "SEC135", "level": "error", "message": {"text": "[SEC135] Auth/permission check missing on AI-generated endpoint: Mutating HTTP endpoint generated by an AI agent without an auth decorator or middleware. The number-one production-incident pattern we see in AI-generated SaaS code: the AI builds the route, builds the handler, and forgets to wire the auth check that the rest of the codebase uses. CWE-862 (missing authorization). High-severity because the route is fully functional, just unprotected \u2014 attackers can call it directly."}, "properties": {"repobilityId": 47553, "scanner": "repobility-threat-engine", "fingerprint": "0fc08e076999834ae48e0af04b412885e811676904bcc4031d2eaffbd7f868ae", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "@router.post(\"/api-keys\", status_code=201)\nasync def create_api_key(\n    body: CreateApiKeyRequest,", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC135", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|0fc08e076999834ae48e0af04b412885e811676904bcc4031d2eaffbd7f868ae"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/api_keys.py"}, "region": {"startLine": 71}}}]}, {"ruleId": "SEC135", "level": "error", "message": {"text": "[SEC135] Auth/permission check missing on AI-generated endpoint: Mutating HTTP endpoint generated by an AI agent without an auth decorator or middleware. The number-one production-incident pattern we see in AI-generated SaaS code: the AI builds the route, builds the handler, and forgets to wire the auth check that the rest of the codebase uses. CWE-862 (missing authorization). High-severity because the route is fully functional, just unprotected \u2014 attackers can call it directly."}, "properties": {"repobilityId": 47552, "scanner": "repobility-threat-engine", "fingerprint": "874bd0604fa1497c70e71d395b22cfee86192a8f5af4846c1fdeb9637cbceb5d", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "@router.post(\"/agent/chat\")\nasync def agent_chat(\n    body: AgentChatRequest,\n    request: Request,", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC135", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|874bd0604fa1497c70e71d395b22cfee86192a8f5af4846c1fdeb9637cbceb5d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/agent_chat.py"}, "region": {"startLine": 122}}}]}, {"ruleId": "MINED006", "level": "error", "message": {"text": "[MINED006] Overcatch Baseexception: except BaseException: ... \u2014 prevents Ctrl+C and SystemExit from working."}, "properties": {"repobilityId": 47551, "scanner": "repobility-threat-engine", "fingerprint": "f4eddb0d6d643442aef15ad1193e1a16a27077c002acf3f20083c73e2db83fab", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "overcatch-baseexception", "owasp": null, "cwe_ids": ["CWE-705"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347911+00:00", "triaged_in_corpus": 15, "observations_count": 230624, "ai_coder_pattern_id": 8}, "scanner": "repobility-threat-engine", "correlation_key": "fp|f4eddb0d6d643442aef15ad1193e1a16a27077c002acf3f20083c73e2db83fab"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/agent_runtime/session_actor.py"}, "region": {"startLine": 84}}}]}, {"ruleId": "SEC085", "level": "error", "message": {"text": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. Ported from eslint-plugin-security detect-child-process (Apache-2.0)."}, "properties": {"repobilityId": 47546, "scanner": "repobility-threat-engine", "fingerprint": "559021bde23b724700c8feeee97fe2df673e96df043336f85b0ee3b5347c3053", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(seg", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|559021bde23b724700c8feeee97fe2df673e96df043336f85b0ee3b5347c3053"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/utils/duration_format.ts"}, "region": {"startLine": 60}}}]}, {"ruleId": "SEC085", "level": "error", "message": {"text": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. Ported from eslint-plugin-security detect-child-process (Apache-2.0)."}, "properties": {"repobilityId": 47545, "scanner": "repobility-threat-engine", "fingerprint": "c83251b884ee3ea1488a809c06ac27e2d9f4ad7a9091d650a53bfee0262a5c4b", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(toolName", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|c83251b884ee3ea1488a809c06ac27e2d9f4ad7a9091d650a53bfee0262a5c4b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/copilot/chat/ToolCallWithResult.tsx"}, "region": {"startLine": 84}}}]}, {"ruleId": "SEC128", "level": "error", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake): Async call invoked without `await` returns an unhandled Promise. The outer function resolves before the inner work completes \u2014 DB writes lost, emails not sent, race conditions. This is one of the top-3 errors AI coders make: they understand async-shape but drop the await keyword when chaining multiple ops. Surfaces as flaky tests or silently dropped data in production."}, "properties": {"repobilityId": 47531, "scanner": "repobility-threat-engine", "fingerprint": "e94ba3b3e3386b2b1b63cfae054c7395d9a593e64bc7a1e85899c3e3b4130a45", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "timers.delete(el);", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e94ba3b3e3386b2b1b63cfae054c7395d9a593e64bc7a1e85899c3e3b4130a45"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/main.tsx"}, "region": {"startLine": 51}}}]}, {"ruleId": "SEC128", "level": "error", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake): Async call invoked without `await` returns an unhandled Promise. The outer function resolves before the inner work completes \u2014 DB writes lost, emails not sent, race conditions. This is one of the top-3 errors AI coders make: they understand async-shape but drop the await keyword when chaining multiple ops. Surfaces as flaky tests or silently dropped data in production."}, "properties": {"repobilityId": 47530, "scanner": "repobility-threat-engine", "fingerprint": "4d02aceba7133d855e351dc5e6234c166256eeaa9c7a4799c002779b9cad4bc6", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "p.delete(\"provider\");", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|4d02aceba7133d855e351dc5e6234c166256eeaa9c7a4799c002779b9cad4bc6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/pages/ProviderSection.tsx"}, "region": {"startLine": 87}}}]}, {"ruleId": "SEC128", "level": "error", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake): Async call invoked without `await` returns an unhandled Promise. The outer function resolves before the inner work completes \u2014 DB writes lost, emails not sent, race conditions. This is one of the top-3 errors AI coders make: they understand async-shape but drop the await keyword when chaining multiple ops. Surfaces as flaky tests or silently dropped data in production."}, "properties": {"repobilityId": 47529, "scanner": "repobility-threat-engine", "fingerprint": "2950aebc1c14fcbf0b24d90dcc7c33ce522740eaf08557dc970a2af64fb52fcd", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "next.delete(groupKey);", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|2950aebc1c14fcbf0b24d90dcc7c33ce522740eaf08557dc970a2af64fb52fcd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/canvas/grid/GridPreviewView.tsx"}, "region": {"startLine": 85}}}]}, {"ruleId": "SEC029", "level": "error", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input: Outbound HTTP request to a user-controlled URL without allowlist validation. Attackers can probe internal services (169.254.169.254 metadata, internal Kubernetes endpoints, file:// URIs), exfiltrate data, or pivot through your network. SSRF is OWASP A10:2021 and a frequent foothold in cloud breaches."}, "properties": {"repobilityId": 47527, "scanner": "repobility-threat-engine", "fingerprint": "e48b79045d52ec6a4a213831fbc8bc59c2d2a7e1a58f4b2e5b052534b2d2010a", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "URL(i", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e48b79045d52ec6a4a213831fbc8bc59c2d2a7e1a58f4b2e5b052534b2d2010a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/assets/AssetFormModal.tsx"}, "region": {"startLine": 61}}}]}, {"ruleId": "SEC029", "level": "error", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input: Outbound HTTP request to a user-controlled URL without allowlist validation. Attackers can probe internal services (169.254.169.254 metadata, internal Kubernetes endpoints, file:// URIs), exfiltrate data, or pivot through your network. SSRF is OWASP A10:2021 and a frequent foothold in cloud breaches."}, "properties": {"repobilityId": 47526, "scanner": "repobility-threat-engine", "fingerprint": "ffc6daa4e697b76e5cef56d7099a3882b98d317cf17737c37420fea86a15d7dc", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Url(a", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|ffc6daa4e697b76e5cef56d7099a3882b98d317cf17737c37420fea86a15d7dc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/assets/AssetCard.tsx"}, "region": {"startLine": 24}}}]}, {"ruleId": "SEC029", "level": "error", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input: Outbound HTTP request to a user-controlled URL without allowlist validation. Attackers can probe internal services (169.254.169.254 metadata, internal Kubernetes endpoints, file:// URIs), exfiltrate data, or pivot through your network. SSRF is OWASP A10:2021 and a frequent foothold in cloud breaches."}, "properties": {"repobilityId": 47525, "scanner": "repobility-threat-engine", "fingerprint": "376fe58846614f7a8d2046fe74856dbc2fbb756710ac1775ebcf966a72019e1a", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Url(p", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|376fe58846614f7a8d2046fe74856dbc2fbb756710ac1775ebcf966a72019e1a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/assets/AddToLibraryButton.tsx"}, "region": {"startLine": 37}}}]}, {"ruleId": "MINED001", "level": "error", "message": {"text": "[MINED001] Bare Except Pass: except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "properties": {"repobilityId": 47515, "scanner": "repobility-threat-engine", "fingerprint": "193bc12164359517bca72532ed8ac73a8865e0d17a0265144cbdf87a607536b6", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "correlation_key": "fp|193bc12164359517bca72532ed8ac73a8865e0d17a0265144cbdf87a607536b6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/versions.py"}, "region": {"startLine": 120}}}]}, {"ruleId": "MINED001", "level": "error", "message": {"text": "[MINED001] Bare Except Pass: except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "properties": {"repobilityId": 47514, "scanner": "repobility-threat-engine", "fingerprint": "7e781b29e8645b71b63b3daa0266fb7485ad6334c5ba7b65d488885492266bfc", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "correlation_key": "fp|7e781b29e8645b71b63b3daa0266fb7485ad6334c5ba7b65d488885492266bfc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/agent_runtime/transcript_reader.py"}, "region": {"startLine": 114}}}]}, {"ruleId": "MINED001", "level": "error", "message": {"text": "[MINED001] Bare Except Pass: except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "properties": {"repobilityId": 47513, "scanner": "repobility-threat-engine", "fingerprint": "b7ac090a39aaf3eda3615298d58d9baa506a7f0e855bfc96a37407a161e40714", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "correlation_key": "fp|b7ac090a39aaf3eda3615298d58d9baa506a7f0e855bfc96a37407a161e40714"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "agent_runtime_profile/.claude/skills/manage-project/scripts/peek_split_point.py"}, "region": {"startLine": 114}}}]}, {"ruleId": "JRN009", "level": "error", "message": {"text": "Secret-like setting is echoed into a password input value"}, "properties": {"repobilityId": 6881, "scanner": "repobility-journey-contract", "fingerprint": "6df1a743fbb33e94232e0161d3faf5cecd70cdf1e41923673ff7e4aa911a6704", "category": "auth", "severity": "high", "confidence": 0.83, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "A password or secret-named input is populated from a secret-like variable instead of a masked placeholder.", "evidence": {"rule_id": "JRN009", "scanner": "repobility-journey-contract", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html"], "correlation_key": "code|auth|token|109|jrn009"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/pages/LoginPage.tsx"}, "region": {"startLine": 109}}}]}, {"ruleId": "JRN009", "level": "error", "message": {"text": "Secret-like setting is echoed into a password input value"}, "properties": {"repobilityId": 6880, "scanner": "repobility-journey-contract", "fingerprint": "c5bbf3658c4e4bd327cafa943a018d0b04cfb5d5b37f7ffdb7151c5f41ad72ed", "category": "auth", "severity": "high", "confidence": 0.83, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "A password or secret-named input is populated from a secret-like variable instead of a masked placeholder.", "evidence": {"rule_id": "JRN009", "scanner": "repobility-journey-contract", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html"], "correlation_key": "code|auth|token|437|jrn009"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/pages/CredentialList.tsx"}, "region": {"startLine": 437}}}]}, {"ruleId": "JRN009", "level": "error", "message": {"text": "Secret-like setting is echoed into a password input value"}, "properties": {"repobilityId": 6879, "scanner": "repobility-journey-contract", "fingerprint": "adb9de7fe76395d0467a67dcf7a1914de7bce88b373976c444b478fa13232fb8", "category": "auth", "severity": "high", "confidence": 0.83, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "A password or secret-named input is populated from a secret-like variable instead of a masked placeholder.", "evidence": {"rule_id": "JRN009", "scanner": "repobility-journey-contract", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html"], "correlation_key": "code|auth|token|280|jrn009"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/pages/CredentialList.tsx"}, "region": {"startLine": 280}}}]}, {"ruleId": "JRN009", "level": "error", "message": {"text": "Secret-like setting is echoed into a password input value"}, "properties": {"repobilityId": 6878, "scanner": "repobility-journey-contract", "fingerprint": "e401ac57e1a67a3b47ed5e9303c46afc5cafe65ad4b368835271d9bf9073a44a", "category": "auth", "severity": "high", "confidence": 0.83, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "A password or secret-named input is populated from a secret-like variable instead of a masked placeholder.", "evidence": {"rule_id": "JRN009", "scanner": "repobility-journey-contract", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html"], "correlation_key": "code|auth|token|444|jrn009"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/src/components/agent/AddCredentialModal.tsx"}, "region": {"startLine": 444}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: POST /tasks/{task_id}/cancel."}, "properties": {"repobilityId": 6851, "scanner": "repobility-access-control", "fingerprint": "b2f0b0240be9ff8c21468a81b9cc0c4487914ae8fadca1bae1f8d4fe50eb3197", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/tasks/{task_id}/cancel", "method": "POST", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/tasks.py|169|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/tasks.py"}, "region": {"startLine": 169}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: GET /tasks/{task_id}/cancel-preview."}, "properties": {"repobilityId": 6850, "scanner": "repobility-access-control", "fingerprint": "28a27330acd18eeaeebe43e16430b7eb06b87b92fa3f31a31e94290b2f48ec92", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/tasks/{task_id}/cancel-preview", "method": "GET", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/tasks.py|159|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/tasks.py"}, "region": {"startLine": 159}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: POST /{asset_id}/image."}, "properties": {"repobilityId": 6849, "scanner": "repobility-access-control", "fingerprint": "cc3432244d0c5e6c3a4be609d28566577baf7fa58b505dc17110aa8150a5cae7", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/{asset_id}/image", "method": "POST", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/assets.py|211|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/assets.py"}, "region": {"startLine": 211}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: PATCH /{asset_id}."}, "properties": {"repobilityId": 6848, "scanner": "repobility-access-control", "fingerprint": "92588f30684ce5cec34c46deadf24e8ad233971c9a2299f8c683d0c8177547c0", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/{asset_id}", "method": "PATCH", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/assets.py|170|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/assets.py"}, "region": {"startLine": 170}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: DELETE /episodes/{episode}/units/{unit_id}."}, "properties": {"repobilityId": 6847, "scanner": "repobility-access-control", "fingerprint": "ead809c4969ca2ee86f20364afd0f4042a9c49438dace4d00647f4009bd616eb", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/episodes/{episode}/units/{unit_id}", "method": "DELETE", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|token|222|cwe-639", "identity_targets": ["unknown", "owner", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/reference_videos.py"}, "region": {"startLine": 222}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: PATCH /episodes/{episode}/units/{unit_id}."}, "properties": {"repobilityId": 6846, "scanner": "repobility-access-control", "fingerprint": "4dd4e4f06ddf25dcf68401cbfced120a95ffcc910abc51864da10d18404fc67b", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/episodes/{episode}/units/{unit_id}", "method": "PATCH", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|token|185|cwe-639", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/reference_videos.py"}, "region": {"startLine": 185}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: PATCH /projects/{name}/segments/{segment_id}."}, "properties": {"repobilityId": 6845, "scanner": "repobility-access-control", "fingerprint": "63cfed97ca8687f78d9f835dee327552857209bb65b002c5927b418ea85e3947", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}/segments/{segment_id}", "method": "PATCH", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|848|cwe-639", "identity_targets": ["unknown", "owner", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 848}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: PATCH /projects/{name}/script-scenes/{scene_id}."}, "properties": {"repobilityId": 6844, "scanner": "repobility-access-control", "fingerprint": "1aa30bb5ec07db0ec68d5fb35b9c2c52ea9c0fcbaa09b73c7c6d1e62c78ee2a8", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{name}/script-scenes/{scene_id}", "method": "PATCH", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/projects.py|775|cwe-639", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/projects.py"}, "region": {"startLine": 775}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: POST /projects/{project_name}/versions/{resource_type}/{resource_id}/restore/{version}."}, "properties": {"repobilityId": 6843, "scanner": "repobility-access-control", "fingerprint": "bde900346293e57866b64f4321eb4702163ff0caece1cb02843419c5c1b072b9", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{project_name}/versions/{resource_type}/{resource_id}/restore/{version}", "method": "POST", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/versions.py|154|cwe-639", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/versions.py"}, "region": {"startLine": 154}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: GET /projects/{project_name}/versions/{resource_type}/{resource_id}."}, "properties": {"repobilityId": 6842, "scanner": "repobility-access-control", "fingerprint": "28b6d7ed3ee9a32ad1a14605d358cc6d52bc90c7adaae648ad9e55c89f944c85", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/projects/{project_name}/versions/{resource_type}/{resource_id}", "method": "GET", "scanner": "repobility-access-control", "framework": "FastAPI", "correlation_key": "code|auth|server/routers/versions.py|118|cwe-639", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/versions.py"}, "region": {"startLine": 118}}}]}, {"ruleId": "DKC013", "level": "error", "message": {"text": "Database service has no persistent data volume"}, "properties": {"repobilityId": 6836, "scanner": "repobility-docker", "fingerprint": "73e2eab1f901adba3b53634a8640bb1dd2c38a52fd14e7a9bed511bbc47cf779", "category": "docker", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Database-like service does not mount a known data directory.", "evidence": {"rule_id": "DKC013", "scanner": "repobility-docker", "service": "postgres", "references": ["https://docs.docker.com/engine/storage/volumes/"], "correlation_key": "fp|73e2eab1f901adba3b53634a8640bb1dd2c38a52fd14e7a9bed511bbc47cf779", "expected_targets": ["/var/lib/postgresql/data"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "deploy/production/docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.CODECOV_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CODECOV_TOKEN }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 47725, "scanner": "repobility-supply-chain", "fingerprint": "a700799bc793aa72861bfe1461547befb1ea037748a7f37dd8f311044370a026", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|a700799bc793aa72861bfe1461547befb1ea037748a7f37dd8f311044370a026"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 166}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.CODECOV_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CODECOV_TOKEN }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 47724, "scanner": "repobility-supply-chain", "fingerprint": "3e6e872bb69c4474d9d935dd0ab024481d9ff0e7367a0c7f4d264c6f2d6ce18f", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|3e6e872bb69c4474d9d935dd0ab024481d9ff0e7367a0c7f4d264c6f2d6ce18f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 124}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.CODECOV_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CODECOV_TOKEN }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 47723, "scanner": "repobility-supply-chain", "fingerprint": "734a40443f3dd98977d481f7299f249edac89b4aa050c9f457af03c3fb2ead88", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|734a40443f3dd98977d481f7299f249edac89b4aa050c9f457af03c3fb2ead88"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 65}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `warnings` used but not imported: The file uses `warnings.something(...)` but never imports `warnings`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 47701, "scanner": "repobility-ast-engine", "fingerprint": "c7618ba09074fbd1211d597dc232841e08190134bd781374b248d2b3fb82e78d", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|c7618ba09074fbd1211d597dc232841e08190134bd781374b248d2b3fb82e78d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/agent_runtime/sdk_tools/enqueue_assets.py"}, "region": {"startLine": 50}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `queue` used but not imported: The file uses `queue.something(...)` but never imports `queue`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 47699, "scanner": "repobility-ast-engine", "fingerprint": "c5fa6d6670cd968115e4a6261e10417c09419ad7666a98a940cdd8131feea652", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|c5fa6d6670cd968115e4a6261e10417c09419ad7666a98a940cdd8131feea652"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/agent_runtime/session_manager.py"}, "region": {"startLine": 223}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `queue` used but not imported: The file uses `queue.something(...)` but never imports `queue`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 47698, "scanner": "repobility-ast-engine", "fingerprint": "874da531f627a9480233fd98641f1499ddcfade672a5c8743108d3e721bafd66", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|874da531f627a9480233fd98641f1499ddcfade672a5c8743108d3e721bafd66"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/services/project_events.py"}, "region": {"startLine": 184}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `warnings` used but not imported: The file uses `warnings.something(...)` but never imports `warnings`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 47693, "scanner": "repobility-ast-engine", "fingerprint": "1334c6fd44fc23da9839f63e5ae43fab0f311d8eb6c77371eba48c4bc2c2d1da", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|1334c6fd44fc23da9839f63e5ae43fab0f311d8eb6c77371eba48c4bc2c2d1da"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/services/reference_video_tasks.py"}, "region": {"startLine": 138}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `queue` used but not imported: The file uses `queue.something(...)` but never imports `queue`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 47685, "scanner": "repobility-ast-engine", "fingerprint": "f9def308df5fe8718e4c0d31ed53d039dda81496a5ce134fb2984896888d4089", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f9def308df5fe8718e4c0d31ed53d039dda81496a5ce134fb2984896888d4089"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/generate.py"}, "region": {"startLine": 278}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `queue` used but not imported: The file uses `queue.something(...)` but never imports `queue`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 47684, "scanner": "repobility-ast-engine", "fingerprint": "561424241eefa2cd42a255b2f813a389665f67cbd48a86003408967efea05b10", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|561424241eefa2cd42a255b2f813a389665f67cbd48a86003408967efea05b10"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/grids.py"}, "region": {"startLine": 289}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `queue` used but not imported: The file uses `queue.something(...)` but never imports `queue`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 47683, "scanner": "repobility-ast-engine", "fingerprint": "3a3068be02c1aad73c44ac89e6d79ab13c6269fc3e95e120d5d4c032f7fb27fa", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|3a3068be02c1aad73c44ac89e6d79ab13c6269fc3e95e120d5d4c032f7fb27fa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/tasks.py"}, "region": {"startLine": 59}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `queue` used but not imported: The file uses `queue.something(...)` but never imports `queue`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 47682, "scanner": "repobility-ast-engine", "fingerprint": "3627e536a19e12bdd686d4644fe1331bfea6dc27ac1d2ebc9bd43fbbd8b9a9c4", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|3627e536a19e12bdd686d4644fe1331bfea6dc27ac1d2ebc9bd43fbbd8b9a9c4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/reference_videos.py"}, "region": {"startLine": 347}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `queue` used but not imported: The file uses `queue.something(...)` but never imports `queue`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 47676, "scanner": "repobility-ast-engine", "fingerprint": "2752b24f779cf07e271c12dd4a55967a59f47aa419ec588f481ea8999d00f752", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|2752b24f779cf07e271c12dd4a55967a59f47aa419ec588f481ea8999d00f752"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_tasks_router_more.py"}, "region": {"startLine": 94}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `queue` used but not imported: The file uses `queue.something(...)` but never imports `queue`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 47672, "scanner": "repobility-ast-engine", "fingerprint": "fc263add823169fc8bf6c570bbcf8546f95770cb96c9d956b943db77156ad45d", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|fc263add823169fc8bf6c570bbcf8546f95770cb96c9d956b943db77156ad45d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_tasks_sse.py"}, "region": {"startLine": 23}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `queue` used but not imported: The file uses `queue.something(...)` but never imports `queue`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 47671, "scanner": "repobility-ast-engine", "fingerprint": "102be3411a2c4cec869c2a2cc6cbefc585d9b0b45d701e42296840865de32c68", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|102be3411a2c4cec869c2a2cc6cbefc585d9b0b45d701e42296840865de32c68"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_assistant_service_streaming.py"}, "region": {"startLine": 148}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `queue` used but not imported: The file uses `queue.something(...)` but never imports `queue`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 47670, "scanner": "repobility-ast-engine", "fingerprint": "bc44051c6ea427eebcb623bb912965c56b183e5333b9ca5c52917a4a1c17c566", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|bc44051c6ea427eebcb623bb912965c56b183e5333b9ca5c52917a4a1c17c566"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_session_manager_more.py"}, "region": {"startLine": 90}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `queue` used but not imported: The file uses `queue.something(...)` but never imports `queue`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 47668, "scanner": "repobility-ast-engine", "fingerprint": "dae638f6afba3da1933e563314a96f31dac9f57bc237ab33fe9f391251a0c730", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|dae638f6afba3da1933e563314a96f31dac9f57bc237ab33fe9f391251a0c730"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_generation_worker_module.py"}, "region": {"startLine": 453}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `queue` used but not imported: The file uses `queue.something(...)` but never imports `queue`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 47661, "scanner": "repobility-ast-engine", "fingerprint": "660631f2e0be840708284145cba6a42b7ab7cf49fe32764f2695e8993fe38ea9", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|660631f2e0be840708284145cba6a42b7ab7cf49fe32764f2695e8993fe38ea9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_app_module.py"}, "region": {"startLine": 100}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `queue` used but not imported: The file uses `queue.something(...)` but never imports `queue`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 47639, "scanner": "repobility-ast-engine", "fingerprint": "8a927a487971f8f6b594b97c2680bad4d5bcb9abb90c4fee6863833581bbdaac", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|8a927a487971f8f6b594b97c2680bad4d5bcb9abb90c4fee6863833581bbdaac"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/generation_queue_client.py"}, "region": {"startLine": 61}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `warnings` used but not imported: The file uses `warnings.something(...)` but never imports `warnings`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 47623, "scanner": "repobility-ast-engine", "fingerprint": "bf4a6ec21f5d719359d718b245b55b203d2cccd57234774b05d5e779b1ef7f94", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|bf4a6ec21f5d719359d718b245b55b203d2cccd57234774b05d5e779b1ef7f94"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib/data_validator.py"}, "region": {"startLine": 276}}}]}, {"ruleId": "DKC007", "level": "error", "message": {"text": "Compose service contains a literal secret environment value"}, "properties": {"repobilityId": 6835, "scanner": "repobility-docker", "fingerprint": "e20c97bb826d107338ac0fc037042e76b4928d7e58f78daa3b4352af9a01947d", "category": "docker", "severity": "critical", "confidence": 0.96, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Environment variable name is secret-like and value is a committed literal.", "evidence": {"rule_id": "DKC007", "scanner": "repobility-docker", "service": "postgres", "variable": "POSTGRES_PASSWORD", "references": ["https://docs.docker.com/compose/how-tos/environment-variables/best-practices/", "https://docs.docker.com/reference/compose-file/secrets/"], "path_context": "runtime", "correlation_key": "fp|e20c97bb826d107338ac0fc037042e76b4928d7e58f78daa3b4352af9a01947d", "compose_secrets_declared": false}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "deploy/production/docker-compose.yml"}, "region": {"startLine": 1}}}]}]}]}