Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.

Scan timing: clone 13.24s · analysis 10.88s · 27.8 MB · GitHub API rate-limit (preflight)

ArcReel/ArcReel

https://github.com/ArcReel/ArcReel · scanned 2026-05-31 01:24 UTC (5 days, 7 hours ago) · 10 languages

1042 findings (253 legacy + 789 scanner) 11/13 scanners ran 96th percentile · Python · large (100-500K LoC) Scanner says 54 (higher by 38)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 5 days, 7 hours ago · v2 · last Δ +0.1 (diff) · 663 findings from 2 sources. Findings combine the legacy security pipeline AND the multi-layer engine (atlas, wiring, flows, ranked) AND verified AI agent contributions.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 85.0 0.15 12.75
security_score 100.0 0.25 25.00
testing_score 100.0 0.20 20.00
documentation_score 100.0 0.15 15.00
practices_score 94.0 0.15 14.10
code_quality 60.0 0.10 6.00
Overall 1.00 92.8
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Repository scanned at 54.5/100 with 100.0% coverage. It contains 8927 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 410 findings — concentrated in api (131), quality (106), software (67). Risk profile is high: 2 critical, 130 high, 30 medium. Recommended next step: open the api layer findings first — that's where the highest-impact wins live.

Showing 518 of 663 findings. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

