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.
197 of your 323 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.
Upstream (GitHub) caused delay on this scan — not Repobility.
  • GitHub API rate-limited (HTTP 403) — preflight skipped, fell back to direct git clone.
  • Clone from GitHub took 153.68s for a 164.5 MB repo slow.
  • Repobility's analysis ran in 9.71s after the clone landed.

trycua/cua

https://github.com/trycua/cua.git · scanned 2026-05-24 01:23 UTC (2 weeks, 6 days ago) · 10 languages

1475 raw signals (319 security + 1156 graph) 11/13 scanners ran 82nd percentile · Python · large (100-500K LoC) System graph score 45 (higher by 41)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 weeks, 6 days ago · v2 · last Δ +0.1 (diff) · 493 actionable findings from 2 signal sources. 399 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 60.0 0.15 9.00
security_score 100.0 0.25 25.00
testing_score 87.0 0.20 17.40
documentation_score 100.0 0.15 15.00
practices_score 100.0 0.15 15.00
code_quality 45.0 0.10 4.50
Overall 1.00 85.9
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 Quality grade A- (86/100). Dimensions: security 100, maintainability 60. 319 findings (74 security). 306,963 lines analyzed.

Showing 413 of 493 actionable findings. 892 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

high Security checks quality Quality conf 1.00 ✓ Repobility 12 occurrences [MINED107] Missing import: `html` used but not imported: The file uses `html.something(...)` but never imports `html`. This raises NameError at runtime the first time the line executes.
Add `import html` at the top of the file.
12 files, 12 locations
libs/cua-bench/cua_bench/cli/commands/trace.py:324
libs/cua-bench/tasks/winarena_adapter/evaluators/getters_async/file.py:50
libs/cua-bench/tasks/winarena_adapter/evaluators/metrics/gimp.py:150
libs/python/agent/cua_agent/loops/fara/helpers.py:224
libs/python/agent/cua_agent/loops/generic_vlm.py:128
libs/python/agent/cua_agent/loops/qwen35.py:135
libs/python/computer-server/computer_server/diorama/draw.py:165
libs/python/computer-server/computer_server/handlers/macos.py:463
critical Security checks software dependencies conf 0.90 ✓ Repobility [MINED125] GHA script injection via github.event.pull_request.title in run-step: Multi-line `run: |` block interpolates ${{ github.event.pull_request.title }} into shell. PR title/body/branch/comment fields are attacker-controllable.
Capture the field into an env var first; reference $ENV_VAR in shell.
.github/workflows/release-on-merge.yml:29
low Security checks cicd CI/CD security conf 0.35 ✓ Repobility 3 occurrences Workflow references repository secrets in a pull_request workflow
Fork pull_request runs do not receive normal repository secrets on GitHub Actions. Review this as a reliability/intent signal, not as direct fork-secret exfiltration. Raise severity only for pull_request_target or another trusted-context path that runs untrusted PR code with secrets.
2 files, 3 locations
.github/workflows/release-on-merge.yml:21, 22 (2 hits)
.github/workflows/ci-check-links.yml:88
CI/CD securityworkflow secretsGitHub Actions
critical System graph security Secrets conf 1.00 Possible secret in .github/workflows/cd-swift-cua-driver.yml
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
.github/workflows/cd-swift-cua-driver.yml:99
critical System graph security Secrets conf 1.00 Possible secret in .github/workflows/cd-swift-lume.yml
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
.github/workflows/cd-swift-lume.yml:101
critical System graph security Secrets conf 1.00 Possible secret in libs/cua-bench/tasks/winarena_adapter/evaluators/getters/vlc.py
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
libs/cua-bench/tasks/winarena_adapter/evaluators/getters/vlc.py:20
critical System graph security Secrets conf 1.00 Possible secret in libs/cuabot/src/telemetry.ts
Detected pattern matching generic_api_key. Rotate the credential and move to a secret manager.
libs/cuabot/src/telemetry.ts:16
critical System graph security Secrets conf 1.00 Possible secret in libs/lumier/src/lib/utils.sh
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
libs/lumier/src/lib/utils.sh:81
critical System graph security Secrets conf 1.00 Possible secret in libs/python/core/cua_core/telemetry/posthog.py
Detected pattern matching generic_api_key. Rotate the credential and move to a secret manager.
libs/python/core/cua_core/telemetry/posthog.py:20
critical System graph security Secrets conf 1.00 Possible secret in libs/typescript/core/src/telemetry/clients/posthog.ts
Detected pattern matching generic_api_key. Rotate the credential and move to a secret manager.
libs/typescript/core/src/telemetry/clients/posthog.ts:18
low Security checks quality Quality conf 1.00 ✓ Repobility 3 occurrences [MINED012] Curl Pipe Bash: curl ... | sh / bash — runs unverified network code.
Review and fix per the pattern semantics. See CWE-494 / A08:2021 for context.
3 files, 3 locations
scripts/install-cli.sh:64
scripts/playground-docker.sh:242
scripts/playground.sh:110
high Security checks quality Quality conf 1.00 ✓ Repobility 19 occurrences [MINED108] `self.normalize_url` used but never assigned in __init__: Method `extract_links` of class `CuaDocsCrawler` reads `self.normalize_url`, 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.normalize_url = <default>` in __init__, or add a class-level default.
2 files, 19 locations
libs/cuabot/src/mcp/overlay-cursor.py:215, 218, 223, 277, 377, 378, 407, 435, +2 more (10 hits)
docs/scripts/crawl_docs.py:97, 98, 132, 137, 151, 193, 194, 216, +1 more (9 hits)
high Security checks quality Quality conf 1.00 ✓ Repobility 20 occurrences [MINED110] Blocking call `input` inside async function `_execute_simulated_interactive`: `input` is a synchronous (blocking) call. When invoked inside an `async def` it stalls the event loop, preventing every other coroutine in the process from making progress.
Use the async equivalent: `aiohttp` instead of `requests`, `asyncio.sleep` instead of `time.sleep`, `aiofiles` instead of `open`.
11 files, 20 locations
libs/python/cua-cli/cua_cli/commands/skills.py:545, 548, 565, 568 (4 hits)
libs/cua-bench/cua_bench/cli/commands/interact.py:234, 356, 378 (3 hits)
libs/python/agent/cua_agent/cli.py:325, 335, 351 (3 hits)
libs/python/computer-server/computer_server/handlers/macos.py:1188, 1226 (2 hits)
tests/cold_start_benchmark.py:107, 110 (2 hits)
libs/cua-bench/cua_bench/scripts/benchmark_workers.py:241
libs/cua-bench/tasks/winarena_adapter/setup_controller.py:88
libs/python/agent/benchmarks/interactive.py:119
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI DELETE /pty/{pid} has no auth: Handler `pty_kill` is registered with router/app.delete(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
libs/python/computer-server/computer_server/main.py:800
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /cmd has no auth: Handler `cmd_endpoint` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
libs/python/computer-server/computer_server/main.py:614
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /complete/{call_id} has no auth: Handler `complete_call` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
libs/python/agent/cua_agent/human_tool/server.py:214
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /fail/{call_id} has no auth: Handler `fail_call` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
libs/python/agent/cua_agent/human_tool/server.py:226
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /playwright_exec has no auth: Handler `playwright_exec_endpoint` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
libs/python/computer-server/computer_server/main.py:1279
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /pty has no auth: Handler `pty_create` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
libs/python/computer-server/computer_server/main.py:747
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /pty/{pid}/resize has no auth: Handler `pty_resize` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
libs/python/computer-server/computer_server/main.py:833
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /pty/{pid}/stdin has no auth: Handler `pty_stdin` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
libs/python/computer-server/computer_server/main.py:815
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /queue has no auth: Handler `queue_completion` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
libs/python/agent/cua_agent/human_tool/server.py:191
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /reset has no auth: Handler `reset` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
libs/cua-bench/cua_bench/workers/worker_server.py:307
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /responses has no auth: Handler `agent_response_endpoint` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
libs/python/computer-server/computer_server/main.py:969
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /responses has no auth: Handler `responses_endpoint` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
libs/python/agent/cua_agent/playground/server.py:73
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /shutdown has no auth: Handler `shutdown` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
libs/cua-bench/cua_bench/workers/worker_server.py:434
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /step has no auth: Handler `step` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
libs/cua-bench/cua_bench/workers/worker_server.py:364
high Security checks software dependencies conf 0.90 ✓ Repobility 17 occurrences [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).
12 files, 15 locations
docs/scripts/docs-mcp-server/Dockerfile:2, 25 (2 hits)
libs/qemu-docker/android/Dockerfile:4, 33 (2 hits)
libs/qemu-docker/android/dev.Dockerfile:9, 38 (2 hits)
Dockerfile:1
libs/cua-bench/Dockerfile:2
libs/cua-bench/cua_bench/cli/templates/agent/Dockerfile.template:1
libs/cua-bench/cua_bench/templates/agent/Dockerfile.template:2
libs/cuabot/Dockerfile:2
high Security checks software dependencies conf 0.90 ✓ Repobility 4 occurrences [MINED131] pre-commit hook `https://github.com/pre-commit/mirrors-prettier` pinned to mutable rev `v3.0.0`: `.pre-commit-config.yaml` references `https://github.com/pre-commit/mirrors-prettier` at `rev: v3.0.0`. If `{rev}` is a branch or version tag, the repo owner can push new code there and `pre-commit install --install-hooks` will fetch it on every developer's machine.
Pin to a commit SHA: `rev: <40-char-sha>` and bump it through `pre-commit autoupdate` (which writes to PRs that are reviewed).
lines 2, 20, 28, 35
.pre-commit-config.yaml:2, 20, 28, 35 (4 hits)
high Security checks cicd CI/CD security conf 0.95 Docker final stage runs as root
Create an application user after package installation and switch to it with USER appuser or USER 10001.
libs/xfce/Dockerfile.dev:187 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.95 Docker final stage runs as root
Create an application user after package installation and switch to it with USER appuser or USER 10001.
libs/xfce/Dockerfile:187 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.92 5 occurrences Dockerfile pipes a remote script into a shell
Download the artifact, verify its checksum or signature, pin the version, and then execute it.
3 files, 5 locations
libs/cuabot/Dockerfile:143, 146, 153 (3 hits)
libs/cua-bench/Dockerfile:5
libs/qemu-docker/android/Dockerfile:59
CI/CD securitycontainers
high System graph quality Integrity conf 1.00 Blocking `requests.get(...)` inside `async def _download_setup` — libs/cua-bench/tasks/winarena_adapter/setup_controller.py:88
Sync I/O inside an async function blocks the event loop. While `requests.get(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_th…
libs/cua-bench/tasks/winarena_adapter/setup_controller.py:88 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `time.sleep(...)` inside `async def _run` — libs/cua-bench/cua_bench/scripts/benchmark_workers.py:241
Sync I/O inside an async function blocks the event loop. While `time.sleep(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_thre…
libs/cua-bench/cua_bench/scripts/benchmark_workers.py:241 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `time.sleep(...)` inside `async def main` — libs/python/computer-server/computer_server/diorama/diorama.py:540
Sync I/O inside an async function blocks the event loop. While `time.sleep(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_thre…
libs/python/computer-server/computer_server/diorama/diorama.py:540 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `time.sleep(...)` inside `async def resume` — libs/python/cua-sandbox/cua_sandbox/runtime/qemu.py:693
Sync I/O inside an async function blocks the event loop. While `time.sleep(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_thre…
libs/python/cua-sandbox/cua_sandbox/runtime/qemu.py:693 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `time.sleep(...)` inside `async def start` — libs/python/cua-sandbox/cua_sandbox/runtime/qemu.py:374
Sync I/O inside an async function blocks the event loop. While `time.sleep(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_thre…
libs/python/cua-sandbox/cua_sandbox/runtime/qemu.py:374 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `urllib.request.urlopen(...)` inside `async def _execute_native_interactive` — libs/cua-bench/cua_bench/cli/commands/interact.py:356
Sync I/O inside an async function blocks the event loop. While `urllib.request.urlopen(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asy…
libs/cua-bench/cua_bench/cli/commands/interact.py:356 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `urllib.request.urlretrieve(...)` inside `async def _install_apk` — libs/python/cua-sandbox/cua_sandbox/transport/cloud.py:519
Sync I/O inside an async function blocks the event loop. While `urllib.request.urlretrieve(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await…
libs/python/cua-sandbox/cua_sandbox/transport/cloud.py:519 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `urllib.request.urlretrieve(...)` inside `async def _resolve_apk` — libs/python/cua-sandbox/cua_sandbox/runtime/android_emulator.py:782
Sync I/O inside an async function blocks the event loop. While `urllib.request.urlretrieve(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await…
libs/python/cua-sandbox/cua_sandbox/runtime/android_emulator.py:782 Sync io in asyncPerformance
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /v1/playground/chats/${chatId} (libs/typescript/playground/src/adapters/cloud.ts:86)
`libs/typescript/playground/src/adapters/cloud.ts:86` calls `DELETE /v1/playground/chats/${chatId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/playground/chats/<p>` If this points at an external API, prefix it w…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/chat/${sessionId}/export (libs/typescript/playground/src/components/modals/ExportTrajectoryModal.tsx:45)
`libs/typescript/playground/src/components/modals/ExportTrajectoryModal.tsx:45` calls `GET /api/chat/${sessionId}/export` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/chat/<p>/export` If this points at an external…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/chat/${sessionId}/export (libs/typescript/playground/src/components/modals/ReplayTrajectoryModal.tsx:95)
`libs/typescript/playground/src/components/modals/ReplayTrajectoryModal.tsx:95` calls `GET /api/chat/${sessionId}/export` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/chat/<p>/export` If this points at an external…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /v1/vms/${computerId}/health (libs/typescript/playground/src/adapters/cloud.ts:198)
`libs/typescript/playground/src/adapters/cloud.ts:198` calls `GET /v1/vms/${computerId}/health` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/vms/<p>/health` If this points at an external API, prefix it with `https…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://localhost:${port}/status (libs/cuabot/src/client.ts:188)
`libs/cuabot/src/client.ts:188` calls `GET http://localhost:${port}/status` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/localhost:/<p>/status` If this points at an external API, prefix it with `https://` so…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://localhost:${port}/status (libs/cuabot/src/client.ts:253)
`libs/cuabot/src/client.ts:253` calls `GET http://localhost:${port}/status` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/localhost:/<p>/status` If this points at an external API, prefix it with `https://` so…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/chat/${sessionId}/export (libs/typescript/playground/src/components/modals/ExportTrajectoryModal.tsx:93)
`libs/typescript/playground/src/components/modals/ExportTrajectoryModal.tsx:93` calls `POST /api/chat/${sessionId}/export` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/chat/<p>/export` If this points at an externa…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/chat/${sessionId}/export (libs/typescript/playground/src/components/modals/ReplayTrajectoryModal.tsx:142)
`libs/typescript/playground/src/components/modals/ReplayTrajectoryModal.tsx:142` calls `POST /api/chat/${sessionId}/export` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/chat/<p>/export` If this points at an extern…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST http://localhost:${port}/stop (libs/cuabot/src/cuabotd.ts:1208)
`libs/cuabot/src/cuabotd.ts:1208` calls `POST http://localhost:${port}/stop` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/localhost:/<p>/stop` If this points at an external API, prefix it with `https://` so …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST http://localhost:${port}/telemetry (libs/cuabot/src/telemetry.ts:291)
`libs/cuabot/src/telemetry.ts:291` calls `POST http://localhost:${port}/telemetry` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/localhost:/<p>/telemetry` If this points at an external API, prefix it with `ht…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.anthropic.com/v1/messages (libs/typescript/cua-cli/src/commands/skills.ts:358)
`libs/typescript/cua-cli/src/commands/skills.ts:358` calls `POST https://api.anthropic.com/v1/messages` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.anthropic.com/v1/messages` If this points at an exter…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.openai.com/v1/chat/completions (libs/typescript/cua-cli/src/commands/skills.ts:472)
`libs/typescript/cua-cli/src/commands/skills.ts:472` calls `POST https://api.openai.com/v1/chat/completions` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.openai.com/v1/chat/completions` If this points a…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: PUT /v1/playground/chats/${chatId}/messages (libs/typescript/playground/src/adapters/cloud.ts:90)
`libs/typescript/playground/src/adapters/cloud.ts:90` calls `PUT /v1/playground/chats/${chatId}/messages` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/playground/chats/<p>/messages` If this points at an external A…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: PUT /v1/playground/settings/${key} (libs/typescript/playground/src/adapters/cloud.ts:109)
`libs/typescript/playground/src/adapters/cloud.ts:109` calls `PUT /v1/playground/settings/${key}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/playground/settings/<p>` If this points at an external API, prefix it …
Dangling fetchFetch
high System graph hardware Supply chain conf 1.00 3 occurrences Dockerfile pipes a remote installer into a shell
Executing downloaded code during image build gives the remote endpoint build-time code execution. Prefer pinned packages or verify downloaded installers by checksum/signature.
2 files, 3 locations
libs/cuabot/Dockerfile:143, 146 (2 hits)
libs/qemu-docker/android/Dockerfile:59
containersRemote installer
high System graph security auth conf 1.00 FastAPI DELETE `pty_kill` without auth dependency — libs/python/computer-server/computer_server/main.py:799
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
libs/python/computer-server/computer_server/main.py:799 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `agent_response_endpoint` without auth dependency — libs/python/computer-server/computer_server/main.py:968
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
libs/python/computer-server/computer_server/main.py:968 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `cmd_endpoint` without auth dependency — libs/python/computer-server/computer_server/main.py:613
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
libs/python/computer-server/computer_server/main.py:613 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `complete_call` without auth dependency — libs/python/agent/cua_agent/human_tool/server.py:213
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
libs/python/agent/cua_agent/human_tool/server.py:213 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `fail_call` without auth dependency — libs/python/agent/cua_agent/human_tool/server.py:225
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
libs/python/agent/cua_agent/human_tool/server.py:225 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `playwright_exec_endpoint` without auth dependency — libs/python/computer-server/computer_server/main.py:1278
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
libs/python/computer-server/computer_server/main.py:1278 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `pty_create` without auth dependency — libs/python/computer-server/computer_server/main.py:746
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
libs/python/computer-server/computer_server/main.py:746 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `pty_resize` without auth dependency — libs/python/computer-server/computer_server/main.py:832
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
libs/python/computer-server/computer_server/main.py:832 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `pty_stdin` without auth dependency — libs/python/computer-server/computer_server/main.py:814
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
libs/python/computer-server/computer_server/main.py:814 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `queue_completion` without auth dependency — libs/python/agent/cua_agent/human_tool/server.py:190
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
libs/python/agent/cua_agent/human_tool/server.py:190 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `reset` without auth dependency — libs/cua-bench/cua_bench/workers/worker_server.py:306
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
libs/cua-bench/cua_bench/workers/worker_server.py:306 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `shutdown` without auth dependency — libs/cua-bench/cua_bench/workers/worker_server.py:433
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
libs/cua-bench/cua_bench/workers/worker_server.py:433 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `step` without auth dependency — libs/cua-bench/cua_bench/workers/worker_server.py:363
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
libs/cua-bench/cua_bench/workers/worker_server.py:363 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 Flask mutation route `activate_window` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1476
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1476 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `are_all_images_tagged` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1925
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1925 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `change_wallpaper` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1363
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1363 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `clear_task_files` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1573
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1573 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `close_all_windows` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1623
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1623 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `close_window` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1659
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1659 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `create_file` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1100
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1100 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `create_folder` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1083
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1083 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `download_file` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1411
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1411 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `end_recording` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1746
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1746 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `execute_command_windows` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:180
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:180 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `execute_command` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:211
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:211 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `execute_command` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:212
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:212 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `get_are_files_sorted_by_modified_time` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1841
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1841 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `get_check_if_timer_started` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1976
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1976 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `get_check_if_world_clock_exists` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:2007
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:2007 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `get_desktop_path` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1045
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1045 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `get_directory_tree` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1286
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1286 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `get_documents_path` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1064
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1064 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `get_file_exists` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1172
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1172 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `get_file_explorer_is_details_view` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1192
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1192 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `get_file` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1325
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1325 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `get_folder_exists` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1146
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1146 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `get_library_folders` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1959
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1959 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `get_screen_size` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1005
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1005 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `get_wallpaper` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1228
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1228 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `get_window_size` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1018
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1018 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `is_directory_read_only_for_user` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1901
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1901 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `launch_app` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:290
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:290 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `open_file` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1448
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1448 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `recycle_file` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1134
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1134 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `revert_to_snapshot` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1813
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1813 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `save_state` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1778
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1778 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `shutdown_endpoint` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:276
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:276 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `start_recording` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1706
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1706 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `update_computer` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:138
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:138 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `upload_file` without `@login_required` — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1341
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:1341 securityAuth flask unauth route
high System graph security security conf 1.00 Insecure pattern 'eval_used' in libs/cua-bench/tasks/winarena_adapter/evaluators/getters/fileexplorer.py:96
Found a known-risky pattern (eval_used). Review and replace if possible.
libs/cua-bench/tasks/winarena_adapter/evaluators/getters/fileexplorer.py:96 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in libs/cua-bench/tasks/winarena_adapter/evaluators/metrics/basic_os.py:4
Found a known-risky pattern (eval_used). Review and replace if possible.
libs/cua-bench/tasks/winarena_adapter/evaluators/metrics/basic_os.py:4 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in libs/cua-driver-rs/crates/platform-windows/src/tools/page_bookmark.rs:165
Found a known-risky pattern (eval_used). Review and replace if possible.
libs/cua-driver-rs/crates/platform-windows/src/tools/page_bookmark.rs:165 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in libs/python/agent/cua_agent/adapters/models/internvl.py:54
Found a known-risky pattern (eval_used). Review and replace if possible.
libs/python/agent/cua_agent/adapters/models/internvl.py:54 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in libs/python/agent/cua_agent/loops/uitars.py:306
Found a known-risky pattern (eval_used). Review and replace if possible.
libs/python/agent/cua_agent/loops/uitars.py:306 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in scripts/docs-generators/extract_python_docs.py:202
Found a known-risky pattern (eval_used). Review and replace if possible.
scripts/docs-generators/extract_python_docs.py:202 Eval used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in libs/cua-bench/cua_bench/computers/webtop.py:301
Found a known-risky pattern (exec_used). Review and replace if possible.
libs/cua-bench/cua_bench/computers/webtop.py:301 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:194
Found a known-risky pattern (exec_used). Review and replace if possible.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:194 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in libs/cuabot/src/cuabotd.ts:172
Found a known-risky pattern (exec_used). Review and replace if possible.
libs/cuabot/src/cuabotd.ts:172 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in libs/cuabot/src/onboarding.tsx:401
Found a known-risky pattern (exec_used). Review and replace if possible.
libs/cuabot/src/onboarding.tsx:401 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in libs/cuabot/src/utils.ts:262
Found a known-risky pattern (exec_used). Review and replace if possible.
libs/cuabot/src/utils.ts:262 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in libs/python/computer/computer/computer.py:1404
Found a known-risky pattern (exec_used). Review and replace if possible.
libs/python/computer/computer/computer.py:1404 Exec used
medium Security checks 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.
high Security checks security auth conf 0.74 [AUC002] Low visible authorization coverage in route inventory: Only 33.3% 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.
high Security checks 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 /cron/prompt-digest/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
docs/src/app/api/cron/prompt-digest/route.ts:6
high Security checks 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 /llms.mdx/::...slug.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
docs/src/app/llms.mdx/[[...slug]]/route.ts:8
high Security checks 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 /llms.txt.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
docs/src/app/llms.txt/route.ts:7
medium Security checks software dependencies conf 0.90 ✓ Repobility 8 occurrences [MINED124] requirements.txt: `requests` has no version pin: Unpinned pip requirement means every fresh install may resolve a different version. Newer releases can introduce malicious code (typosquats, account compromises). Reproducible installs need exact pins.
Replace `requests` with `requests==<version>` and manage upgrades through PRs / Dependabot.
lines 5, 6, 7, 8, 9, 10, 11, 12
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/requirements.txt:5, 6, 7, 8, 9, 10, 11, 12 (8 hits)
high Security checks quality Quality conf 0.72 Agent control bridge may listen on a network interface without visible auth
Bind local agent bridges to 127.0.0.1 by default. If remote access is required, require a bearer token or mTLS, enforce origin/CSRF checks for browser clients, and document the threat model.
docs/scripts/docs-mcp-server/main.py:15
low Security checks quality Error handling conf 0.55 ✓ Repobility 22 occurrences Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
9 files, 22 locations
docs/scripts/modal_app.py:303, 1091, 1293, 1588, 1688, 1699, 1711, 1722 (8 hits)
docs/scripts/docs-mcp-server/main.py:100, 179, 190, 202, 213 (5 hits)
demo/1_fleet_throughput.py:50, 106 (2 hits)
tests/android_rps_benchmark.py:191, 424 (2 hits)
docs/scripts/crawl_docs.py:160
scripts/docs-generators/extract_python_docs.py:48
tests/agent_loop_testing/agent_test_uitars.py:182
tests/android_rps_benchmark_local.py:184
Error handlingquality
medium Security checks cicd CI/CD security conf 0.86 Database dump or local database file is included in Docker build context
Move database dumps outside the Docker build context or exclude them with .dockerignore. Keep backup and restore artifacts in private object storage or a dedicated backup workflow.
.dockerignore CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.82 6 occurrences Docker final stage has no non-root USER
Add a non-root USER in the final runtime stage after files and permissions are prepared.
6 files, 6 locations
Dockerfile:1
libs/cua-bench/cua_bench/cli/templates/agent/Dockerfile.template:1
libs/cua-bench/cua_bench/templates/agent/Dockerfile.template:2
libs/lumier/Dockerfile:2
libs/qemu-docker/linux/Dockerfile:1
libs/qemu-docker/windows/Dockerfile:14
CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.94 Dockerfile base image uses the latest tag
Pin to a maintained version tag or digest and update it deliberately through dependency automation.
libs/qemu-docker/windows/Dockerfile:14 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.94 Dockerfile base image uses the latest tag
Pin to a maintained version tag or digest and update it deliberately through dependency automation.
libs/qemu-docker/linux/Dockerfile:1 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.76 Dockerfile copies broad context with incomplete .dockerignore
Tighten .dockerignore or replace COPY . with explicit COPY statements.
libs/cua-bench/cua_bench/cli/templates/agent/Dockerfile.template:15 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.76 Dockerfile copies broad context with incomplete .dockerignore
Tighten .dockerignore or replace COPY . with explicit COPY statements.
Dockerfile:33 CI/CD securitycontainers
high Security checks quality Quality conf 0.74 15 occurrences 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.
5 files, 15 locations
libs/cua-bench/cua_bench/www/environment-detail.html:391, 420, 457, 500, 548, 715, 751 (7 hits)
libs/cua-bench/cua_bench/www/environments.html:244, 394, 429 (3 hits)
docs/src/app/(docs)/[...slug]/page.tsx:230, 231 (2 hits)
docs/src/app/api/copilotkit/route.ts:509, 519 (2 hits)
docs/src/lib/copilotkit-fetch-patch.ts:61
high Security checks software dependencies conf 0.70 9 occurrences 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.
9 files, 9 locations
.github/workflows/cd-ts-cli.yml:135
blog/introducing-cua-cli.md:49
docs/content/docs/cua-driver/reference/cli-reference.mdx:21
docs/content/docs/cua/guide/get-started/set-up-sandbox.mdx:38
docs/content/docs/cua/guide/sandbox/images.mdx:134
docs/content/docs/cua/reference/mcp-server/installation.mdx:22
docs/content/docs/lume/examples/claude-code/sandbox.mdx:70
docs/content/docs/lume/reference/http-api.mdx:22
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — docs/src/app/layout.tsx:39
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — docs/src/components/mermaid.tsx:43
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — docs/src/components/doc-actions-menu.tsx:23
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — docs/src/lib/posthog-query.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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — docs/src/lib/slack-reporter.ts:72
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — libs/cuabot/src/client.ts:68
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — libs/typescript/agent/src/client.ts:148
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — libs/typescript/cua-cli/src/auth.ts:25
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — libs/typescript/cua-cli/src/commands/image.ts:245
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — libs/typescript/cua-cli/src/commands/skills.ts:358
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — libs/typescript/cua-cli/src/http.ts:21
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — libs/typescript/playground/src/adapters/cloud.ts:109
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — libs/typescript/playground/src/components/modals/ReplayTrajectoryModal.tsx:95
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — libs/typescript/playground/src/components/TrajectoryViewer/index.tsx:918
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — scripts/docs-generators/lume.ts:700
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph hardware Supply chain conf 1.00 Docker base image uses a mutable or implicit tag: trycua/qemu-local:latest
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
libs/qemu-docker/linux/Dockerfile:1 containersPinned dependencies
medium System graph hardware Supply chain conf 1.00 Docker base image uses a mutable or implicit tag: trycua/windows-local:latest
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
libs/qemu-docker/windows/Dockerfile:13 containersPinned dependencies
medium System graph 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.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: libs/kasm/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: libs/lumier/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: libs/qemu-docker/android/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: libs/qemu-docker/linux/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: libs/qemu-docker/windows/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: libs/xfce/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph cicd CI/CD security conf 1.00 53 occurrences GitHub Action is tag-pinned rather than SHA-pinned
softprops/action-gh-release@v2 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
12 files, 45 locations
.github/workflows/docker-reusable-publish.yml:66, 69, 77, 89, 99, 114, 127, 172, +3 more (11 hits)
.github/workflows/docs-mcp-server-build-push.yml:56, 63, 66, 74, 99, 111, 152, 158, +2 more (10 hits)
.github/workflows/claude-auto-fix.yml:159, 196 (4 hits)
.github/workflows/ts-reusable-build.yml:32, 38 (4 hits)
.github/workflows/ts-reusable-publish.yml:46, 52, 76 (3 hits)
.github/workflows/ci-check-docs-links.yml:24, 58 (2 hits)
.github/workflows/ci-check-links.yml:19, 86 (2 hits)
.github/workflows/ci-cold-start-benchmark.yml:14, 34 (2 hits)
CI/CD securitySupply chainGitHub Actions
medium System graph cicd CI/CD security conf 1.00 26 occurrences 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.
12 files, 12 locations
.github/workflows/cd-py-agent.yml
.github/workflows/cd-py-auto.yml
.github/workflows/cd-py-bench-ui.yml
.github/workflows/cd-py-bench.yml
.github/workflows/cd-py-cli.yml
.github/workflows/cd-py-computer-server.yml
.github/workflows/cd-py-computer.yml
.github/workflows/cd-py-core.yml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in docs/src/app/layout.tsx:39
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
docs/src/app/layout.tsx:39 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in docs/src/components/mermaid.tsx:43
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
docs/src/components/mermaid.tsx:43 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:297
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:297 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in libs/python/computer-server/computer_server/handlers/generic.py:115
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
libs/python/computer-server/computer_server/handlers/generic.py:115 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in libs/python/computer/computer/providers/lume_api.py:77
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
libs/python/computer/computer/providers/lume_api.py:77 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in libs/python/cua-auto/cua_auto/shell.py:38
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
libs/python/cua-auto/cua_auto/shell.py:38 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in libs/python/cua-auto/cua_auto/window.py:187
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
libs/python/cua-auto/cua_auto/window.py:187 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in libs/python/cua-cli/cua_cli/auth/browser.py:95
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
libs/python/cua-cli/cua_cli/auth/browser.py:95 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in libs/python/computer/computer/ui/gradio/app.py:497
Found a known-risky pattern (weak_hash). Review and replace if possible.
libs/python/computer/computer/ui/gradio/app.py:497 Weak hash
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — docs/scripts/modal_app.py:1040
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/cua-bench/cua_bench/batch/gcp.py:122
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/cua-bench/cua_bench/cli/commands/agent.py:149
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/cua-bench/cua_bench/cli/commands/image.py:237
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/cua-bench/cua_bench/cli/commands/run.py:1348
`subprocess.Popen(...)` 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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/cua-bench/cua_bench/cli/commands/task.py:527
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/cua-bench/cua_bench/runner/docker_utils.py:57
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/cua-bench/cua_bench/sessions/providers/local_environment.py:388
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/cua-bench/cua_bench/trainer/off_policy/tinker/rollout.py:71
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/cua-bench/tasks/winarena_adapter/cli.py:65
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/cua-bench/tasks/winarena_adapter/evaluators/getters/file.py:63
`requests.get(...)` 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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/cua-bench/tasks/winarena_adapter/evaluators/getters/general.py:19
`requests.post(...)` 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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/cua-bench/tasks/winarena_adapter/evaluators/getters/vlc.py:27
`requests.get(...)` 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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:320
`subprocess.Popen(...)` 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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/cua-driver/Tests/integration/driver_client.py:158
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/computer-server/computer_server/handlers/generic.py:98
`subprocess.Popen(...)` 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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/computer-server/computer_server/utils/helpers.py:42
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/computer-server/computer_server/utils/wallpaper.py:143
`subprocess.Popen(...)` 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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/computer/computer/computer.py:1516
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/computer/computer/providers/docker/provider.py:290
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/computer/computer/providers/lumier/provider.py:170
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/computer/computer/providers/winsandbox/provider.py:494
`subprocess.Popen(...)` 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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/cua-auto/cua_auto/window.py:167
`subprocess.Popen(...)` 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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/cua-cli/cua_cli/auth/browser.py:97
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/cua-cli/cua_cli/commands/local_image.py:81
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/cua-cli/cua_cli/commands/skills.py:665
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/cua-cli/cua_cli/commands/trajectory.py:191
`subprocess.Popen(...)` 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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/cua-cli/cua_cli/utils/docker.py:99
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/cua-sandbox-apps/cua_sandbox_apps/cli.py:638
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/cua-sandbox/cua_sandbox/builder/overlay.py:54
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/cua-sandbox/cua_sandbox/image.py:61
`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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/cua-sandbox/cua_sandbox/registry/qemu_builder.py:102
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/cua-sandbox/cua_sandbox/runtime/android_emulator.py:116
`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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/cua-sandbox/cua_sandbox/runtime/docker.py:155
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/cua-sandbox/cua_sandbox/runtime/hyperv.py:52
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/cua-sandbox/cua_sandbox/runtime/qemu.py:137
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/cua-sandbox/cua_sandbox/sandbox.py:807
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/cua-sandbox/cua_sandbox/transport/adb.py:42
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/cua-sandbox/cua_sandbox/transport/cloud.py:519
`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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — libs/python/mcp-server/build-extension.py:129
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph network Security conf 1.00 Privileged port 1000 in use
Port 1000 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
libs/kasm/src/ubuntu/install/firefox/install_firefox.sh Ports
low Security checks cicd CI/CD security conf 0.72 .dockerignore misses sensitive defaults
Add missing patterns such as .env, .git, private keys, certificates, dependency folders, and local databases.
.dockerignore CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.72 18 occurrences Dockerfile installs recommended OS packages
Add `--no-install-recommends` and explicitly list only packages the image needs.
6 files, 18 locations
libs/cuabot/Dockerfile:11, 26, 36, 42, 106, 122 (6 hits)
libs/xfce/Dockerfile:19, 79, 108, 131 (4 hits)
libs/xfce/Dockerfile.dev:19, 79, 106, 131 (4 hits)
libs/qemu-docker/android/Dockerfile:6, 43 (2 hits)
libs/kasm/Dockerfile:12
libs/lumier/Dockerfile:18
CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.72 13 occurrences Dockerfile keeps pip download cache
Use `pip install --no-cache-dir ...` in container builds.
4 files, 13 locations
libs/kasm/Dockerfile:52, 55, 58, 68 (4 hits)
libs/xfce/Dockerfile:79, 128, 143, 147 (4 hits)
libs/xfce/Dockerfile.dev:79, 127, 143, 147 (4 hits)
docs/scripts/docs-mcp-server/Dockerfile:19
CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.74 4 occurrences Dockerfile leaves apt package indexes in the image layer
End the apt install layer with `rm -rf /var/lib/apt/lists/*`.
2 files, 4 locations
libs/cuabot/Dockerfile:11, 26, 36 (3 hits)
libs/qemu-docker/android/Dockerfile:6
CI/CD securitycontainers
low Security checks quality Quality conf 0.60 30 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
12 files, 21 locations
libs/cua-bench/cua_bench/agents/qwen3vl_agent.py:5, 45, 130 (3 hits)
libs/cua-bench/cua_bench/computers/webtop.py:159, 275, 276 (3 hits)
libs/cua-bench/cua_bench/agents/qwen35_agent.py:5, 45 (2 hits)
libs/cua-bench/cua_bench/workers/worker_server.py:18, 19 (2 hits)
libs/cua-bench/datasets/cua-bench-basic/color-picker/main.py:18, 19 (2 hits)
libs/cua-bench/datasets/cua-bench-basic/right-click-menu/main.py:30, 31 (2 hits)
libs/cua-bench/datasets/cua-bench-basic/select-dropdown/main.py:18, 19 (2 hits)
libs/cua-bench/cua_bench/actions.py:4
duplicationquality
low System graph quality Maintenance conf 1.00 53 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
low System graph quality Integrity conf 1.00 92 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `ANDROID_GRPC_PORT`, `ANTHROPIC_API_KEY`, `APPDATA`, `AWS_REGION`, `AWS_SESSION_TOKEN`, `AZURE_API_KEY`, `AZURE_ENDPOINT`, `BATCH_TASK_COUNT` + 84 more. Add them (with a placeholder/comment) to .env.example so onboarding doesn't break.
config drift
low System graph hardware Coverage conf 1.00 Containers defined but no K8s/orchestration manifest found
Repo has Dockerfiles/compose but no Kubernetes/Nomad manifests. If the target deployment is K8s, the manifests may live in a separate ops repo.
Deployment
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: budtmo/docker-android:emulator_11.0
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
libs/qemu-docker/android/Dockerfile:33 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: debian:bullseye-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
libs/lumier/Dockerfile:2 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: eclipse-temurin:17-jdk
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
libs/qemu-docker/android/Dockerfile:4 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: kasmweb/core-ubuntu-jammy:1.17.0
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
libs/kasm/Dockerfile:1 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 4 occurrences Docker base image is tag-pinned but not digest-pinned: python:3.12-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
3 files, 4 locations
docs/scripts/docs-mcp-server/Dockerfile:2, 25 (2 hits)
Dockerfile:1
libs/cua-bench/Dockerfile:2
containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: ubuntu:22.04
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
libs/xfce/Dockerfile:3 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: ubuntu:22.04
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
libs/cuabot/Dockerfile:2 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: docs/source.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: docs/src/app/api/search/route.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: docs/src/app/layout.config.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/cua-bench/cua_bench/main.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/cua-bench/tasks/winarena_adapter/__main__.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/python/agent/cua_agent/__main__.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/python/agent/cua_agent/ui/__main__.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/python/computer-server/computer_server/__main__.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/python/computer-server/computer_server/handlers/_grpc_emulator/emulator_controller_pb2.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/python/computer-server/run_server.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/python/computer/computer/ui/__main__.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/python/cua-auto/cua_auto/_platform.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/python/cua-sandbox/cua_sandbox/registry/media_types.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/python/cua-sandbox/cua_sandbox/runtime/_bw_init.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/python/cua-sandbox/cua_sandbox/transport/_grpc_emulator/emulator_controller_pb2.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/python/cua/cua/callbacks.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/python/cua/cua/runtime.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/python/cua/cua/tools.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/python/mcp-server/mcp_server/__main__.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/agent/src/globals.d.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/agent/tests/client.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/agent/tsdown.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/agent/vitest.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/computer/src/computer/types.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/computer/src/globals.d.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/computer/src/interface/factory.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/computer/src/types.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/computer/tests/computer/cloud.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/computer/tests/interface/factory.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/computer/tests/interface/index.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/computer/tests/interface/linux.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/computer/tests/interface/windows.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/computer/tests/setup.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/computer/tsdown.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/computer/vitest.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/core/src/globals.d.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/core/tests/telemetry.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/core/tsdown.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/core/vitest.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/playground/src/adapters/types.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/playground/src/components/primitives/VNCIframe.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/playground/src/components/primitives/VNCViewer.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/playground/src/constants/sandboxPresets.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/playground/src/context/PlaygroundContext.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/playground/src/globals.d.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/playground/src/types/messages.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/typescript/playground/tsdown.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: scripts/typescript-typecheck.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph cicd CI/CD security conf 1.00 90 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/setup-python@v4 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
12 files, 56 locations
.github/workflows/claude-auto-fix.yml:26, 111, 139, 166, 172, 361 (12 hits)
.github/workflows/cd-swift-cua-driver.yml:58, 239, 303, 315, 322, 388 (7 hits)
.github/workflows/ci-test-models.yml:84, 92, 106, 126, 224, 235, 270 (7 hits)
.github/workflows/docker-reusable-publish.yml:57, 158, 200 (6 hits)
.github/workflows/cd-py-computer-server.yml:61, 94, 121 (3 hits)
.github/workflows/cd-py-mcp-server.yml:36, 63 (3 hits)
.github/workflows/cd-swift-lume.yml:199, 249, 256 (3 hits)
.github/workflows/cd-ts-cli.yml:34, 82, 103 (3 hits)
CI/CD securitySupply chainGitHub Actions
low System graph security security conf 1.00 Insecure pattern 'debug_true' in libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:2030
Found a known-risky pattern (debug_true). Review and replace if possible.
libs/cua-bench/tasks/winarena_adapter/infra/vm/setup/server/main.py:2030 Debug true
low System graph quality Tests conf 1.00 Low test-to-source ratio
186 tests / 817 src (ratio 0.23).
low System graph quality Integrity conf 1.00 15 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: docs/scripts/generate_sqlite.py:load_crawled_data, docs/scripts/generate_db.py:load_crawled_data This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're se…
15 occurrences
repo-level (15 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: libs/cua-bench/cua_bench/apps/godot.py:install_linux, libs/cua-bench/cua_bench/apps/godot.py:install_windows, libs/cua-bench/cua_bench/apps/godot.py:install_macos This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see http…
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: libs/cua-bench/cua_bench/config/schema.py:from_dict, libs/cua-bench/cua_bench/config/schema.py:from_dict, libs/cua-bench/cua_bench/config/schema.py:from_dict, libs/cua-bench/cua_bench/config/schema.py:from_dict This is *the* AI-coder failure mode (4×…
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 8 places
Functions with the same first-5-line body hash: libs/cua-bench/cua_bench/decorators.py:decorator, libs/cua-bench/cua_bench/decorators.py:decorator, libs/cua-bench/cua_bench/decorators.py:decorator, libs/cua-bench/cua_bench/decorators.py:decorator This is *the* AI-coder failure mode (4× more duplic…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 9 places
Functions with the same first-5-line body hash: libs/cua-bench/datasets/cua-bench-basic/click-icon/main.py:start, libs/cua-bench/datasets/cua-bench-basic/drag-drop/main.py:start, libs/cua-bench/datasets/cua-bench-basic/select-dropdown/main.py:start, libs/cua-bench/datasets/cua-bench-basic/spreadshe…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_exec_copy` in libs/python/cua-sandbox/cua_sandbox/builder/executor.py:241
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `batch_v1` in libs/cua-bench/cua_bench/batch/gcp.py:12
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `create_overlay_copy` in libs/cua-bench/cua_bench/cli/commands/image.py:26
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `create_overlay_copy` in libs/cua-bench/cua_bench/runner/docker_utils.py:13
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `create_overlay_copy` in libs/cua-bench/cua_bench/runner/task_runner.py:19
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `create_overlay_copy` in libs/python/cua-cli/cua_cli/commands/local_image.py:32
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `create_overlay_copy` in libs/python/cua-cli/cua_cli/utils/docker.py:60
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `data_copy` in libs/cua-bench/tasks/winarena_adapter/evaluators/metrics/vscode.py:65
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `files_to_copy` in libs/python/mcp-server/build-extension.py:39
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `handle_copy` in libs/python/computer/computer/ui/gradio/app.py:755
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `list_objects_v2` in libs/python/cua-sandbox-apps/cua_sandbox_apps/discovery/batch_enrich.py:512
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `messages_copy` in libs/python/agent/cua_agent/adapters/azure_ml_adapter.py:88
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `msg_copy` in libs/python/agent/cua_agent/loops/moondream3.py:93
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_vm_legacy` in libs/python/cua-sandbox/tests/test_oci.py:124
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph cicd CI/CD security conf 1.00 package.json defines install-time lifecycle scripts
preinstall/install/postinstall/prepare scripts execute during dependency installation. Review them carefully for network calls, obfuscation, shell execution, or credential access.
docs/package.json CI/CD securitySupply chainNpm
low System graph software Dead code conf 1.00 Possibly dead Python function: animation_tick
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
libs/cuabot/src/mcp/overlay-cursor.py:357
low System graph software Dead code conf 1.00 Possibly dead Python function: bound_method
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
libs/cua-bench/cua_bench/apps/registry.py:235
low System graph software Dead code conf 1.00 Possibly dead Python function: check_fade
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
libs/cuabot/src/mcp/overlay-cursor.py:414
low System graph software Dead code conf 1.00 Possibly dead Python function: container_is_running
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
libs/cua-bench/cua_bench/runner/docker_utils.py:426
low System graph software Dead code conf 1.00 Possibly dead Python function: create_event
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
libs/cua-bench/cua_bench/apps/calendar.py:196

Showing first 300 of 413. Refine filters or use the 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/1ca50965-4f85-4a66-89b3-c1d72003efb2/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/1ca50965-4f85-4a66-89b3-c1d72003efb2/

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.