Bug 2502745 - CVE-2026-9323 python-urwid: Urwid: Predictable session IDs lead to remote code execution and information disclosure [fedora-all]
Summary: CVE-2026-9323 python-urwid: Urwid: Predictable session IDs lead to remote cod...
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: python-urwid
Version: rawhide
Hardware: Unspecified
OS: Unspecified
high
high
Target Milestone: ---
Assignee: Tomas Tomecek
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard: {"flaws": ["1a7e1eef-07ac-436d-a408-f...
Depends On:
Blocks: CVE-2026-9323
TreeView+ depends on / blocked
 
Reported: 2026-07-20 12:10 UTC by Ganesh
Modified: 2026-07-21 13:53 UTC (History)
1 user (show)

Fixed In Version: python-urwid-4.0.5-1.fc45
Clone Of:
Environment:
Last Closed: 2026-07-21 13:53:42 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description Ganesh 2026-07-20 12:10:09 UTC
Disclaimer: Community trackers are created by Red Hat Product Security team on a best effort basis. Package maintainers are required to ascertain if the flaw indeed affects their package, before starting the update process.

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


Note You need to log in before you can comment on or make changes to this bug.