high Legacy quality quality conf 1.00 ✓ Repobility [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.
Add `import queue` at the top of the file.
server/agent_runtime/session_manager.py:223 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Add `import queue` at the top of the file.
server/services/project_events.py:184 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Add `import queue` at the top of the file.
server/routers/generate.py:278 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Add `import queue` at the top of the file.
server/routers/grids.py:289 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Add `import queue` at the top of the file.
server/routers/tasks.py:59 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Add `import queue` at the top of the file.
server/routers/reference_videos.py:347 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Add `import queue` at the top of the file.
lib/generation_queue_client.py:61 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Add `import warnings` at the top of the file.
server/agent_runtime/sdk_tools/enqueue_assets.py:50 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Add `import warnings` at the top of the file.
server/services/reference_video_tasks.py:138 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Add `import warnings` at the top of the file.
lib/data_validator.py:276 qualitylegacy
critical 9-layer security secrets conf 1.00 Possible secret in scripts/probe_smoke.py
Detected pattern matching generic_api_key. Rotate the credential and move to a secret manager.
scripts/probe_smoke.py:70 secrets
critical 9-layer security secrets conf 1.00 Possible secret in server/auth.py
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
server/auth.py:250 secrets
high Legacy security auth conf 0.70 [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}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/reference_videos.py:271 authlegacy
high Legacy security auth conf 0.70 [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}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/versions.py:129 authlegacy
high Legacy security auth conf 0.70 [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.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/tasks.py:159 authlegacy
high Legacy security auth conf 0.70 [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}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/reference_videos.py:233 authlegacy
high Legacy security auth conf 0.70 [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}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/projects.py:777 authlegacy
high Legacy security auth conf 0.70 [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}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/projects.py:855 authlegacy
high Legacy security auth conf 0.70 [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}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/assets.py:170 authlegacy
high Legacy security auth conf 0.70 [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}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/versions.py:165 authlegacy
high Legacy security auth conf 0.70 [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.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/tasks.py:169 authlegacy
high Legacy security auth conf 0.70 [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.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/assets.py:211 authlegacy
low Legacy quality quality conf 1.00 ✓ Repobility [MINED001] Bare Except Pass: except: pass or except Exception: pass — silently swallows everything including KeyboardInterrupt and bugs.
Review and fix per the pattern semantics. See CWE-755 / for context.
server/routers/versions.py:120 qualitylegacy
low Legacy quality quality conf 1.00 ✓ Repobility [MINED001] Bare Except Pass: except: pass or except Exception: pass — silently swallows everything including KeyboardInterrupt and bugs.
Review and fix per the pattern semantics. See CWE-755 / for context.
server/agent_runtime/transcript_reader.py:114 qualitylegacy
low Legacy quality quality conf 1.00 ✓ Repobility [MINED001] Bare Except Pass: except: pass or except Exception: pass — silently swallows everything including KeyboardInterrupt and bugs.
Review and fix per the pattern semantics. See CWE-755 / for context.
agent_runtime_profile/.claude/skills/manage-project/scripts/peek_split_point.py:114 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [MINED006] Overcatch Baseexception: except BaseException: ... — prevents Ctrl+C and SystemExit from working.
Review and fix per the pattern semantics. See CWE-705 / for context.
server/agent_runtime/session_actor.py:84 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [MINED106] Phantom test coverage: test_vidu_connection: Test function `test_vidu_connection` runs code but contains no assert / expect / should call — it passes regardless of behaviour. Adds line coverage without verifying anything.
Add an explicit assertion that captures the test's intent, or remove the test.
lib/vidu_shared.py:206 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._calculate_custom_cost = <default>` in __init__, or add a class-level default.
lib/cost_calculator.py:56 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._ensure_parent_dir = <default>` in __init__, or add a class-level default.
lib/media_generator.py:179 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._ensure_parent_dir = <default>` in __init__, or add a class-level default.
lib/media_generator.py:364 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._ensure_parent_dir = <default>` in __init__, or add a class-level default.
lib/media_generator.py:527 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._get_output_path = <default>` in __init__, or add a class-level default.
lib/media_generator.py:178 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._get_output_path = <default>` in __init__, or add a class-level default.
lib/media_generator.py:363 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._get_output_path = <default>` in __init__, or add a class-level default.
lib/media_generator.py:526 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._resolve_existing_path = <default>` in __init__, or add a class-level default.
lib/data_validator.py:150 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._sync = <default>` in __init__, or add a class-level default.
lib/media_generator.py:139 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._sync = <default>` in __init__, or add a class-level default.
lib/media_generator.py:316 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._validate_generated_assets = <default>` in __init__, or add a class-level default.
lib/data_validator.py:502 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._validate_generated_assets = <default>` in __init__, or add a class-level default.
lib/data_validator.py:428 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._validate_local_reference = <default>` in __init__, or add a class-level default.
lib/data_validator.py:350 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._validate_local_reference = <default>` in __init__, or add a class-level default.
lib/data_validator.py:343 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._validate_local_reference = <default>` in __init__, or add a class-level default.
lib/data_validator.py:336 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._validate_local_reference = <default>` in __init__, or add a class-level default.
lib/data_validator.py:329 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._validate_project_catalog = <default>` in __init__, or add a class-level default.
lib/data_validator.py:229 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._validate_project_catalog = <default>` in __init__, or add a class-level default.
lib/data_validator.py:223 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._validate_project_payload = <default>` in __init__, or add a class-level default.
lib/data_validator.py:313 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._validate_project_payload = <default>` in __init__, or add a class-level default.
lib/data_validator.py:293 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._validate_segment_refs = <default>` in __init__, or add a class-level default.
lib/data_validator.py:412 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self._validate_segment_refs = <default>` in __init__, or add a class-level default.
lib/data_validator.py:403 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self.generate_image_async = <default>` in __init__, or add a class-level default.
lib/media_generator.py:140 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self.generate_video_async = <default>` in __init__, or add a class-level default.
lib/media_generator.py:317 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Initialize `self.validate_project_dir = <default>` in __init__, or add a class-level default.
lib/data_validator.py:298 qualitylegacy
high Legacy software dependency conf 0.90 ✓ Repobility [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.
Replace with: `uses: actions/checkout@<40-char-sha> # v6` and let Dependabot bump it on a scheduled cadence.
.github/workflows/docker.yml:28 dependencylegacy
high Legacy software dependency conf 0.90 ✓ Repobility [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.
Replace with: `uses: actions/checkout@<40-char-sha> # v6` and let Dependabot bump it on a scheduled cadence.
.github/workflows/release-please.yml:37 dependencylegacy
high Legacy software dependency conf 0.90 ✓ Repobility [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.
Replace with: `uses: actions/checkout@<40-char-sha> # v6` and let Dependabot bump it on a scheduled cadence.
.github/workflows/codeql.yml:52 dependencylegacy
high Legacy software dependency conf 0.90 ✓ Repobility [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.
Replace with: `uses: actions/checkout@<40-char-sha> # v6` and let Dependabot bump it on a scheduled cadence.
.github/workflows/codeql.yml:17 dependencylegacy
high Legacy software dependency conf 0.90 ✓ Repobility [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.
Replace with: `uses: actions/create-github-app-token@<40-char-sha> # v3` and let Dependabot bump it on a scheduled cadence.
.github/workflows/release-please.yml:16 dependencylegacy
high Legacy software dependency conf 0.90 ✓ Repobility [MINED115] Action `aquasecurity/trivy-action` pinned to mutable ref `@v0.36.0`: `uses: aquasecurity/[email protected]` 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.
Replace with: `uses: aquasecurity/trivy-action@<40-char-sha> # v0.36.0` and let Dependabot bump it on a scheduled cadence.
.github/workflows/docker.yml:68 dependencylegacy
high Legacy software dependency conf 0.90 ✓ Repobility [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.
Replace with: `uses: astral-sh/setup-uv@<40-char-sha> # v7` and let Dependabot bump it on a scheduled cadence.
.github/workflows/release-please.yml:45 dependencylegacy
high Legacy software dependency conf 0.90 ✓ Repobility [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.
Replace with: `uses: dorny/paths-filter@<40-char-sha> # v4` and let Dependabot bump it on a scheduled cadence.
.github/workflows/codeql.yml:18 dependencylegacy
high Legacy software dependency conf 0.90 ✓ Repobility [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.
Replace with: `uses: github/codeql-action/analyze@<40-char-sha> # v4` and let Dependabot bump it on a scheduled cadence.
.github/workflows/codeql.yml:62 dependencylegacy
high Legacy software dependency conf 0.90 ✓ Repobility [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.
Replace with: `uses: github/codeql-action/init@<40-char-sha> # v4` and let Dependabot bump it on a scheduled cadence.
.github/workflows/codeql.yml:55 dependencylegacy
high Legacy software dependency conf 0.90 ✓ Repobility [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.
Replace with: `uses: googleapis/release-please-action@<40-char-sha> # v5` and let Dependabot bump it on a scheduled cadence.
.github/workflows/release-please.yml:24 dependencylegacy
high Legacy software dependency conf 0.90 ✓ Repobility [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.
Replace with: `FROM node:22-slim@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
Dockerfile:4 dependencylegacy
high Legacy software dependency conf 0.90 ✓ Repobility [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.
Replace with: `FROM python:3.12-slim@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
Dockerfile:25 dependencylegacy
low Legacy quality quality conf 1.00 [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).
Use execFile / spawn with separate args array; never pass shell strings.
frontend/src/utils/duration_format.ts:60 qualitylegacy
low Legacy quality quality conf 1.00 [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).
Use execFile / spawn with separate args array; never pass shell strings.
frontend/src/components/copilot/chat/ToolCallWithResult.tsx:84 qualitylegacy
high Legacy cicd docker conf 0.90 Database service has no persistent data volume
Mount the database data directory to a named Docker volume or managed persistent disk, and document backup and restore testing.
deploy/production/docker-compose.yml:1 dockerlegacy
high Legacy security auth conf 0.83 Secret-like setting is echoed into a password input value
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.
frontend/src/pages/LoginPage.tsx:117 authlegacy
high Legacy security auth conf 0.83 Secret-like setting is echoed into a password input value
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.
frontend/src/components/pages/CredentialList.tsx:437 authlegacy
high Legacy security auth conf 0.83 Secret-like setting is echoed into a password input value
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.
frontend/src/components/pages/CredentialList.tsx:280 authlegacy
high Legacy security auth conf 0.83 Secret-like setting is echoed into a password input value
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.
frontend/src/components/agent/AddCredentialModal.tsx:444 authlegacy
high 9-layer api wiring conf 1.00 Dangling fetch: DELETE /agent/credentials/${id} (frontend/src/api.ts:1607)
`frontend/src/api.ts:1607` calls `DELETE /agent/credentials/${id}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/agent/credentials/<p>` If this points at an external API, prefix it with `https://` so the m…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: DELETE /api-keys/${keyId} (frontend/src/api.ts:1491)
`frontend/src/api.ts:1491` calls `DELETE /api-keys/${keyId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/api-keys/<p>` If this points at an external API, prefix it with `https://` so the matcher skips it.
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: DELETE /assets/${encodeURIComponent(id)} (frontend/src/api.ts:1832)
`frontend/src/api.ts:1832` calls `DELETE /assets/${encodeURIComponent(id)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/assets/<p>` If this points at an external API, prefix it with `https://` so the mat…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: DELETE /custom-providers/${id} (frontend/src/api.ts:1654)
`frontend/src/api.ts:1654` calls `DELETE /custom-providers/${id}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/<p>` If this points at an external API, prefix it with `https://` so the mat…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: DELETE /projects/${encodeURIComponent(name)} (frontend/src/api.ts:411)
`frontend/src/api.ts:411` calls `DELETE /projects/${encodeURIComponent(name)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>` If this points at an external API, prefix it with `https://` so th…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: DELETE /projects/${encodeURIComponent(projectName)}/characters/${encodeURIComponent(charName)} (frontend/src/api.ts:563)
`frontend/src/api.ts:563` calls `DELETE /projects/${encodeURIComponent(projectName)}/characters/${encodeURIComponent(charName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/characters/<p>` I…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: DELETE /projects/${encodeURIComponent(projectName)}/drafts/${episode}/step${stepNum} (frontend/src/api.ts:911)
`frontend/src/api.ts:911` calls `DELETE /projects/${encodeURIComponent(projectName)}/drafts/${episode}/step${stepNum}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/drafts/<p>/step/<p>` If thi…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: DELETE /projects/${encodeURIComponent(projectName)}/props/${encodeURIComponent(propName)} (frontend/src/api.ts:647)
`frontend/src/api.ts:647` calls `DELETE /projects/${encodeURIComponent(projectName)}/props/${encodeURIComponent(propName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/props/<p>` If this poi…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: DELETE /projects/${encodeURIComponent(projectName)}/scenes/${encodeURIComponent(sceneName)} (frontend/src/api.ts:605)
`frontend/src/api.ts:605` calls `DELETE /projects/${encodeURIComponent(projectName)}/scenes/${encodeURIComponent(sceneName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/scenes/<p>` If this …
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /agent/credentials (frontend/src/api.ts:1584)
`frontend/src/api.ts:1584` calls `GET /agent/credentials` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/agent/credentials` If this points at an external API, prefix it with `https://` so the matcher skips …
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /agent/preset-providers (frontend/src/api.ts:1580)
`frontend/src/api.ts:1580` calls `GET /agent/preset-providers` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/agent/preset-providers` If this points at an external API, prefix it with `https://` so the matc…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /api-keys (frontend/src/api.ts:1478)
`frontend/src/api.ts:1478` calls `GET /api-keys` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/api-keys` If this points at an external API, prefix it with `https://` so the matcher skips it.
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /api/v1/auth/status (frontend/src/stores/auth-store.ts:32)
`frontend/src/stores/auth-store.ts:32` calls `GET /api/v1/auth/status` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/v1/auth/status` If this points at an external API, prefix it with `https://` so the matcher skips…
wiringdangling-fetchfetch
high 9-layer api wiring conf 1.00 Dangling fetch: GET /assets/${encodeURIComponent(id)} (frontend/src/api.ts:1787)
`frontend/src/api.ts:1787` calls `GET /assets/${encodeURIComponent(id)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/assets/<p>` If this points at an external API, prefix it with `https://` so the matche…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /custom-providers (frontend/src/api.ts:1630)
`frontend/src/api.ts:1630` calls `GET /custom-providers` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers` If this points at an external API, prefix it with `https://` so the matcher skips it.
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /custom-providers/${id} (frontend/src/api.ts:1642)
`frontend/src/api.ts:1642` calls `GET /custom-providers/${id}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/<p>` If this points at an external API, prefix it with `https://` so the matche…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /custom-providers/${id}/credentials (frontend/src/api.ts:1678)
`frontend/src/api.ts:1678` calls `GET /custom-providers/${id}/credentials` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/<p>/credentials` If this points at an external API, prefix it with …
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /custom-providers/endpoints (frontend/src/api.ts:1634)
`frontend/src/api.ts:1634` calls `GET /custom-providers/endpoints` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/endpoints` If this points at an external API, prefix it with `https://` so …
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /projects (frontend/src/api.test.ts:100)
`frontend/src/api.test.ts:100` calls `GET /projects` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects` If this points at an external API, prefix it with `https://` so the matcher skips it.
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /projects (frontend/src/api.test.ts:120)
`frontend/src/api.test.ts:120` calls `GET /projects` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects` If this points at an external API, prefix it with `https://` so the matcher skips it.
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /projects (frontend/src/api.test.ts:133)
`frontend/src/api.test.ts:133` calls `GET /projects` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects` If this points at an external API, prefix it with `https://` so the matcher skips it.
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /projects (frontend/src/api.test.ts:150)
`frontend/src/api.test.ts:150` calls `GET /projects` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects` If this points at an external API, prefix it with `https://` so the matcher skips it.
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /projects (frontend/src/api.test.ts:164)
`frontend/src/api.test.ts:164` calls `GET /projects` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects` If this points at an external API, prefix it with `https://` so the matcher skips it.
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /projects (frontend/src/api.ts:375)
`frontend/src/api.ts:375` calls `GET /projects` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects` If this points at an external API, prefix it with `https://` so the matcher skips it.
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /projects/${encodeURIComponent(name)} (frontend/src/api.ts:394)
`frontend/src/api.ts:394` calls `GET /projects/${encodeURIComponent(name)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>` If this points at an external API, prefix it with `https://` so the m…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /projects/${encodeURIComponent(name)}/video-capabilities (frontend/src/api.ts:428)
`frontend/src/api.ts:428` calls `GET /projects/${encodeURIComponent(name)}/video-capabilities` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/video-capabilities` If this points at an external A…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /projects/${encodeURIComponent(projectName)}/grids (frontend/src/api.ts:1745)
`frontend/src/api.ts:1745` calls `GET /projects/${encodeURIComponent(projectName)}/grids` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/grids` If this points at an external API, prefix it with…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /projects/${encodeURIComponent(projectName)}/grids/${encodeURIComponent(gridId)} (frontend/src/api.ts:1754)
`frontend/src/api.ts:1754` calls `GET /projects/${encodeURIComponent(projectName)}/grids/${encodeURIComponent(gridId)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/grids/<p>` If this points …
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /providers (frontend/src/api.ts:1498)
`frontend/src/api.ts:1498` calls `GET /providers` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/providers` If this points at an external API, prefix it with `https://` so the matcher skips it.
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /providers/${encodeURIComponent(id)}/config (frontend/src/api.ts:1503)
`frontend/src/api.ts:1503` calls `GET /providers/${encodeURIComponent(id)}/config` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/providers/<p>/config` If this points at an external API, prefix it with `htt…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /providers/${encodeURIComponent(providerId)}/credentials (frontend/src/api.ts:1528)
`frontend/src/api.ts:1528` calls `GET /providers/${encodeURIComponent(providerId)}/credentials` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/providers/<p>/credentials` If this points at an external API, p…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /tasks/${encodeURIComponent(taskId)} (frontend/src/api.ts:1076)
`frontend/src/api.ts:1076` calls `GET /tasks/${encodeURIComponent(taskId)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/tasks/<p>` If this points at an external API, prefix it with `https://` so the matc…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /tasks/${encodeURIComponent(taskId)}/cancel-preview (frontend/src/api.ts:1126)
`frontend/src/api.ts:1126` calls `GET /tasks/${encodeURIComponent(taskId)}/cancel-preview` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/tasks/<p>/cancel-preview` If this points at an external API, prefix …
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /usage/projects (frontend/src/api.ts:1471)
`frontend/src/api.ts:1471` calls `GET /usage/projects` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/usage/projects` If this points at an external API, prefix it with `https://` so the matcher skips it.
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: GET /usage/stats?${searchParams.toString()} (frontend/src/api.ts:1706)
`frontend/src/api.ts:1706` calls `GET /usage/stats?${searchParams.toString()}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/usage/stats` If this points at an external API, prefix it with `https://` so the…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: PATCH /agent/credentials/${id} (frontend/src/api.ts:1600)
`frontend/src/api.ts:1600` calls `PATCH /agent/credentials/${id}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/agent/credentials/<p>` If this points at an external API, prefix it with `https://` so the ma…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: PATCH /assets/${encodeURIComponent(id)} (frontend/src/api.ts:1810)
`frontend/src/api.ts:1810` calls `PATCH /assets/${encodeURIComponent(id)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/assets/<p>` If this points at an external API, prefix it with `https://` so the matc…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: PATCH /custom-providers/${id} (frontend/src/api.ts:1646)
`frontend/src/api.ts:1646` calls `PATCH /custom-providers/${id}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/<p>` If this points at an external API, prefix it with `https://` so the matc…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: PATCH /projects/${encodeURIComponent(name)} (frontend/src/api.ts:404)
`frontend/src/api.ts:404` calls `PATCH /projects/${encodeURIComponent(name)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>` If this points at an external API, prefix it with `https://` so the…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: PATCH /projects/${encodeURIComponent(projectName)}/characters/${encodeURIComponent(charName)} (frontend/src/api.ts:550)
`frontend/src/api.ts:550` calls `PATCH /projects/${encodeURIComponent(projectName)}/characters/${encodeURIComponent(charName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/characters/<p>` If…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: PATCH /projects/${encodeURIComponent(projectName)}/overview (frontend/src/api.ts:940)
`frontend/src/api.ts:940` calls `PATCH /projects/${encodeURIComponent(projectName)}/overview` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/overview` If this points at an external API, prefix …
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: PATCH /projects/${encodeURIComponent(projectName)}/props/${encodeURIComponent(propName)} (frontend/src/api.ts:634)
`frontend/src/api.ts:634` calls `PATCH /projects/${encodeURIComponent(projectName)}/props/${encodeURIComponent(propName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/props/<p>` If this poin…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: PATCH /projects/${encodeURIComponent(projectName)}/scenes/${encodeURIComponent(sceneName)} (frontend/src/api.ts:592)
`frontend/src/api.ts:592` calls `PATCH /projects/${encodeURIComponent(projectName)}/scenes/${encodeURIComponent(sceneName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/scenes/<p>` If this p…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: PATCH /projects/${encodeURIComponent(projectName)}/script-scenes/${encodeURIComponent(sceneId)} (frontend/src/api.ts:672)
`frontend/src/api.ts:672` calls `PATCH /projects/${encodeURIComponent(projectName)}/script-scenes/${encodeURIComponent(sceneId)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/script-scenes/<p…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: PATCH /projects/${encodeURIComponent(projectName)}/segments/${encodeURIComponent(segmentId)} (frontend/src/api.ts:689)
`frontend/src/api.ts:689` calls `PATCH /projects/${encodeURIComponent(projectName)}/segments/${encodeURIComponent(segmentId)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/segments/<p>` If th…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: PATCH /providers/${encodeURIComponent(id)}/config (frontend/src/api.ts:1511)
`frontend/src/api.ts:1511` calls `PATCH /providers/${encodeURIComponent(id)}/config` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/providers/<p>/config` If this points at an external API, prefix it with `h…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: PATCH /providers/${encodeURIComponent(providerId)}/credentials/${credId} (frontend/src/api.ts:1546)
`frontend/src/api.ts:1546` calls `PATCH /providers/${encodeURIComponent(providerId)}/credentials/${credId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/providers/<p>/credentials/<p>` If this points at an…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /agent/credentials (frontend/src/api.ts:1590)
`frontend/src/api.ts:1590` calls `POST /agent/credentials` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/agent/credentials` If this points at an external API, prefix it with `https://` so the matcher skips…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /agent/credentials/${id}/activate (frontend/src/api.ts:1611)
`frontend/src/api.ts:1611` calls `POST /agent/credentials/${id}/activate` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/agent/credentials/<p>/activate` If this points at an external API, prefix it with `ht…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /agent/credentials/${id}/test (frontend/src/api.ts:1615)
`frontend/src/api.ts:1615` calls `POST /agent/credentials/${id}/test` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/agent/credentials/<p>/test` If this points at an external API, prefix it with `https://` …
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /agent/test-connection (frontend/src/api.ts:1621)
`frontend/src/api.ts:1621` calls `POST /agent/test-connection` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/agent/test-connection` If this points at an external API, prefix it with `https://` so the match…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /api-keys (frontend/src/api.ts:1483)
`frontend/src/api.ts:1483` calls `POST /api-keys` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/api-keys` If this points at an external API, prefix it with `https://` so the matcher skips it.
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /api/v1/auth/token (frontend/src/pages/LoginPage.tsx:46)
`frontend/src/pages/LoginPage.tsx:46` calls `POST /api/v1/auth/token` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/v1/auth/token` If this points at an external API, prefix it with `https://` so the matcher skips i…
wiringdangling-fetchfetch
high 9-layer api wiring conf 1.00 Dangling fetch: POST /assets/from-project (frontend/src/api.ts:1842)
`frontend/src/api.ts:1842` calls `POST /assets/from-project` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/assets/from-project` If this points at an external API, prefix it with `https://` so the matcher s…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /custom-providers (frontend/src/api.ts:1638)
`frontend/src/api.ts:1638` calls `POST /custom-providers` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers` If this points at an external API, prefix it with `https://` so the matcher skips i…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /custom-providers/${id}/discover (frontend/src/api.ts:1666)
`frontend/src/api.ts:1666` calls `POST /custom-providers/${id}/discover` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/<p>/discover` If this points at an external API, prefix it with `http…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /custom-providers/${id}/test (frontend/src/api.ts:1674)
`frontend/src/api.ts:1674` calls `POST /custom-providers/${id}/test` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/<p>/test` If this points at an external API, prefix it with `https://` so…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /custom-providers/discover (frontend/src/api.ts:1662)
`frontend/src/api.ts:1662` calls `POST /custom-providers/discover` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/discover` If this points at an external API, prefix it with `https://` so t…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /custom-providers/discover-anthropic (frontend/src/api.ts:1685)
`frontend/src/api.ts:1685` calls `POST /custom-providers/discover-anthropic` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/discover-anthropic` If this points at an external API, prefix it …
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /custom-providers/test (frontend/src/api.ts:1670)
`frontend/src/api.ts:1670` calls `POST /custom-providers/test` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/test` If this points at an external API, prefix it with `https://` so the match…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /projects (frontend/src/api.ts:381)
`frontend/src/api.ts:381` calls `POST /projects` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects` If this points at an external API, prefix it with `https://` so the matcher skips it.
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/characters (frontend/src/api.ts:532)
`frontend/src/api.ts:532` calls `POST /projects/${encodeURIComponent(projectName)}/characters` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/characters` If this points at an external API, pref…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/export/token?scope=${encodeURIComponent(scope)} (frontend/src/api.ts:435)
`frontend/src/api.ts:435` calls `POST /projects/${encodeURIComponent(projectName)}/export/token?scope=${encodeURIComponent(scope)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/export/token` …
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/generate-overview (frontend/src/api.ts:925)
`frontend/src/api.ts:925` calls `POST /projects/${encodeURIComponent(projectName)}/generate-overview` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/generate-overview` If this points at an exte…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/generate/character/${encodeURIComponent(charName)} (frontend/src/api.ts:1016)
`frontend/src/api.ts:1016` calls `POST /projects/${encodeURIComponent(projectName)}/generate/character/${encodeURIComponent(charName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/generate/c…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/generate/grid/${episode} (frontend/src/api.ts:1734)
`frontend/src/api.ts:1734` calls `POST /projects/${encodeURIComponent(projectName)}/generate/grid/${episode}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/generate/grid/<p>` If this points at…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/generate/prop/${encodeURIComponent(propName)} (frontend/src/api.ts:1064)
`frontend/src/api.ts:1064` calls `POST /projects/${encodeURIComponent(projectName)}/generate/prop/${encodeURIComponent(propName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/generate/prop/<…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/generate/scene/${encodeURIComponent(sceneName)} (frontend/src/api.ts:1040)
`frontend/src/api.ts:1040` calls `POST /projects/${encodeURIComponent(projectName)}/generate/scene/${encodeURIComponent(sceneName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/generate/scen…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/generate/storyboard/${encodeURIComponent(segmentId)} (frontend/src/api.ts:964)
`frontend/src/api.ts:964` calls `POST /projects/${encodeURIComponent(projectName)}/generate/storyboard/${encodeURIComponent(segmentId)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/generate/…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/generate/video/${encodeURIComponent(segmentId)} (frontend/src/api.ts:988)
`frontend/src/api.ts:988` calls `POST /projects/${encodeURIComponent(projectName)}/generate/video/${encodeURIComponent(segmentId)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/generate/video…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/grids/${encodeURIComponent(gridId)}/regenerate (frontend/src/api.ts:1766)
`frontend/src/api.ts:1766` calls `POST /projects/${encodeURIComponent(projectName)}/grids/${encodeURIComponent(gridId)}/regenerate` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/grids/<p>/rege…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/props (frontend/src/api.ts:620)
`frontend/src/api.ts:620` calls `POST /projects/${encodeURIComponent(projectName)}/props` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/props` If this points at an external API, prefix it with…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/reference-videos/episodes/${episode}/units (frontend/src/api.ts:1897)
`frontend/src/api.ts:1897` calls `POST /projects/${encodeURIComponent(projectName)}/reference-videos/episodes/${episode}/units` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/reference-videos/e…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/scenes (frontend/src/api.ts:578)
`frontend/src/api.ts:578` calls `POST /projects/${encodeURIComponent(projectName)}/scenes` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/scenes` If this points at an external API, prefix it wi…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/tasks/cancel-all (frontend/src/api.ts:1152)
`frontend/src/api.ts:1152` calls `POST /projects/${encodeURIComponent(projectName)}/tasks/cancel-all` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/tasks/cancel-all` If this points at an exter…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/versions/${encodeURIComponent(resourceType)}/${encodeURIComponent(resourceId)}/restore/${version} (frontend/src/api.ts:1284)
`frontend/src/api.ts:1284` calls `POST /projects/${encodeURIComponent(projectName)}/versions/${encodeURIComponent(resourceType)}/${encodeURIComponent(resourceId)}/restore/${version}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized pa…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /providers/${encodeURIComponent(id)}/test${params} (frontend/src/api.ts:1520)
`frontend/src/api.ts:1520` calls `POST /providers/${encodeURIComponent(id)}/test${params}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/providers/<p>/test/<p>` If this points at an external API, prefix it…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /providers/${encodeURIComponent(providerId)}/credentials (frontend/src/api.ts:1535)
`frontend/src/api.ts:1535` calls `POST /providers/${encodeURIComponent(providerId)}/credentials` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/providers/<p>/credentials` If this points at an external API, …
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: POST /tasks/${encodeURIComponent(taskId)}/cancel (frontend/src/api.ts:1136)
`frontend/src/api.ts:1136` calls `POST /tasks/${encodeURIComponent(taskId)}/cancel` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/tasks/<p>/cancel` If this points at an external API, prefix it with `https:…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: PUT /custom-providers/${id} (frontend/src/api.ts:1650)
`frontend/src/api.ts:1650` calls `PUT /custom-providers/${id}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/<p>` If this points at an external API, prefix it with `https://` so the matche…
wiringdangling-fetchhelper:request
high 9-layer api wiring conf 1.00 Dangling fetch: PUT /custom-providers/${id}/models (frontend/src/api.ts:1658)
`frontend/src/api.ts:1658` calls `PUT /custom-providers/${id}/models` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/<p>/models` If this points at an external API, prefix it with `https://`…
wiringdangling-fetchhelper:request
high 9-layer security auth conf 1.00 FastAPI DELETE `delete_api_key` without auth dependency — server/routers/api_keys.py:128
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/api_keys.py:128 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI DELETE `delete_asset` without auth dependency — server/routers/assets.py:198
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assets.py:198 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI DELETE `delete_draft` without auth dependency — server/routers/files.py:752
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/files.py:752 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI DELETE `delete_entry` without auth dependency — server/routers/_asset_router_factory.py:157
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/_asset_router_factory.py:157 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI DELETE `delete_project` without auth dependency — server/routers/projects.py:737
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:737 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI DELETE `delete_session` without auth dependency — server/routers/assistant.py:137
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assistant.py:137 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI DELETE `delete_source_file` without auth dependency — server/routers/files.py:518
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/files.py:518 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI DELETE `delete_unit` without auth dependency — server/routers/reference_videos.py:271
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/reference_videos.py:271 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI PATCH `patch_unit` without auth dependency — server/routers/reference_videos.py:233
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/reference_videos.py:233 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI PATCH `update_asset` without auth dependency — server/routers/assets.py:170
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assets.py:170 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI PATCH `update_entry` without auth dependency — server/routers/_asset_router_factory.py:110
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/_asset_router_factory.py:110 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI PATCH `update_overview` without auth dependency — server/routers/projects.py:1027
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:1027 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI PATCH `update_project` without auth dependency — server/routers/projects.py:603
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:603 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI PATCH `update_scene` without auth dependency — server/routers/projects.py:777
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:777 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI PATCH `update_segment` without auth dependency — server/routers/projects.py:855
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:855 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `add_entry` without auth dependency — server/routers/_asset_router_factory.py:79
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/_asset_router_factory.py:79 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `add_unit` without auth dependency — server/routers/reference_videos.py:191
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/reference_videos.py:191 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `agent_chat` without auth dependency — server/routers/agent_chat.py:122
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/agent_chat.py:122 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `answer_question` without auth dependency — server/routers/assistant.py:195
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assistant.py:195 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `apply_to_project` without auth dependency — server/routers/assets.py:390
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assets.py:390 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `cancel_all_queued` without auth dependency — server/routers/tasks.py:186
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/tasks.py:186 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `cancel_task` without auth dependency — server/routers/tasks.py:169
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/tasks.py:169 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `create_api_key` without auth dependency — server/routers/api_keys.py:71
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/api_keys.py:71 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `create_asset` without auth dependency — server/routers/assets.py:113
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assets.py:113 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `create_export_token` without auth dependency — server/routers/projects.py:208
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:208 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `create_project` without auth dependency — server/routers/projects.py:434
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:434 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `discover_models_endpoint` without auth dependency — server/routers/custom_providers.py:560
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/custom_providers.py:560 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `from_project` without auth dependency — server/routers/assets.py:256
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assets.py:256 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `generate_character` without auth dependency — server/routers/generate.py:295
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/generate.py:295 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `generate_grid` without auth dependency — server/routers/grids.py:85
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/grids.py:85 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `generate_overview` without auth dependency — server/routers/projects.py:1009
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:1009 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `generate_prop` without auth dependency — server/routers/generate.py:349
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/generate.py:349 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `generate_scene` without auth dependency — server/routers/generate.py:322
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/generate.py:322 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `generate_storyboard` without auth dependency — server/routers/generate.py:69
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/generate.py:69 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `generate_unit` without auth dependency — server/routers/reference_videos.py:319
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/reference_videos.py:319 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `generate_video` without auth dependency — server/routers/generate.py:140
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/generate.py:140 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `import_project_archive` without auth dependency — server/routers/projects.py:138
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:138 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `interrupt_session` without auth dependency — server/routers/assistant.py:177
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assistant.py:177 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `regenerate_grid` without auth dependency — server/routers/grids.py:266
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/grids.py:266 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `reorder_units` without auth dependency — server/routers/reference_videos.py:293
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/reference_videos.py:293 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `replace_image` without auth dependency — server/routers/assets.py:211
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assets.py:211 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `restore_version` without auth dependency — server/routers/versions.py:165
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/versions.py:165 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `send_message` without auth dependency — server/routers/assistant.py:68
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assistant.py:68 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `set_project_source` without auth dependency — server/routers/projects.py:916
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:916 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `test_connection_draft` without auth dependency — server/routers/agent_config.py:338
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/agent_config.py:338 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `upload_file` without auth dependency — server/routers/files.py:119
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/files.py:119 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `upload_style_image` without auth dependency — server/routers/files.py:783
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/files.py:783 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI PUT `update_draft_content` without auth dependency — server/routers/files.py:694
`@router.put` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/files.py:694 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI PUT `update_source_file` without auth dependency — server/routers/files.py:481
`@router.put` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/files.py:481 authowaspauth.fastapi.unauth_mutation
medium Legacy security auth conf 0.92 [AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation.
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.
authlegacy
high Legacy security auth conf 0.74 [AUC002] Low visible authorization coverage in route inventory: Only 38.1% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence.
Review the access matrix and add explicit framework auth declarations or policy-file exceptions for intentionally public routes.
authlegacy
high Legacy security auth conf 0.66 [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}.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/projects.py:737 authlegacy
high Legacy security auth conf 0.66 [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}}.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/_asset_router_factory.py:157 authlegacy
high Legacy security auth conf 0.66 [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.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/grids.py:227 authlegacy
high Legacy security auth conf 0.66 [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.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/projects.py:354 authlegacy
high Legacy security auth conf 0.66 [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}.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/projects.py:757 authlegacy
high Legacy security auth conf 0.66 [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.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/cost_estimation.py:24 authlegacy
high Legacy security auth conf 0.66 [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}.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/projects.py:603 authlegacy
high Legacy security auth conf 0.66 [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.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/projects.py:1027 authlegacy
high Legacy security auth conf 0.66 [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}.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/projects.py:855 authlegacy
high Legacy security auth conf 0.66 [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.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/projects.py:1009 authlegacy
high Legacy security auth conf 0.68 [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}.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/api_keys.py:128 authlegacy
high Legacy security auth conf 0.68 [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}.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/reference_videos.py:271 authlegacy
high Legacy security auth conf 0.68 [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}.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/assistant.py:137 authlegacy
high Legacy security auth conf 0.68 [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}.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/assets.py:198 authlegacy
high Legacy security auth conf 0.68 [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.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/projects.py:240 authlegacy
high Legacy security auth conf 0.68 [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.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/projects.py:302 authlegacy
high Legacy security auth conf 0.68 [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.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/projects.py:138 authlegacy
high Legacy security auth conf 0.68 [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.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/projects.py:208 authlegacy
high Legacy security auth conf 0.68 [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}.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/versions.py:165 authlegacy
high Legacy security auth conf 0.68 [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.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/assets.py:211 authlegacy
medium Legacy security auth conf 0.72 [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.
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.
authlegacy
medium Legacy quality error_handling conf 1.00 [ERR002] Empty Catch Block: Empty catch blocks hide errors.
Log the error or rethrow it. Use console.error() at minimum.
frontend/src/components/canvas/grid/GridPreviewView.tsx:57 error_handlinglegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
server/agent_runtime/session_actor.py:154 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
server/services/cost_estimation.py:130 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
server/services/cost_estimation.py:64 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
server/services/cost_estimation.py:59 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
server/services/cost_estimation.py:54 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
server/services/diagnostics.py:85 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
server/services/diagnostics.py:42 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
server/services/diagnostics.py:22 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
server/services/generation_tasks.py:848 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
server/services/generation_tasks.py:836 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
server/services/generation_tasks.py:571 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
server/services/generation_tasks.py:558 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
server/routers/projects.py:991 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
agent_runtime_profile/.claude/skills/compose-video/scripts/compose_video.py:723 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
lib/db/repositories/task_repo.py:34 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
lib/i18n/__init__.py:105 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
lib/project_migrations/v0_to_v1_clues_to_scenes_props.py:88 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
scripts/probe_smoke.py:34 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
scripts/generate_style_thumbnails.py:111 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
scripts/verify_reference_video_sdks.py:182 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
lib/generation_queue_client.py:454 qualitylegacy
high Legacy quality quality conf 1.00 ✓ Repobility [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.
Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling.
lib/logging_utils.py:119 qualitylegacy
medium Legacy quality quality conf 1.00 [SEC139] AI-generated migration/route without companion test file: Route or migration touching auth, admin, users, payments, or webhooks — exactly the surfaces that need tests — 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
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 direct…
alembic/versions/802fa55d8aff_sdk_session_id_upgrade_to_unique_not_.py:25 qualitylegacy
medium Legacy quality quality conf 1.00 [SEC139] AI-generated migration/route without companion test file: Route or migration touching auth, admin, users, payments, or webhooks — exactly the surfaces that need tests — 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
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 direct…
alembic/versions/5b87accc10dd_split_default_image_backend_setting_.py:48 qualitylegacy
medium Legacy quality quality conf 1.00 [SEC139] AI-generated migration/route without companion test file: Route or migration touching auth, admin, users, payments, or webhooks — exactly the surfaces that need tests — 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
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 direct…
alembic/versions/3c6d6152046e_rename_seedance_provider_to_ark.py:22 qualitylegacy
high Legacy security auth conf 0.82 Browser storage is used for session token material
Prefer httpOnly, Secure, SameSite cookies or short-lived in-memory tokens. Avoid persistent browser storage for access, refresh, ID, or partner session tokens.
frontend/src/utils/auth.ts:8 authlegacy
high Legacy security auth conf 0.82 Browser storage is used for session token material
Prefer httpOnly, Secure, SameSite cookies or short-lived in-memory tokens. Avoid persistent browser storage for access, refresh, ID, or partner session tokens.
frontend/src/utils/auth.ts:4 authlegacy
medium Legacy cicd docker conf 0.94 Compose service `arcreel` image uses the latest tag
Pin to a maintained version tag or digest and update it deliberately through dependency automation.
deploy/production/docker-compose.yml:17 dockerlegacy
medium Legacy cicd docker conf 0.94 Compose service `arcreel` image uses the latest tag
Pin to a maintained version tag or digest and update it deliberately through dependency automation.
deploy/docker-compose.yml:1 dockerlegacy
medium Legacy cicd docker conf 0.72 Compose service adds dangerous Linux capabilities
Drop all capabilities by default and add only narrowly required capabilities after review.
deploy/production/docker-compose.yml:17 dockerlegacy
medium Legacy cicd docker conf 0.72 Compose service adds dangerous Linux capabilities
Drop all capabilities by default and add only narrowly required capabilities after review.
deploy/docker-compose.yml:1 dockerlegacy
high Legacy cicd docker conf 0.82 Docker final stage has no non-root USER
Add a non-root USER in the final runtime stage after files and permissions are prepared.
Dockerfile:25 dockerlegacy
high Legacy quality quality conf 0.74 Frontend API reference is not matched by discovered backend routes
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.
frontend/src/pages/LoginPage.tsx:46 qualitylegacy
high Legacy quality quality conf 0.74 Frontend API reference is not matched by discovered backend routes
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.
frontend/src/api.ts:252 qualitylegacy
high Legacy quality quality conf 0.74 Frontend API reference is not matched by discovered backend routes
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.
frontend/src/stores/auth-store.ts:32 qualitylegacy
high Legacy quality quality conf 0.80 localStorage write failures are swallowed silently
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.
frontend/src/stores/app-store.ts:223 qualitylegacy
high Legacy quality quality conf 0.80 localStorage write failures are swallowed silently
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.
frontend/src/hooks/useAssistantSession.ts:100 qualitylegacy
medium Legacy quality quality conf 0.78 Public web service has no security.txt
Add /.well-known/security.txt with Contact, Expires, Canonical, Preferred-Languages, and Policy fields. Keep the contact endpoint monitored.
.well-known/security.txt qualitylegacy
high Legacy software dependency conf 0.70 Remote install command pipes network code directly to a shell
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.
docs/getting-started.md:86 dependencylegacy
medium Legacy quality quality conf 0.78 Suspicious implementation file appears unreferenced
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.
alembic/versions/0426_endpoint_refactor.py:1 qualitylegacy
medium 9-layer quality integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — frontend/src/api.ts:350
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
integrityfragile-runtimerobustness
medium 9-layer quality integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — frontend/src/components/shared/ImageModelDualSelect.test.tsx:108
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
integrityfragile-runtimerobustness
medium 9-layer quality integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — frontend/src/stores/auth-store.ts:32
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
integrityfragile-runtimerobustness
medium 9-layer quality integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — frontend/src/stores/config-status-store.test.ts:66
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
integrityfragile-runtimerobustness
medium 9-layer quality integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — frontend/src/stores/config-status-store.ts:41
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
integrityfragile-runtimerobustness
medium 9-layer quality integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — frontend/src/stores/endpoint-catalog-store.test.ts:63
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
integrityfragile-runtimerobustness
medium 9-layer hardware security conf 1.00 Dockerfile runs as root: Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
securitycontainer
medium 9-layer quality integrity conf 1.00 Frontend route `/app/projects/:projectName/settings` has no Link/navigate to it — frontend/src/components/pages/ProjectSettingsPage.test.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
integrityorphan-pagewiring
medium 9-layer quality integrity conf 1.00 Frontend route `/app/projects/:projectName` has no Link/navigate to it — frontend/src/router.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
integrityorphan-pagewiring
medium 9-layer quality integrity conf 1.00 Frontend route `/app` has no Link/navigate to it — frontend/src/router.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
integrityorphan-pagewiring
medium 9-layer quality integrity conf 1.00 Frontend route `/clues` has no Link/navigate to it — frontend/src/components/canvas/StudioCanvasRouter.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
integrityorphan-pagewiring
medium 9-layer quality integrity conf 1.00 Frontend route `/episodes/:episodeId` has no Link/navigate to it — frontend/src/components/canvas/StudioCanvasRouter.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
integrityorphan-pagewiring
medium 9-layer quality integrity conf 1.00 Frontend route `/login` has no Link/navigate to it — frontend/src/router.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
integrityorphan-pagewiring
medium 9-layer quality integrity conf 1.00 Frontend route `/lorebook` has no Link/navigate to it — frontend/src/components/canvas/StudioCanvasRouter.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
integrityorphan-pagewiring
medium 9-layer quality integrity conf 1.00 Frontend route `/source/:filename` has no Link/navigate to it — frontend/src/components/canvas/StudioCanvasRouter.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
integrityorphan-pagewiring
medium 9-layer cicd supply-chain conf 1.00 GitHub Action is tag-pinned rather than SHA-pinned
github/codeql-action/init@v4 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
.github/workflows/codeql.yml:55 supply-chaingithub-actionspinned-dependencies
medium 9-layer cicd supply-chain conf 1.00 GitHub Action is tag-pinned rather than SHA-pinned
github/codeql-action/analyze@v4 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
.github/workflows/codeql.yml:62 supply-chaingithub-actionspinned-dependencies
medium 9-layer cicd supply-chain conf 1.00 GitHub Action is tag-pinned rather than SHA-pinned
astral-sh/setup-uv@v7 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
.github/workflows/release-please.yml:45 supply-chaingithub-actionspinned-dependencies
medium 9-layer cicd supply-chain conf 1.00 GitHub Action is tag-pinned rather than SHA-pinned
docker/metadata-action@v6 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
.github/workflows/docker.yml:44 supply-chaingithub-actionspinned-dependencies
medium 9-layer cicd supply-chain conf 1.00 GitHub Action is tag-pinned rather than SHA-pinned
docker/build-push-action@v7 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
.github/workflows/docker.yml:58 supply-chaingithub-actionspinned-dependencies
medium 9-layer cicd supply-chain conf 1.00 GitHub Action is tag-pinned rather than SHA-pinned
aquasecurity/[email protected] can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
.github/workflows/docker.yml:68 supply-chaingithub-actionspinned-dependencies
medium 9-layer cicd supply-chain conf 1.00 GitHub Action is tag-pinned rather than SHA-pinned
github/codeql-action/upload-sarif@v4 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
.github/workflows/docker.yml:81 supply-chaingithub-actionspinned-dependencies
medium 9-layer cicd supply-chain conf 1.00 GitHub Action is tag-pinned rather than SHA-pinned
docker/build-push-action@v7 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
.github/workflows/docker.yml:87 supply-chaingithub-actionspinned-dependencies
medium 9-layer cicd supply-chain conf 1.00 GitHub Action is tag-pinned rather than SHA-pinned
softprops/action-gh-release@v3 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
.github/workflows/docker.yml:98 supply-chaingithub-actionspinned-dependencies
medium 9-layer cicd supply-chain conf 1.00 GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
.github/workflows/release-please.yml supply-chaingithub-actionsleast-privilege
medium 9-layer cicd supply-chain conf 1.00 GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
.github/workflows/docker.yml supply-chaingithub-actionsleast-privilege
medium 9-layer quality integrity conf 1.00 Network/subprocess call without timeout or try/except — lib/video_backends/gemini.py:311
`urllib.request.urlretrieve(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
integrityfragile-runtimerobustness
low Legacy cicd docker conf 0.72 .dockerignore misses sensitive defaults
Add missing patterns such as .env, .git, private keys, certificates, dependency folders, and local databases.
.dockerignore dockerlegacy
high Legacy cicd docker conf 0.56 Compose service does not declare a runtime user
Set a non-root `user:` in Compose or ensure the final image stage has a non-root USER directive.
deploy/production/docker-compose.yml:17 dockerlegacy
high Legacy cicd docker conf 0.56 Compose service does not declare a runtime user
Set a non-root `user:` in Compose or ensure the final image stage has a non-root USER directive.
deploy/docker-compose.yml:1 dockerlegacy
high Legacy cicd docker conf 0.62 Compose service lacks no-new-privileges hardening
Add `security_opt: ["no-new-privileges:true"]` unless the service has a documented need for privilege escalation.
deploy/production/docker-compose.yml:17 dockerlegacy
high Legacy cicd docker conf 0.62 Compose service lacks no-new-privileges hardening
Add `security_opt: ["no-new-privileges:true"]` unless the service has a documented need for privilege escalation.
deploy/docker-compose.yml:1 dockerlegacy
low Legacy cicd docker conf 0.58 Database password is wired through an environment variable placeholder
Prefer Compose secrets or your platform secret manager with *_FILE variables where the image supports them. Rotate only if a real value was committed.
deploy/production/docker-compose.yml:1 dockerlegacy
low Legacy quality quality conf 0.64 Duplicate top-level symbol appears in a patch-style file
Keep one authoritative implementation, update imports to point at it, and remove or rename the duplicate symbol.
alembic/versions/0426_endpoint_refactor.py:1 qualitylegacy

Showing first 300 of 518. Refine filters or use the legacy findings page for deep search.

For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/dd36d6e3-11f5-44b3-8d7f-dfaaeda3f411/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/dd36d6e3-11f5-44b3-8d7f-dfaaeda3f411/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.