Regex Injection

ID

go.regex_injection

Severity

critical

Resource

Injection

Language

Go

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

Regex injection vulnerabilities happen when user input is directly included in regular expressions without proper validation or sanitization. This can lead to issues such as denial of service or information exposure. In Go, this typically involves the regexp package when user input forms part of the regex pattern.

package main

import (
	"fmt"
	"os"
    "regexp"
)

func main() {
	// Vulnerable: userPattern is taken directly from user input
	userPattern := os.Args[0]
	if match, _ := regexp.MatchString(userPattern, "test string"); match {
		fmt.Println("Match found!")
	} else {
		fmt.Println("No match found.")
	}
}

The code example shows direct use of userPattern in regexp.MatchString, allowing potentially malicious input to define complex or harmful regular expressions.

Remediation

To remediate Regular Expression Injection vulnerabilities, you can use the following strategies:

  1. Escape User Input: Always escape user input to be included in regex patterns, using the library’s 'regexp quoting' functions.

  2. 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.

  3. 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.

  4. Input Filtering: Apply input filtering to remove known harmful characters or sequences from user input before processing them in regex operations.

  5. 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