Description
The software specifies a regular expression in a way that causes data to be improperly matched or compared.
When the regular expression is used in protection mechanisms such as filtering or validation, this may allow an attacker to bypass the intended restrictions on the incoming data.
Modes of Introduction:
– Implementation
Related Weaknesses
Consequences
Other: Unexpected State, Varies by Context
When the regular expression is not correctly specified, data might have a different format or type than the rest of the program expects, producing resultant weaknesses or errors.
Access Control: Bypass Protection Mechanism
In PHP, regular expression checks can sometimes be bypassed with a null byte, leading to any number of weaknesses.
Potential Mitigations
Phase: Architecture and Design
Description:
Regular expressions can become error prone when defining a complex language even for those experienced in writing grammars. Determine if several smaller regular expressions simplify one large regular expression. Also, subject the regular expression to thorough testing techniques such as equivalence partitioning, boundary value analysis, and robustness. After testing and a reasonable confidence level is achieved, a regular expression may not be foolproof. If an exploit is allowed to slip through, then record the exploit and refactor the regular expression.
CVE References
- CVE-2002-2109
- Regexp isn’t “anchored” to the beginning or end, which allows spoofed values that have trusted values as substrings.
- CVE-2005-1949
- Regexp for IP address isn’t anchored at the end, allowing appending of shell metacharacters.
- CVE-2001-1072
- Bypass access restrictions via multiple leading slash, which causes a regular expression to fail.
- CVE-2000-0115
- Local user DoS via invalid regular expressions.
- CVE-2002-1527
- chain: Malformed input generates a regular expression error that leads to information exposure.
- CVE-2005-1061
- Certain strings are later used in a regexp, leading to a resultant crash.
- CVE-2005-2169
- MFV. Regular expression intended to protect against directory traversal reduces “…/…//” to “../”.
- CVE-2005-0603
- Malformed regexp syntax leads to information exposure in error message.
- CVE-2005-1820
- Code injection due to improper quoting of regular expression.
- CVE-2005-3153
- Null byte bypasses PHP regexp check.
- CVE-2005-4155
- Null byte bypasses PHP regexp check.
More Stories
The Most Dangerous Vulnerabilities in Apache Tomcat and How to Protect Against Them
Apache Tomcat is an open-source web server and servlet container that is widely used in enterprise environments to run Java...
ZDI-CAN-18333: A Critical Zero-Day Vulnerability in Microsoft Windows
Zero-day vulnerabilities are a serious threat to cybersecurity, as they can be exploited by malicious actors to gain unauthorized access...
CWE-669 – Incorrect Resource Transfer Between Spheres
Description The product does not properly transfer a resource/behavior to another sphere, or improperly imports a resource/behavior from another sphere,...
CWE-67 – Improper Handling of Windows Device Names
Description The software constructs pathnames from user input, but it does not handle or incorrectly handles a pathname containing a...
CWE-670 – Always-Incorrect Control Flow Implementation
Description The code contains a control flow path that does not reflect the algorithm that the path is intended to...
CWE-671 – Lack of Administrator Control over Security
Description The product uses security features in a way that prevents the product's administrator from tailoring security settings to reflect...