CVE-2021-40347: GNU Mailman Postorius Access Control Issues
5.4
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.4405%
CWE
Published
5/24/2022
Updated
10/21/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
postorius | pip | < 1.3.5 | 1.3.5 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the ListUnsubscribeView
's post handler lacking ownership verification. The security patch adds an explicit check comparing the submitted email against the user's verified addresses. The unpatched version of this view function
would appear in profiler traces when handling malicious unsubscribe requests, as it's the direct entry point for processing unsubscribe operations. The function
signature matches the Django
class
-based view structure (Class.method
) that would appear in stack traces.