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

open-webui/open-webui

https://github.com/open-webui/open-webui · scanned 2026-06-05 04:50 UTC (1 week, 1 day ago) · 10 languages

893 raw signals (223 security + 670 graph) 11/13 scanners ran 32nd percentile · Python · large (100-500K LoC)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 week, 1 day ago · v2 · 380 actionable findings from 2 signal sources. 178 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 85.0 0.15 12.75
security_score 100.0 0.25 25.00
testing_score 0.0 0.20 0.00
documentation_score 92.0 0.15 13.80
practices_score 89.0 0.15 13.35
code_quality 45.0 0.10 4.50
Overall 1.00 69.4
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: severity: high × excluding tests × Reset all
Scan summary Quality grade B- (69/100). Dimensions: security 100, maintainability 85. 223 findings (63 security). 225,000 lines analyzed.

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

high Security checks quality Quality conf 1.00 ✓ Repobility 12 occurrences [MINED107] Missing import: `glob` used but not imported: The file uses `glob.something(...)` but never imports `glob`. This raises NameError at runtime the first time the line executes.
Add `import glob` at the top of the file.
11 files, 12 locations
backend/open_webui/utils/misc.py:639, 646 (2 hits)
backend/open_webui/models/files.py:279
backend/open_webui/models/users.py:336
backend/open_webui/retrieval/vector/dbs/valkey.py:656
backend/open_webui/retrieval/web/utils.py:207
backend/open_webui/routers/auths.py:1364
backend/open_webui/routers/knowledge.py:609
backend/open_webui/routers/scim.py:592
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.
src/routes/auth/+page.svelte:183
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 /list/user/{user_id}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
backend/open_webui/routers/chats.py:515
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 /{id}/files.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
backend/open_webui/routers/knowledge.py:625
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 /{pipeline_id}/valves.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
backend/open_webui/routers/pipelines.py:410
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 /{pipeline_id}/valves/spec.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
backend/open_webui/routers/pipelines.py:451
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 /{user_id}/profile/image.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
backend/open_webui/routers/users.py:481
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: POST /api/chat/actions/{action_id}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
backend/open_webui/main.py:2296
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: POST /api/tasks/stop/{task_id}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
backend/open_webui/main.py:2313
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: POST /{id}/update.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
backend/open_webui/routers/knowledge.py:438
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: POST /{memory_id}/update.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
backend/open_webui/routers/memories.py:282
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: POST /{pipeline_id}/valves/update.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
backend/open_webui/routers/pipelines.py:492
high Security checks quality Quality conf 1.00 ✓ Repobility 25 occurrences [MINED108] `self._compact_updates_redis` used but never assigned in __init__: Method `append_to_updates` of class `YdocManager` reads `self._compact_updates_redis`, 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._compact_updates_redis = <default>` in __init__, or add a class-level default.
3 files, 25 locations
backend/open_webui/utils/rate_limit.py:55, 57, 59, 61, 67, 69, 71, 73, +8 more (16 hits)
backend/open_webui/socket/utils.py:172, 178, 278, 279, 291 (5 hits)
backend/open_webui/storage/provider.py:148, 165, 166, 175 (4 hits)
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED110] Blocking call `time.sleep` inside async function `_inner`: `time.sleep` 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`.
backend/open_webui/utils/redis.py:188
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED118] Dockerfile FROM `python:3.11-slim-bookworm` not pinned by digest: `FROM python:3.11-slim-bookworm` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity.
Replace with: `FROM python:3.11-slim-bookworm@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
Dockerfile:46
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED131] pre-commit hook `https://github.com/astral-sh/ruff-pre-commit` pinned to mutable rev `v0.15.5`: `.pre-commit-config.yaml` references `https://github.com/astral-sh/ruff-pre-commit` at `rev: v0.15.5`. If `{rev}` is a branch or version tag, the repo owner can push new code there and `pre-commit install --install-hooks` will fetch it on every developer's machine.
Pin to a commit SHA: `rev: <40-char-sha>` and bump it through `pre-commit autoupdate` (which writes to PRs that are reviewed).
.pre-commit-config.yaml:2
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.
src/lib/components/admin/Users/Groups/Permissions.svelte:389
high Security checks cicd CI/CD security conf 0.92 Dockerfile pipes a remote script into a shell
Download the artifact, verify its checksum or signature, pin the version, and then execute it.
Dockerfile:168 CI/CD securitycontainers
high System graph quality Integrity conf 1.00 Blocking `time.sleep(...)` inside `async def _inner` — backend/open_webui/utils/redis.py:188
Sync I/O inside an async function blocks the event loop. While `time.sleep(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_thre…
backend/open_webui/utils/redis.py:188 Sync io in asyncPerformance
high System graph api Wiring conf 1.00 Dangling fetch: GET https://pypi.org/pypi/${pkg}/json (scripts/prepare-pyodide.js:144)
`scripts/prepare-pyodide.js:144` calls `GET https://pypi.org/pypi/${pkg}/json` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/pypi.org/pypi/<p>/json` If this points at an external API, prefix it with `https:/…
Dangling fetchFetch
high System graph security security conf 1.00 Insecure pattern 'exec_used' in backend/open_webui/utils/plugin.py:233
Found a known-risky pattern (exec_used). Review and replace if possible.
backend/open_webui/utils/plugin.py:233 Exec used
high System graph security security conf 1.00 Insecure pattern 'tls_verify_false' in backend/open_webui/utils/mcp/client.py:51
Found a known-risky pattern (tls_verify_false). Review and replace if possible.
backend/open_webui/utils/mcp/client.py:51 Tls verify false
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: GET /api/models/base.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
backend/open_webui/main.py:1528
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: GET /api/tasks.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
backend/open_webui/main.py:2322
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: GET /api/tasks/chat/{chat_id:path}.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
backend/open_webui/main.py:2327
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: GET /api/version.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
backend/open_webui/main.py:2560
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: GET /api/webhook.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
backend/open_webui/main.py:2546
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: GET /oauth/clients/{client_id}/authorize.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
backend/open_webui/main.py:2746
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: POST /api/models/unload.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
backend/open_webui/main.py:1538
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: POST /api/tasks/chat/{chat_id:path}/stop.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
backend/open_webui/main.py:2345
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: POST /api/tasks/stop/{task_id}.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
backend/open_webui/main.py:2313
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: POST /api/webhook.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
backend/open_webui/main.py:2553
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: DELETE /events/{event_id}/delete.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
backend/open_webui/routers/calendar.py:316
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 /.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
backend/open_webui/routers/calendar.py:85
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 /api/config.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
backend/open_webui/main.py:2367
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 /api/version/updates.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
backend/open_webui/main.py:2568
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 /events/search.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
backend/open_webui/routers/calendar.py:269
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 /events/{event_id}.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
backend/open_webui/routers/calendar.py:281
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 /models.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
backend/open_webui/routers/openai.py:569
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 /models/{url_idx}.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
backend/open_webui/routers/openai.py:570
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 /events/create.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
backend/open_webui/routers/calendar.py:262
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 /events/{event_id}/update.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
backend/open_webui/routers/calendar.py:293
high Security checks security auth conf 0.82 Browser storage is used for session token material
Prefer httpOnly, Secure, SameSite cookies or short-lived in-memory tokens. Avoid persistent browser storage for access, refresh, ID, or partner session tokens.
src/routes/+layout.svelte:190
high Security checks security auth conf 0.82 Browser storage is used for session token material
Prefer httpOnly, Secure, SameSite cookies or short-lived in-memory tokens. Avoid persistent browser storage for access, refresh, ID, or partner session tokens.
src/lib/components/chat/XTerminal.svelte:55
high Security checks quality Quality conf 0.74 Frontend API reference is not matched by discovered backend routes
Add the backend route, update the frontend constant to the implemented endpoint, or document that the route is served by another service and exclude it with .repobilityignore.
src/lib/components/workspace/Prompts/PromptEditor.svelte:659
high Security checks quality Quality conf 0.74 Frontend API reference is not matched by discovered backend routes
Add the backend route, update the frontend constant to the implemented endpoint, or document that the route is served by another service and exclude it with .repobilityignore.
src/lib/components/chat/FileNav/FilePreview.svelte:111
high Security checks quality Quality conf 0.80 localStorage write failures are swallowed silently
Handle QuotaExceededError explicitly, show a toast or error state, and guide the user to export/clear old local data. Log non-quota failures for diagnostics.
src/lib/components/layout/Sidebar.svelte:496
high Security checks cicd CI/CD security conf 0.62 Compose service lacks no-new-privileges hardening
Add `security_opt: ["no-new-privileges:true"]` unless the service has a documented need for privilege escalation.
docker-compose.yaml:10 CI/CD securitycontainers
high Security checks quality Quality conf 0.62 Source file name looks like an AI patch artifact
Rename it to the domain concept it implements or merge it into the existing module it was meant to change.
src/lib/utils/_template_old.ts:1
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/eece5801-31e4-4d8a-b69e-8e16dd5dfc24/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/eece5801-31e4-4d8a-b69e-8e16dd5dfc24/

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.