๐Ÿ” CVE Alert

CVE-2026-9323

HIGH 8.1

Insecure PRNG and Information Exposure in urwid Web Display Backend

CVSS Score
8.1
EPSS Score
0.0%
EPSS Percentile
0th

The urwid web display backend (urwid/display/web.py) generates web session identifiers (urwid_id) in Screen.start() by concatenating two random.randrange(10**9) calls that use Python's Mersenne Twister PRNG, which is not cryptographically secure. Each call consumes approximately 30 bits of PRNG state, and the Mersenne Twister internal state is approximately 19,937 bits, so an attacker who observes approximately 334 session IDs (for example via the X-Urwid-ID HTTP response header) can fully reconstruct the internal state and predict all past and future session IDs (Path B). The same identifier is also used as the filename of a FIFO created in the world-listable /tmp directory (for example /tmp/urwid375487765176907690.in), so any local user on the host can list /tmp to enumerate active session tokens directly (Path A). With a valid session ID, an attacker can read the victim's terminal screen via the polling endpoint, inject keystrokes into the victim's session (yielding OS-level code execution with the session owner's privileges if the session runs a shell), and inject exit sequences or flood the FIFO to terminate or crash the session. A prior Bandit S311 warning on this usage was suppressed with # noqa: S311 rather than fixed

CWE CWE-338
Vendor urwid
Product urwid
Published Jul 18, 2026
Stay Ahead of the Next One

Get instant alerts for urwid urwid

Be the first to know when new high vulnerabilities affecting urwid urwid 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:H/PR:N/UI:N/S:U/C:H/I:H/A:H
Attack Vector
Network
Attack Complexity
High
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
High

Affected Versions

urwid / urwid
0 โ‰ค 24acd12

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
github.com: https://github.com/urwid/urwid/security/advisories/GHSA-rjwp-g85x-gmjv github.com: https://github.com/urwid/urwid github.com: https://github.com/urwid/urwid/commit/24acd12f0d0598036d0d577f2ee63e4a27b4a3d9 github.com: https://github.com/urwid/urwid/issues/1127 github.com: https://github.com/urwid/urwid/pull/1128 vulncheck.com: https://www.vulncheck.com/advisories/insecure-prng-and-information-exposure-in-urwid-web-display-backend

Credits

๐Ÿ” Katriel Moses