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.
252 of your 501 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.

Scan timing: clone 10.35s · analysis 50.67s · 39.0 MB · GitHub API rate-limit (preflight)

wecode-ai/Wegent

https://github.com/wecode-ai/Wegent · scanned 2026-06-05 13:05 UTC (5 days, 7 hours ago) · 10 languages

1949 raw signals (465 security + 1484 graph) 11/13 scanners ran 71st percentile · Python · huge (>500K LoC) System graph score 62 (higher by 26)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 5 days, 7 hours ago · v2 · 796 actionable findings from 2 signal sources. 411 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 100.0 0.20 20.00
documentation_score 100.0 0.15 15.00
practices_score 90.0 0.15 13.50
code_quality 45.0 0.10 4.50
Overall 1.00 87.0
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- (87/100). Dimensions: security 100, maintainability 60. 465 findings (100 security). 757,882 lines analyzed.

Showing 479 of 796 actionable findings. 1207 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.

critical Security checks quality Quality conf 1.00 ✓ Repobility 3 occurrences [MINED013] Password In Url: https://user:password@host — leaks creds via logs, referrer, error messages.
Review and fix per the pattern semantics. See CWE-200 / A07:2021 for context.
3 files, 3 locations
backend/app/api/endpoints/internal/services.py:47
backend/app/schemas/service.py:23
knowledge_doc_converter/knowledge_doc_converter/config.py:16
high Security checks quality Quality conf 1.00 ✓ Repobility 12 occurrences [MINED107] Missing import: `email` used but not imported: The file uses `email.something(...)` but never imports `email`. This raises NameError at runtime the first time the line executes.
Add `import email` at the top of the file.
12 files, 12 locations
backend/app/api/endpoints/oidc.py:189
backend/app/services/knowledge/folder_policy.py:193
backend/app/services/message_forwarding_service.py:244
backend/app/services/tables/providers/dingtalk/user_mapping.py:115
backend/app/services/template_instantiation.py:188
backend/app/services/work_queue_service.py:596
backend/app/services/workspace_archive/archive_service.py:397
backend/init_data/skills/skill-creator/eval-viewer/generate_review.py:394
critical Security checks cicd CI/CD security conf 0.98 Compose service mounts the Docker socket
Avoid mounting docker.sock. Use a narrow proxy, rootless build service, or provider-native deployment credentials.
docker-compose.yml:202 CI/CD securitycontainers
high Security checks security auth conf 0.88 Token handoff appears to use a callback URL or fragment
Use a server-side one-time authorization code tied to a registered callback allowlist. Do not append access tokens to callback URLs or fragments.
frontend/src/features/login/components/OidcTokenHandler.tsx:8
high Security checks security auth conf 0.88 Token handoff appears to use a callback URL or fragment
Use a server-side one-time authorization code tied to a registered callback allowlist. Do not append access tokens to callback URLs or fragments.
frontend/src/app/(tasks)/knowledge/share/[id]/page.tsx:8
critical System graph security Secrets conf 1.00 Possible secret in docker/device/Dockerfile
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
docker/device/Dockerfile:159
critical System graph security Secrets conf 1.00 Possible secret in frontend/e2e/utils/auth-state.ts
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
frontend/e2e/utils/auth-state.ts:3
critical System graph security Secrets conf 1.00 Possible secret in frontend/e2e/utils/auth.ts
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
frontend/e2e/utils/auth.ts:8
critical System graph security Secrets conf 1.00 Possible secret in frontend/src/features/login/components/LoginForm.tsx
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
frontend/src/features/login/components/LoginForm.tsx:27
critical System graph security Secrets conf 1.00 Possible secret in frontend/src/features/settings/components/GitHubEdit.tsx
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
frontend/src/features/settings/components/GitHubEdit.tsx:393
critical System graph security Secrets conf 1.00 Possible secret in frontend/src/i18n/locales/en/common.json
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
frontend/src/i18n/locales/en/common.json:920
critical System graph security Secrets conf 1.00 Possible secret in wework/src/pages/LoginPage.tsx
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
wework/src/pages/LoginPage.tsx:35
high Security checks security auth conf 0.70 [AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: GET /chat/streaming-content/:subtaskId/route.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
frontend/src/app/api/chat/streaming-content/[subtaskId]/route.ts:15
low Security checks quality Quality conf 1.00 ✓ Repobility [MINED006] Overcatch Baseexception: except BaseException: ... — prevents Ctrl+C and SystemExit from working.
Review and fix per the pattern semantics. See CWE-705 / for context.
executor/services/updater/upgrade_handler.py:77
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
chat_shell/start.sh:250
executor/start.sh:251
knowledge_runtime/start.sh:220
high Security checks quality Quality conf 1.00 ✓ Repobility 3 occurrences [MINED020] Logging Credential Via Fstring: logger.error(f"failed for {api_key}") — secrets end up in log aggregators / sentry.
Review and fix per the pattern semantics. See CWE-532 / A09:2021 for context.
3 files, 3 locations
backend/app/core/auth_utils.py:92
backend/app/mcp_server/tools/silent_exit.py:39
backend/app/services/oidc.py:171
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED034] Python Subprocess Shell True: subprocess(..., shell=True) enables command injection.
Review and fix per the pattern semantics. See CWE-78 / for context.
shared/utils/git_util.py:296
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED034] Python Subprocess Shell True: subprocess(..., shell=True) enables command injection.
Review and fix per the pattern semantics. See CWE-78 / for context.
executor/agents/claude_code/git_operations.py:135
high Security checks quality Quality conf 1.00 ✓ Repobility 25 occurrences [MINED108] `self._get_knowledge_base` used but never assigned in __init__: Method `resolve_index_config` of class `ConfigResolver` reads `self._get_knowledge_base`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance.
Initialize `self._get_knowledge_base = <default>` in __init__, or add a class-level default.
3 files, 25 locations
knowledge_runtime/knowledge_runtime/services/config_resolver.py:83, 85, 87, 89, 95, 105, 123, 125, +11 more (19 hits)
knowledge_runtime/knowledge_runtime/services/content_fetcher.py:79, 81, 111, 174, 245 (5 hits)
knowledge_runtime/knowledge_runtime/services/query_executor.py:57
high Security checks quality Quality conf 1.00 ✓ Repobility 23 occurrences [MINED110] Blocking call `requests.models.complexjson.loads` inside async function `get_repositories`: `requests.models.complexjson.loads` 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`.
7 files, 23 locations
backend/app/repository/gerrit_provider.py:299, 397, 412, 766, 871, 989 (6 hits)
backend/app/repository/github_provider.py:162, 245, 526, 739, 776 (5 hits)
backend/app/repository/gitea_provider.py:161, 268, 524, 729 (4 hits)
backend/app/repository/gitee_provider.py:158, 242, 510, 720 (4 hits)
backend/app/services/channels/dingtalk/handler.py:494, 563 (2 hits)
backend/app/repository/gitlab_provider.py:781
chat_shell/chat_shell/cli/commands/chat.py:231
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI DELETE /api/tasks/claude/sessions has no auth: Handler `close_all_claude_sessions` 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.
executor/app.py:700
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI DELETE /api/tasks/session has no auth: Handler `delete_session` 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.
executor/app.py:651
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI DELETE /api/tasks/sessions/close has no auth: Handler `close_all_agent_sessions` 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.
executor/app.py:718
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI DELETE /{sandbox_id} has no auth: Handler `terminate_sandbox` 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.
executor_manager/routers/sandbox.py:197
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST (unknown path) has no auth: Handler `create_sandbox` 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.
executor_manager/routers/sandbox.py:64
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /api/tasks/cancel has no auth: Handler `cancel_task` 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.
executor/app.py:666
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /callback has no auth: Handler `callback_handler` 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.
executor_manager/routers/routers.py:239
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /cleanup-stale has no auth: Handler `cleanup_stale_sandboxes` 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.
executor_manager/routers/sandbox.py:131
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /executor/archive has no auth: Handler `archive_executor_workspace` 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.
executor_manager/routers/routers.py:1440
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /executor/delete has no auth: Handler `delete_executor` 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.
executor_manager/routers/routers.py:344
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /executor/restore has no auth: Handler `restore_executor_workspace` 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.
executor_manager/routers/routers.py:1514
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /executors/prepare has no auth: Handler `prepare_executor` 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.
executor_manager/routers/routers.py:1221
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /images/validate has no auth: Handler `validate_image` 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.
executor_manager/routers/routers.py:878
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /responses has no auth: Handler `create_response` 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.
chat_shell/chat_shell/api/v1/response.py:466
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /responses/cancel has no auth: Handler `cancel_response` 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.
chat_shell/chat_shell/api/v1/response.py:506
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /shutdown/initiate has no auth: Handler `initiate_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.
chat_shell/chat_shell/api/health.py:97
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /shutdown/reset has no auth: Handler `reset_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.
chat_shell/chat_shell/api/health.py:215
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /shutdown/wait has no auth: Handler `wait_for_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.
chat_shell/chat_shell/api/health.py:153
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /tasks/cancel has no auth: Handler `cancel_task` 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.
executor_manager/routers/routers.py:1006
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /tasks/{task_id}/heartbeat has no auth: Handler `task_heartbeat` 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.
executor_manager/routers/routers.py:1382
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /v1/cancel has no auth: Handler `cancel_task_v1` 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.
executor_manager/routers/routers.py:1119
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /v1/responses has no auth: Handler `openai_responses` 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.
executor_manager/routers/routers.py:1298
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /v1/responses has no auth: Handler `openai_responses` 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.
executor/app.py:569
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /{sandbox_id}/execute has no auth: Handler `execute` 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.
executor_manager/routers/sandbox.py:277
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /{sandbox_id}/keep-alive has no auth: Handler `keep_alive` 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.
executor_manager/routers/sandbox.py:230
high Security checks software dependencies conf 0.90 ✓ Repobility 14 occurrences [MINED118] Dockerfile FROM `ghcr.io/wecode-ai/wegent-base-python3.12:1.2.1` not pinned by digest: `FROM ghcr.io/wecode-ai/wegent-base-python3.12:1.2.1` 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 ghcr.io/wecode-ai/wegent-base-python3.12:1.2.1@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
10 files, 14 locations
docker/frontend/Dockerfile:6, 26, 47 (3 hits)
docker/executor/Dockerfile:6, 27 (2 hits)
docker/standalone/Dockerfile:9, 42 (2 hits)
docker/backend/Dockerfile:4
docker/base/Dockerfile:4
docker/chat_shell/Dockerfile:4
docker/executor_manager/Dockerfile:4
docker/knowledge_doc_converter/Dockerfile:7
high Security checks software dependencies conf 0.90 ✓ Repobility 6 occurrences [MINED126] Workflow container/services image `mysql:8.0` unpinned: `container/services image: mysql:8.0` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines.
Replace with `mysql:8.0@sha256:<digest>`. Re-pin via Dependabot Docker scope.
2 files, 6 locations
.github/workflows/e2e-tests.yml:32, 45, 302, 315 (4 hits)
.github/workflows/test.yml:344, 360 (2 hits)
high Security checks software dependencies conf 0.90 ✓ Repobility 3 occurrences [MINED130] Lockfile pulls package from off-canonical host `registry.npmmirror.com`: `package-lock.json` resolved URL for `node_modules/@types/node` is `https://registry.npmmirror.com/@types/node/-/node-22.19.8.tgz...` — host `registry.npmmirror.com` is not the canonical registry. Could be a mirror compromise, dependency confusion attack, or a forgotten private registry.
Verify the host is intentional. If your org uses a private registry, add it to your scanner's allowlist (CANONICAL_NPM_HOSTS). Otherwise, regenerate the lockfile against the canonical registry.
3 files, 3 locations
deps/browser/relay-server/package-lock.json:1
frontend/package-lock.json:1
wework/package-lock.json:1
high Security checks security Injection conf 0.50 [SEC004] SQL Injection Risk: String interpolation in SQL execution. Allows SQL injection.
Use parameterized queries: cursor.execute('SELECT * FROM t WHERE id = %s', [id]). For dynamic table or column names, choose identifiers from a hard-coded allowlist and keep values in parameters.
backend/app/api/endpoints/kind/batch.py:62
high Security checks security Injection conf 0.50 [SEC004] SQL Injection Risk: String interpolation in SQL execution. Allows SQL injection.
Use parameterized queries: cursor.execute('SELECT * FROM t WHERE id = %s', [id]). For dynamic table or column names, choose identifiers from a hard-coded allowlist and keep values in parameters.
backend/app/api/endpoints/admin/kind_management.py:345
low Security checks security Injection conf 1.00 [SEC103] LDAP injection — non-constant search filter: User input concatenated into an LDAP search filter. Attackers inject `*)(uid=*` style payloads to bypass auth or enumerate accounts.
Escape with javax.naming.ldap.Rdn.escapeValue or equivalent. For python-ldap, use ldap.filter.escape_filter_chars. Better: use parameterized search APIs (Spring LdapTemplate filter encoders).
backend/app/services/tables/url_parser.py:84
low Security checks security Injection conf 1.00 [SEC103] LDAP injection — non-constant search filter: User input concatenated into an LDAP search filter. Attackers inject `*)(uid=*` style payloads to bypass auth or enumerate accounts.
Escape with javax.naming.ldap.Rdn.escapeValue or equivalent. For python-ldap, use ldap.filter.escape_filter_chars. Better: use parameterized search APIs (Spring LdapTemplate filter encoders).
backend/app/services/prompt_draft/transcript.py:67
high Security checks security auth conf 0.78 Consent is collected in UI without visible backend audit persistence
Persist consent as a backend record with subject, actor, purpose, scope, legal text version, timestamp, IP address, user agent, and revocation state.
frontend/src/apis/knowledge-permission.ts:56
high Security checks cicd CI/CD security conf 0.84 4 occurrences Database service publishes a host port
Use `expose` for service-to-service access, bind to 127.0.0.1 for local-only access, or protect the port with firewall rules.
2 files, 4 locations
docker-compose.yml:5, 29, 46 (3 hits)
telemetry/docker-compose.yml:27
CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.92 4 occurrences Dockerfile pipes a remote script into a shell
Download the artifact, verify its checksum or signature, pin the version, and then execute it.
2 files, 4 locations
docker/base/Dockerfile:7, 26 (2 hits)
docker/device/Dockerfile:52, 213 (2 hits)
CI/CD securitycontainers
high Security checks security prompt injection conf 0.82 LLM memory extraction can be prompt-injected into storing fake facts
Validate extracted facts with a schema, enforce length and count limits, reject code-fence/prompt-looking content, and discard facts that contain instruction-like phrases or raw JSON prompt fragments.
backend/app/services/oidc.py:241
high Security checks security auth conf 0.83 4 occurrences Secret-like setting is echoed into a password input value
Never prefill secret fields with stored values. Show a masked status such as configured/not configured, require explicit rotation to replace the value, and return the raw key only once at creation time.
4 files, 4 locations
frontend/src/features/admin/components/UserList.tsx:507
frontend/src/features/login/components/LoginForm.tsx:166
frontend/src/features/settings/components/McpProviderModal.tsx:289
wework/src/pages/LoginPage.tsx:125
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/tasks/invite/info?token=${encodeURIComponent(token)} (frontend/src/apis/task-member.ts:117)
`frontend/src/apis/task-member.ts:117` calls `GET /api/tasks/invite/info?token=${encodeURIComponent(token)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/tasks/invite/info` If this points at an external API, prefi…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /runtime-config (frontend/src/lib/runtime-config.ts:93)
`frontend/src/lib/runtime-config.ts:93` calls `GET /runtime-config` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/runtime-config` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph hardware Supply chain conf 1.00 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.
docker/base/Dockerfile:26 containersRemote installer
high System graph security auth conf 1.00 FastAPI DELETE `clear_history` without auth dependency — backend/app/api/endpoints/internal/chat_storage.py:1154
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/chat_storage.py:1154 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `clear_pending_tool_calls` without auth dependency — backend/app/api/endpoints/internal/chat_storage.py:1298
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/chat_storage.py:1298 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `close_all_agent_sessions` without auth dependency — executor/app.py:717
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/app.py:717 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `close_all_claude_sessions` without auth dependency — executor/app.py:699
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/app.py:699 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_message` without auth dependency — backend/app/api/endpoints/internal/chat_storage.py:1122
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/chat_storage.py:1122 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_session` without auth dependency — executor/app.py:650
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/app.py:650 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `remove_context` without auth dependency — executor/code_server/main.py:248
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/code_server/main.py:248 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `terminate_sandbox` without auth dependency — executor_manager/routers/sandbox.py:196
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor_manager/routers/sandbox.py:196 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PATCH `update_message` without auth dependency — backend/app/api/endpoints/internal/chat_storage.py:1074
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/chat_storage.py:1074 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — backend/app/api/endpoints/openapi_responses.py:172
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/openapi_responses.py:172 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `append_message` without auth dependency — backend/app/api/endpoints/internal/chat_storage.py:934
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/chat_storage.py:934 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `append_messages_batch` without auth dependency — backend/app/api/endpoints/internal/chat_storage.py:1005
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/chat_storage.py:1005 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `archive_task_workspace` without auth dependency — backend/app/api/endpoints/internal/workspace_archives.py:32
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/workspace_archives.py:32 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `archive_workspace` without auth dependency — executor/envd/api/routes.py:269
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/api/routes.py:269 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `cancel_response` without auth dependency — chat_shell/chat_shell/api/v1/response.py:505
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
chat_shell/chat_shell/api/v1/response.py:505 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `cancel_task` without auth dependency — executor/app.py:665
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/app.py:665 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `cleanup_stale_sandboxes` without auth dependency — executor_manager/routers/sandbox.py:130
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor_manager/routers/sandbox.py:130 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `cli_oidc_login_init` without auth dependency — backend/app/api/endpoints/oidc.py:296
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/oidc.py:296 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `consume_guidance` without auth dependency — backend/app/api/endpoints/internal/chat_storage.py:760
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/chat_storage.py:760 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `conversion_completed_callback` without auth dependency — backend/app/api/endpoints/internal/conversion_callback.py:86
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/conversion_callback.py:86 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `conversion_status_callback` without auth dependency — backend/app/api/endpoints/internal/conversion_callback.py:41
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/conversion_callback.py:41 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `copy_team` without auth dependency — backend/app/api/endpoints/adapter/teams.py:228
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/adapter/teams.py:228 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_resource` without auth dependency — backend/app/api/endpoints/kind/kinds.py:157
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/kind/kinds.py:157 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_response` without auth dependency — chat_shell/chat_shell/api/v1/response.py:465
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
chat_shell/chat_shell/api/v1/response.py:465 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_sandbox` without auth dependency — executor_manager/routers/sandbox.py:63
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor_manager/routers/sandbox.py:63 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_subscription_internal` without auth dependency — backend/app/api/endpoints/internal/subscriptions.py:29
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/subscriptions.py:29 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `delete_document_index` without auth dependency — knowledge_runtime/knowledge_runtime/api/endpoints/admin.py:27
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
knowledge_runtime/knowledge_runtime/api/endpoints/admin.py:27 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `drop_knowledge_index` without auth dependency — backend/app/api/endpoints/internal/rag.py:729
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/rag.py:729 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `drop_knowledge_index` without auth dependency — knowledge_runtime/knowledge_runtime/api/endpoints/admin.py:47
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
knowledge_runtime/knowledge_runtime/api/endpoints/admin.py:47 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `execute` without auth dependency — executor_manager/routers/sandbox.py:276
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor_manager/routers/sandbox.py:276 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `expire_guidance` without auth dependency — backend/app/api/endpoints/internal/chat_storage.py:798
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/chat_storage.py:798 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `filesystem_create_watcher` without auth dependency — executor/envd/server.py:204
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/server.py:204 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `filesystem_get_watcher_events` without auth dependency — executor/envd/server.py:216
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/server.py:216 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `filesystem_listdir` without auth dependency — executor/envd/server.py:168
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/server.py:168 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `filesystem_mkdir` without auth dependency — executor/envd/server.py:144
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/server.py:144 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `filesystem_move` without auth dependency — executor/envd/server.py:156
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/server.py:156 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `filesystem_remove_watcher` without auth dependency — executor/envd/server.py:228
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/server.py:228 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `filesystem_remove` without auth dependency — executor/envd/server.py:180
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/server.py:180 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `filesystem_stat` without auth dependency — executor/envd/server.py:132
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/server.py:132 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `filesystem_watchdir` without auth dependency — executor/envd/server.py:192
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/server.py:192 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `get_all_chunks` without auth dependency — backend/app/api/endpoints/internal/rag.py:636
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/rag.py:636 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `get_knowledge_base_info` without auth dependency — backend/app/api/endpoints/internal/rag.py:500
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/rag.py:500 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `handle_batch_callback` without auth dependency — backend/app/api/endpoints/internal/callback.py:214
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/callback.py:214 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `handle_callback` without auth dependency — backend/app/api/endpoints/internal/callback.py:110
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/callback.py:110 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `index_document` without auth dependency — knowledge_runtime/knowledge_runtime/api/endpoints/index.py:21
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
knowledge_runtime/knowledge_runtime/api/endpoints/index.py:21 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `init_envd` without auth dependency — executor/envd/api/routes.py:143
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/api/routes.py:143 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `initiate_shutdown` without auth dependency — backend/app/api/endpoints/health.py:98
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/health.py:98 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `initiate_shutdown` without auth dependency — chat_shell/chat_shell/api/health.py:96
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
chat_shell/chat_shell/api/health.py:96 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `internal_retrieve` without auth dependency — backend/app/api/endpoints/internal/rag.py:278
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/rag.py:278 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `keep_alive` without auth dependency — executor_manager/routers/sandbox.py:229
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor_manager/routers/sandbox.py:229 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `list_chunks` without auth dependency — knowledge_runtime/knowledge_runtime/api/endpoints/admin.py:57
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
knowledge_runtime/knowledge_runtime/api/endpoints/admin.py:57 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `list_documents` without auth dependency — backend/app/api/endpoints/internal/rag.py:785
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/rag.py:785 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `openai_responses` without auth dependency — executor/app.py:568
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/app.py:568 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `post_contexts` without auth dependency — executor/code_server/main.py:182
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/code_server/main.py:182 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `post_execute` without auth dependency — executor/code_server/main.py:125
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/code_server/main.py:125 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `process_connect` without auth dependency — executor/envd/server.py:71
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/server.py:71 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `process_list` without auth dependency — executor/envd/server.py:47
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/server.py:47 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `process_send_input` without auth dependency — executor/envd/server.py:95
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/server.py:95 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `process_send_signal` without auth dependency — executor/envd/server.py:119
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/server.py:119 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `process_start` without auth dependency — executor/envd/server.py:59
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/server.py:59 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `process_stream_input` without auth dependency — executor/envd/server.py:107
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/server.py:107 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `process_update` without auth dependency — executor/envd/server.py:83
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/server.py:83 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `purge_knowledge_index` without auth dependency — backend/app/api/endpoints/internal/rag.py:703
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/rag.py:703 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `purge_knowledge_index` without auth dependency — knowledge_runtime/knowledge_runtime/api/endpoints/admin.py:37
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
knowledge_runtime/knowledge_runtime/api/endpoints/admin.py:37 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `query_documents` without auth dependency — knowledge_runtime/knowledge_runtime/api/endpoints/query.py:19
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
knowledge_runtime/knowledge_runtime/api/endpoints/query.py:19 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `query_table` without auth dependency — backend/app/api/endpoints/internal/tables.py:40
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/tables.py:40 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `read_document` without auth dependency — backend/app/api/endpoints/internal/rag.py:935
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/rag.py:935 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `read_documents` without auth dependency — backend/app/api/endpoints/internal/rag.py:1009
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/rag.py:1009 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `reset_shutdown` without auth dependency — backend/app/api/endpoints/health.py:211
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/health.py:211 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `reset_shutdown` without auth dependency — chat_shell/chat_shell/api/health.py:214
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
chat_shell/chat_shell/api/health.py:214 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `restart_context` without auth dependency — executor/code_server/main.py:212
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/code_server/main.py:212 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `restore_workspace` without auth dependency — executor/envd/api/routes.py:421
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/api/routes.py:421 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `sandbox_heartbeat` without auth dependency — executor_manager/routers/sandbox.py:447
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor_manager/routers/sandbox.py:447 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `save_pending_tool_call` without auth dependency — backend/app/api/endpoints/internal/chat_storage.py:1277
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/chat_storage.py:1277 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `save_tool_result` without auth dependency — backend/app/api/endpoints/internal/chat_storage.py:1214
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/chat_storage.py:1214 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `trigger_subscription_webhook` without auth dependency — backend/app/api/endpoints/adapter/subscriptions.py:336
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/adapter/subscriptions.py:336 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `update_task_services` without auth dependency — backend/app/api/endpoints/internal/services.py:74
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/internal/services.py:74 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `update_validation_status` without auth dependency — backend/app/api/endpoints/adapter/shells.py:969
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/adapter/shells.py:969 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `upload_file` without auth dependency — executor/envd/api/routes.py:229
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
executor/envd/api/routes.py:229 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `wait_for_shutdown` without auth dependency — backend/app/api/endpoints/health.py:147
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/endpoints/health.py:147 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `wait_for_shutdown` without auth dependency — chat_shell/chat_shell/api/health.py:152
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
chat_shell/chat_shell/api/health.py:152 securityAuth fastapi unauth mutation
high System graph security security conf 1.00 Insecure pattern 'exec_used' in chat_shell/chat_shell/skills/registry.py:324
Found a known-risky pattern (exec_used). Review and replace if possible.
chat_shell/chat_shell/skills/registry.py:324 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 40.0% 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 /chat/resume-stream/:subtaskId/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
frontend/src/app/api/chat/resume-stream/[subtaskId]/route.ts:20
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 /chat/streaming-content/:subtaskId/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
frontend/src/app/api/chat/streaming-content/[subtaskId]/route.ts:15
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 /runtime-config.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
frontend/src/app/runtime-config/route.ts:30
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 /subtasks/stream/subscribe/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
frontend/src/app/api/subtasks/stream/subscribe/route.ts:19
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: POST /chat/cancel/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
frontend/src/app/api/chat/cancel/route.ts:14
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: POST /chat/stream/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
frontend/src/app/api/chat/stream/route.ts:24
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: POST /otlp/traces.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
frontend/src/app/otlp/traces/route.ts:38
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: POST /wizard/generate-followup/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
frontend/src/app/api/wizard/generate-followup/route.ts:18
low Security checks quality Error handling conf 1.00 3 occurrences [ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level.
Log the error: `except Exception: logger.debug('cleanup failed', exc_info=True)`. Or handle specific exception types.
3 files, 3 locations
backend/app/api/dependencies.py:33
backend/app/api/endpoints/adapter/dify.py:80
backend/app/services/channels/telegram/sender.py:155
medium Security checks quality Error handling conf 1.00 [ERR002] Empty Catch Block: Empty catch blocks hide errors.
Log the error or rethrow it. Use console.error() at minimum.
frontend/src/features/knowledge/document/components/DingtalkDocs/DingtalkDocsPage.tsx:63
low Security checks security Injection conf 0.50 [SEC005] Command Injection Risk: Unsafe shell execution or eval of user input.
Use subprocess with shell=False and a list of args. Never eval user input.
shared/utils/git_util.py:296
low Security checks security Injection conf 0.50 [SEC005] Command Injection Risk: Unsafe shell execution or eval of user input.
Use subprocess with shell=False and a list of args. Never eval user input.
executor/agents/claude_code/git_operations.py:135
medium Security checks software Open redirect conf 1.00 3 occurrences [SEC046] Client-side open redirect — window.location = server-supplied URL: Assigning window.location from a server-supplied URL trusts the server endpoint to never return a hostile destination. If that endpoint is ever subverted (compromised admin, JSON injection, MITM on a webhook), users get redirected to a phishing site they trust because the original page is yours. CWE-601 (server-side OR client-side). Complement to server-side SEC030.
Validate the URL is same-origin or on an explicit allowlist before assignment: const u = new URL(serverUrl, location.href); if (u.origin !== location.origin && !ALLOWED.includes(u.host)) return; location.assign(u); Even better: have the server return a path (/checkout/done) instead of a full …
3 files, 3 locations
frontend/src/apis/client.ts:80
frontend/src/features/login/components/LoginForm.tsx:260
wework/src/pages/LoginPage.tsx:54
medium Security checks security Security conf 1.00 [SEC119] World-writable / world-readable file permissions: World-writable files let any local user (or container neighbor) tamper with data; world-readable files leak secrets.
Use 0600 (owner rw only) for secrets, 0644 for general files, 0700 for directories with secrets. Java: `setReadable(true, true)` (owner-only).
executor/platform_compat/unix/permissions.py:25
low Security checks quality Quality conf 1.00 3 occurrences [SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws — wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated.
Catch the specific exception type, log at error level with full exception info, and return a failure-shaped result. If the operation is genuinely best-effort, log at warning and document why in a comment so the next reader (or scanner) knows.
3 files, 3 locations
backend/app/services/chat/access/auth.py:64
backend/app/services/execution/__init__.py:152
backend/app/services/mcp_providers/providers/base.py:92
high Security checks quality Quality conf 0.72 3 occurrences 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.
3 files, 3 locations
.github/workflows/e2e-tests.yml:168
.github/workflows/test.yml:402
backend/app/services/url_metadata.py:41
medium Security checks cicd CI/CD security conf 0.86 App service does not wait for database health
Give the database a healthcheck and change the dependency to `depends_on: { db: { condition: service_healthy } }`.
docker-compose.yml:202 CI/CD securitycontainers
low Security checks quality Error handling conf 0.55 ✓ Repobility 24 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.
12 files, 18 locations
chat_shell/chat_shell/llm_logging.py:77, 115, 147 (3 hits)
chat_shell/chat_shell/storage/remote.py:396, 418 (2 hits)
chat_shell/chat_shell/tools/builtin/file_reader.py:89, 186 (2 hits)
shared/logger.py:50, 166 (2 hits)
shared/telemetry/decorators.py:31, 41 (2 hits)
chat_shell/chat_shell/cli/commands/chat.py:312
chat_shell/chat_shell/cli/commands/history.py:249
chat_shell/chat_shell/cli/commands/query.py:243
Error handlingquality
high Security checks security auth conf 0.82 12 occurrences Browser storage is used for session token material
Prefer httpOnly, Secure, SameSite cookies or short-lived in-memory tokens. Avoid persistent browser storage for access, refresh, ID, or partner session tokens.
5 files, 12 locations
frontend/src/apis/user.ts:104, 107, 118, 125 (4 hits)
wework/src/api/auth.ts:37, 40, 48 (3 hits)
frontend/src/features/login/components/OidcTokenHandler.tsx:48, 49 (2 hits)
wework/src/api/attachments.ts:24, 81 (2 hits)
frontend/e2e/utils/auth.ts:109
medium Security checks cicd CI/CD security conf 0.94 5 occurrences Compose service `backend` image uses the latest tag
Pin to a maintained version tag or digest and update it deliberately through dependency automation.
lines 69, 136, 171, 202, 267
docker-compose.yml:69, 136, 171, 202, 267 (5 hits)
CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.82 9 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.
9 files, 9 locations
docker/backend/Dockerfile:5
docker/base/Dockerfile:5
docker/chat_shell/Dockerfile:5
docker/executor/Dockerfile:27
docker/executor_manager/Dockerfile:5
docker/knowledge_doc_converter/Dockerfile:7
docker/knowledge_runtime/Dockerfile:5
docker/standalone/Dockerfile:89
CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.94 8 occurrences Dockerfile base image uses the latest tag
Pin to a maintained version tag or digest and update it deliberately through dependency automation.
7 files, 8 locations
docker/executor/Dockerfile:6, 27 (2 hits)
docker/chat_shell/Dockerfile:5
docker/executor_manager/Dockerfile:5
docker/knowledge_doc_converter/Dockerfile:7
docker/knowledge_runtime/Dockerfile:5
docker/standalone/Dockerfile:42
frontend/e2e/fixtures/claudecode-executor/Dockerfile:1
CI/CD securitycontainers
high Security checks quality Quality conf 0.74 3 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.
lines 666, 1012, 1044
backend/init_data/skills/skill-creator/eval-viewer/viewer.html:666, 1012, 1044 (3 hits)
medium Security checks quality Quality conf 0.70 Public web app has no Content Security Policy
Add a Content-Security-Policy header through the web framework or hosting config. For static apps, add a CSP meta tag that restricts default-src, script-src, connect-src, img-src, and frame-ancestors.
index.html
medium Security checks quality Quality conf 0.78 Public web service has no security.txt
Add /.well-known/security.txt with Contact, Expires, Canonical, Preferred-Languages, and Policy fields. Keep the contact endpoint monitored.
.well-known/security.txt
high Security checks software dependencies conf 0.70 5 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.
5 files, 5 locations
.github/workflows/lint.yml:35
.github/workflows/test.yml:44
README.md:159
README_zh.md:160
backend/start.sh:267
medium Security checks quality Quality conf 0.72 Service worker is present without a web app manifest
Add a valid manifest.json or site.webmanifest and reference it from the document head. Include name, icons, start_url, display, and theme colors.
manifest.json
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — frontend/src/components/common/EnhancedMarkdown.tsx:428
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 — frontend/src/components/common/MermaidDiagram.tsx:868
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 — frontend/src/features/knowledge/DiagramModal.tsx:228
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 — frontend/src/features/knowledge/WikiContent.tsx:376
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 — frontend/src/features/pet/components/PetAvatar.tsx:76
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 — frontend/src/features/settings/components/BotEdit.tsx:1629
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 — frontend/src/features/theme/ThemeScript.tsx:24
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 — deps/browser/relay-server/src/browser-client.ts:91
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 — frontend/public/mockServiceWorker.js:227
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 — frontend/src/apis/attachments.ts:537
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 — frontend/src/apis/skills.ts:29
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 — frontend/src/apis/task-member.ts:117
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 — frontend/src/apis/wizard.ts:210
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 — frontend/src/app/api/[...path]/route.ts:45
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 — frontend/src/app/api/chat/cancel/route.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 — frontend/src/app/api/chat/streaming-content/[subtaskId]/route.ts:26
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 — frontend/src/app/api/subtasks/stream/subscribe/route.ts:48
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 — frontend/src/app/otlp/traces/route.ts:56
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 — frontend/src/components/common/ImagePreview.tsx:64
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 — frontend/src/features/layout/GithubStarButton.tsx:48
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 — frontend/src/features/prompt-optimization/components/PromptOptimizationBlock.tsx:93
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 — frontend/src/lib/stream-proxy.ts:51
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 — wework/src/api/attachments.ts:82
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 — wework/src/api/http.ts:61
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 — wework/src/api/systemSkills.ts:78
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 8 occurrences Docker base image uses a mutable or implicit tag: ghcr.io/wecode-ai/wegent-base-python3.12:latest
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
7 files, 8 locations
docker/executor/Dockerfile:6, 27 (2 hits)
docker/chat_shell/Dockerfile:4
docker/executor_manager/Dockerfile:4
docker/knowledge_doc_converter/Dockerfile:7
docker/knowledge_runtime/Dockerfile:4
docker/standalone/Dockerfile:42
frontend/e2e/fixtures/claudecode-executor/Dockerfile:1
containersPinned dependencies
medium System graph hardware Security conf 1.00 Dockerfile runs as root: docker/backend/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: docker/base/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: docker/chat_shell/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: docker/executor/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: docker/executor_manager/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: docker/knowledge_doc_converter/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: docker/knowledge_runtime/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: docker/standalone/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: frontend/e2e/fixtures/claudecode-executor/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 30 occurrences GitHub Action is tag-pinned rather than SHA-pinned
docker/setup-buildx-action@v3 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
6 files, 30 locations
.github/workflows/publish-image.yml:112, 115, 122, 144, 147, 154, 179, 182, +6 more (14 hits)
.github/workflows/test.yml:57, 101, 147, 205, 250, 292 (11 hits)
.github/workflows/update-contributors.yml:24, 36 (2 hits)
.github/workflows/release.yml:101
.github/workflows/sync-docs.yml:16
.github/workflows/test-windows-executor.yml:26
CI/CD securitySupply chainGitHub Actions
medium System graph cicd CI/CD security conf 1.00 4 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.
4 files, 4 locations
.github/workflows/publish-image.yml
.github/workflows/release.yml
.github/workflows/test-windows-executor.yml
.github/workflows/update-contributors.yml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in frontend/src/components/common/EnhancedMarkdown.tsx:428
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
frontend/src/components/common/EnhancedMarkdown.tsx:428 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in frontend/src/components/common/MermaidDiagram.tsx:868
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
frontend/src/components/common/MermaidDiagram.tsx:868 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in frontend/src/features/knowledge/DiagramModal.tsx:228
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
frontend/src/features/knowledge/DiagramModal.tsx:228 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in frontend/src/features/knowledge/WikiContent.tsx:376
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
frontend/src/features/knowledge/WikiContent.tsx:376 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in frontend/src/features/pet/components/PetAvatar.tsx:76
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
frontend/src/features/pet/components/PetAvatar.tsx:76 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in frontend/src/features/settings/components/BotEdit.tsx:1629
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
frontend/src/features/settings/components/BotEdit.tsx:1629 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in frontend/src/features/theme/ThemeScript.tsx:24
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
frontend/src/features/theme/ThemeScript.tsx:24 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in executor/agents/claude_code/git_operations.py:137
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
executor/agents/claude_code/git_operations.py:137 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in executor_manager/executors/docker/utils.py:196
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
executor_manager/executors/docker/utils.py:196 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in shared/utils/git_util.py:297
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
shared/utils/git_util.py:297 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in wework/public/novnc/rfb.min.js:2
Found a known-risky pattern (weak_hash). Review and replace if possible.
wework/public/novnc/rfb.min.js:2 Weak hash
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — backend/app/api/endpoints/attachments_open.py:104
`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 — backend/app/main.py:133
`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 — backend/app/repository/gitea_provider.py:268
`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 — backend/app/repository/gitee_provider.py:242
`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 — backend/app/repository/github_provider.py:245
`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 — backend/init_data/skills/skill-creator/scripts/run_eval.py:87
`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 — executor/modes/local/websocket_client.py:253
`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 — executor/scripts/build_local.py:300
`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 — executor/services/updater/process_manager.py:348
`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 — executor_manager/executors/docker/binary_extractor.py:136
`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 — executor_manager/executors/docker/executor.py:373
`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 — executor_manager/executors/docker/utils.py:136
`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 — shared/utils/git_util.py:264
`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
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
high Security checks cicd CI/CD security conf 0.56 9 occurrences Compose service does not declare a runtime user
Set a non-root `user:` in Compose or ensure the final image stage has a non-root USER directive.
2 files, 9 locations
docker-compose.yml:69, 136, 171, 202, 267, 307 (6 hits)
telemetry/docker-compose.yml:49, 64, 77 (3 hits)
CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.62 9 occurrences Compose service lacks no-new-privileges hardening
Add `security_opt: ["no-new-privileges:true"]` unless the service has a documented need for privilege escalation.
2 files, 9 locations
docker-compose.yml:69, 136, 171, 202, 267, 307 (6 hits)
telemetry/docker-compose.yml:49, 64, 77 (3 hits)
CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.58 Database password is wired through an environment variable placeholder
Prefer Compose secrets or your platform secret manager with *_FILE variables where the image supports them. Rotate only if a real value was committed.
docker-compose.yml:5 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.72 22 occurrences Dockerfile keeps pip download cache
Use `pip install --no-cache-dir ...` in container builds.
9 files, 22 locations
docker/standalone/Dockerfile:72, 102, 105, 108, 111, 119 (6 hits)
docker/executor/Dockerfile:13, 14, 17, 54 (4 hits)
docker/knowledge_doc_converter/Dockerfile:13, 17, 22 (3 hits)
docker/knowledge_runtime/Dockerfile:12, 16, 21 (3 hits)
docker/chat_shell/Dockerfile:12, 17 (2 hits)
docker/backend/Dockerfile:21
docker/base/Dockerfile:31
docker/executor_manager/Dockerfile:13
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
backend/app/repository/gitlab_provider.py:36, 37, 38, 239 (4 hits)
backend/app/repository/github_provider.py:38, 39, 40 (3 hits)
backend/app/services/device_service.py:268, 375, 428 (3 hits)
backend/app/repository/gitee_provider.py:38, 39 (2 hits)
backend/app/services/device/local_provider.py:218, 220 (2 hits)
backend/app/api/endpoints/adapter/subscriptions.py:80
backend/app/api/endpoints/users.py:528
backend/app/repository/gitea_provider.py:38
duplicationquality
low Security checks quality Quality conf 0.64 Public docs site has no llms.txt
Add llms.txt with the product summary, canonical docs, API endpoints, security guidance, and preferred CLI workflow for AI agents.
llms.txt
low Security checks quality Quality conf 0.50 Public web app has no humans.txt
Add humans.txt with team ownership, contact URL, key documentation links, and the last-updated date.
humans.txt
low Security checks quality Quality conf 0.74 Public web app has no robots.txt
Add robots.txt at the web root or a framework-native robots route. Include an explicit Sitemap directive and disallow only private paths.
robots.txt
low Security checks quality Quality conf 0.72 Public web app has no sitemap
Add sitemap.xml, a sitemap index, or a framework-native sitemap route and reference it from robots.txt.
sitemap.xml
low System graph quality Integrity conf 1.00 232 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `ANTHROPIC_API_KEY`, `ANTHROPIC_CUSTOM_HEADERS`, `ANTHROPIC_MODEL`, `BACKEND_API_URL`, `BASE_URL`, `BIND_SHELL`, `BROWSER_PREFIX`, `BROWSER_RELAY_PORT` + 224 more. Add them (with a placeholder/comment) to .env.example so onboarding doesn't break.
config drift
low System graph quality Maintenance conf 1.00 41 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
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: almalinux:9.4
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/base/Dockerfile:4 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: ghcr.io/wecode-ai/wegent-base-python3.12:1.2.1
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/backend/Dockerfile:4 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 4 occurrences Docker base image is tag-pinned but not digest-pinned: node:22-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
2 files, 4 locations
docker/frontend/Dockerfile:6, 26, 47 (3 hits)
docker/standalone/Dockerfile:9
containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/empty-module.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: frontend/jest.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: frontend/jest.setup.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: frontend/next-env.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: frontend/next.config.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: frontend/playwright.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: frontend/postcss.config.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: frontend/public/sw.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: frontend/scripts/generate-locales.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: frontend/src/__tests__/apis/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: frontend/src/__tests__/apis/knowledge-permission.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: frontend/src/__tests__/apis/publicResources.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: frontend/src/__tests__/apis/remoteWorkspace.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: frontend/src/__tests__/apis/resourceLibrary.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: frontend/src/__tests__/apis/skills.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: frontend/src/__tests__/apis/subscription.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: frontend/src/__tests__/apis/user.quick-access.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: frontend/src/__tests__/app/(tasks)/chat/ChatPageDesktop.remote-workspace.test.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: frontend/src/__tests__/app/(tasks)/chat/ChatPageMobile.remote-workspace.test.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: frontend/src/__tests__/app/(tasks)/code/CodePageDesktop.remote-workspace.test.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: frontend/src/__tests__/app/(tasks)/code/CodePageMobile.remote-workspace.test.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: frontend/src/__tests__/app/runtime-config-cache.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: frontend/src/__tests__/components/common/FilePreviewDialog.test.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: frontend/src/__tests__/components/model-select/model-grouping.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: frontend/src/__tests__/config/next-config-performance.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: frontend/src/__tests__/features/settings/components/ForceDeleteTaskSummary.test.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: frontend/src/__tests__/features/settings/components/McpConfigSection.test.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: frontend/src/__tests__/features/settings/components/SettingsTabNav.navigation.test.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: frontend/src/__tests__/features/settings/components/team-edit/ExecutorModeSelector.test.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: frontend/src/__tests__/features/settings/components/team-edit/QuickPhraseEditor.test.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: frontend/src/__tests__/features/settings/components/team-edit/simple-team-edit-save.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: frontend/src/__tests__/features/settings/components/team-edit/SimpleBotCoreConfigForm.test.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: frontend/src/__tests__/features/settings/components/team-edit/TeamBindModeCards.test.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: frontend/src/__tests__/features/settings/constants/team-icons.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: frontend/src/__tests__/features/settings/utils/embedding-model-config.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: frontend/src/__tests__/features/settings/utils/mcpConfig.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: frontend/src/__tests__/features/settings/utils/skill-ref-resolver.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: frontend/src/__tests__/features/settings/utils/team-bind-mode-rules.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: frontend/src/__tests__/hooks/useGroupPermissions.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: frontend/src/__tests__/i18n/missing-console-keys.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: frontend/src/__tests__/i18n/resource-library-namespace.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: frontend/src/__tests__/i18n/settings-skill-copy.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: frontend/src/__tests__/utils/modelCompatibility.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: frontend/src/__tests__/utils/retriever-ext.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: frontend/src/__tests__/utils/skillVisibility.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: frontend/src/__tests__/utils/stringUtils.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: frontend/src/__tests__/utils/url-detector.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: frontend/src/__tests__/utils/utc-date.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: frontend/src/__tests__/utils/version.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: frontend/tailwind.config.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 74 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/checkout@v4 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
7 files, 74 locations
.github/workflows/test.yml:26, 29, 34, 70, 73, 78, 113, 116, +11 more (34 hits)
.github/workflows/e2e-tests.yml:56, 61, 73, 81, 89, 120, 131, 269, +12 more (20 hits)
.github/workflows/lint.yml:26, 29, 62, 65, 98, 101, 125, 138 (8 hits)
.github/workflows/publish-image.yml:43, 107, 139, 174, 206, 241 (6 hits)
.github/workflows/test-windows-executor.yml:18, 21, 41 (3 hits)
.github/workflows/release.yml:27, 33 (2 hits)
.github/workflows/update-contributors.yml:19
CI/CD securitySupply chainGitHub Actions
low System graph quality Integrity conf 1.00 13 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: knowledge_runtime/knowledge_runtime/middleware/auth.py:verify_internal_token, backend/app/services/auth/internal_service_token.py:verify_internal_service_token This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https:/…
13 occurrences
repo-level (13 hits)
duplicatesduplication

Showing first 300 of 479. 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/7b2123d8-a9f1-4c2e-9d75-6c93ecc32986/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/7b2123d8-a9f1-4c2e-9d75-6c93ecc32986/

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.