๐Ÿ” CVE Alert

CVE-2026-61595

HIGH 7.7

djust: Multi-tenant isolation fails open on the WebSocket/SSE path, disclosing other tenants' data

CVSS Score
7.7
EPSS Score
0.0%
EPSS Percentile
0th

djust provides Phoenix LiveView-style reactive server-side rendering for Django with Rust-powered performance. Prior to version 1.0.7, `djust.tenants` isolation was enforced only on the HTTP path. The current tenant was stored in `threading.local()` and set exclusively by the HTTP-only `TenantMiddleware`, so on the live (WebSocket/SSE) path `get_current_tenant()` was always `None` during mount and every event handler โ€” and the tenant-aware `QuerySet` manager failed OPEN (returned the unfiltered queryset, ignoring `STRICT_MODE`), disclosing every tenant's rows to whoever held the socket. `threading.local` was additionally shared across connections on the `sync_to_async` executor thread. This issue is fixed in djust 1.0.7. Tenant storage moved to a `contextvars.ContextVar` (per async task); the resolved tenant is bound around WS/SSE mount and every dispatch; both managers scope the base queryset once and fail CLOSED (`.none()` under the default `STRICT_MODE`); and system check S006 warns when `STRICT_MODE=False`. No known workarounds are available on the live path.

CWE CWE-636 CWE-862
Vendor djust-org
Product djust
Published Sep 16, 2026
Stay Ahead of the Next One

Get instant alerts for djust-org djust

Be the first to know when new high vulnerabilities affecting djust-org djust are published โ€” delivered to Slack, Telegram or Discord.

Get Free Alerts โ†’ Free ยท No credit card ยท 60 sec setup

CVSS v3 Breakdown

CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:N
Attack Vector
Network
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
Changed
Confidentiality
High
Integrity
None
Availability
None

Affected Versions

djust-org / djust
< 1.0.7

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
github.com: https://github.com/djust-org/djust/security/advisories/GHSA-3492-cvg7-9mr2 github.com: https://github.com/djust-org/djust/releases/tag/v1.0.7