Regex Injection
ID |
php.regex_injection |
Severity |
critical |
Resource |
Injection |
Language |
Php |
Tags |
CWE:1333, CWE:625, NIST.SP.800-53, OWASP:2004:A9, PCI-DSS:6.5.1 |
Description
Improper neutralization of external input used in a regular expression ('Regex Injection').
Regular Expression (Regex) Injection arises when input from users is directly concatenated into a regex pattern without validation or sanitization. This can allow an attacker to manipulate the pattern used for searching or matching, potentially bypassing validation or security checks.
Rationale
An example of vulnerable PHP code demonstrating Regex Injection is shown below:
<?php
// User-provided input
$pattern = $_GET['pattern'];
$text = $_GET['text'];
// Vulnerable code: directly using user input in regex
if (preg_match("/$pattern/", $text)) {
echo "Match found.";
} else {
echo "No match.";
}
?>
Remediation
To remediate Regular Expression Injection vulnerabilities, you can use the following strategies:
-
Escape User Input: Always escape user input to be included in regex patterns, using the library’s 'regexp quoting' functions.
-
Use Strict Validation: Implement strict validation on input prior to its inclusion in a regex pattern. Ensuring that input only contains expected characters significantly lowers the risk of injection.
-
Predefine Regular Expressions: Avoid dynamically building regex patterns based on user input. Instead, use predefined patterns that safely incorporate user input as part of the matching process.
-
Input Filtering: Apply input filtering to remove known harmful characters or sequences from user input before processing them in regex operations.
-
Security Tools and Static Analysis: Utilize SAST tools to identify regex injection vulnerabilities during the development process. These tools can provide early warnings about unsafe patterns or input concatenations.
By following these measures, you not only prevent Regular Expression Injection but also ensure that your application remains robust and secure against a variety of input-based exploits.
Configuration
The detector has the following configurable parameters:
-
sources
, that indicates the source kinds to check. -
neutralizations
, that indicates the neutralization kinds to check.
Unless you need to change the default behavior, you typically do not need to configure this detector.
References
-
CWE-625 : Permissive Regular Expression.
-
CWE-1333 : Inefficient Regular Expression Complexity.
-
OWASP Top 10 2021 - A03 : Injection.