Description
A vulnerable regular expression has been detected that could lead to Denial of Service (DoS) through Regular Expression Denial of Service (ReDoS).
Location
- File: lib/google_image_charts.js
- Line: 665
Issue
The application uses a regular expression that may take exponential time to process certain inputs. According to the CodeQL analysis, the regex may run extremely slow on strings starting with '9N' and with many repetitions of '))', potentially allowing an attacker to cause a denial of service.
Recommendation
To fix this issue:
- Rewrite the regular expression to avoid ambiguity
- Limit the length of input strings that can be processed by the regex
- Use non-backtracking regex engines if possible
- Add timeouts to regex operations
References
- CWE-1333: Inefficient Regular Expression Complexity
- CWE-400: Uncontrolled Resource Consumption
- OWASP Regular expression Denial of Service - ReDoS
Description
A vulnerable regular expression has been detected that could lead to Denial of Service (DoS) through Regular Expression Denial of Service (ReDoS).
Location
Issue
The application uses a regular expression that may take exponential time to process certain inputs. According to the CodeQL analysis, the regex may run extremely slow on strings starting with '9N' and with many repetitions of '))', potentially allowing an attacker to cause a denial of service.
Recommendation
To fix this issue:
References