CVE-2021-39229:
Apprise vulnerable to regex injection with IFTTT Plugin
7.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.62544%
CWE
Published
9/20/2021
Updated
9/12/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
apprise | pip | <= 0.9.4 | 0.9.5.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the regex pattern in parse_native_url() that handled IFTTT URL parsing. The original regex allowed arbitrary repetition of event components without proper path segment separation, enabling regex injection. The commit diff shows the critical fix changing '(event components)+' to explicit path segments with '(/[pattern]+)+', addressing the backtracking vulnerability. This function directly processes user-supplied URLs, making it the attack vector for resource exhaustion.