CVE-2022-3327: Rdiffweb is missing authentication for critical function
9.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.2503%
CWE
Published
10/20/2022
Updated
10/26/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
rdiffweb | pip | < 2.5.0 | 2.5.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper session timeout handling. The key changes in auth_form.py show:
- The _is_login function's removal of the timeout check allowed sessions to remain valid indefinitely if not explicitly expired.
- The AuthForm.run method's original implementation lacked proper handling of absolute session timeouts, relying only on idle timeouts. The patch introduced multiple timeout dimensions (idle/absolute/persistent), indicating the previous single timeout mechanism was insufficient. These functions directly controlled session validation logic, and their incomplete timeout enforcement created the authentication bypass vulnerability.