CVE-2022-3269: rdiffweb vulnerable to account access via session fixation
9.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.21288%
CWE
Published
9/25/2022
Updated
10/25/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.4.7 | 2.4.7 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from missing session regeneration in authentication workflows. The patch adds 'cherrypy.session.regenerate()' calls in both login and logout handlers:
- In LoginPage.index, session fixation was possible because the same session ID was retained after successful authentication
- In LogoutPage.default, session persistence was maintained because logout only nullified the user association without invalidating the session ID These omissions violated session management best practices by keeping static session identifiers across authentication state changes, enabling session fixation attacks. The high confidence comes from the direct correlation between the missing session regeneration calls in these functions and the CWE-384 description of session fixation vulnerabilities.