Explore

Rule Explorer

Search the public rule index by CVE, GHSA, CWE, language, framework, author, or rule slug. Filter by language, framework, severity, confidence, license, and validation status.

Public rules
4797
Downloads
6.6M
Verified
4797
Authors
2
Search the rule indexUse CVE, GHSA, CWE, language, framework, package, or rule slug.
22 rules matched. Showing 22 loaded rules.
Publish rule
CVE-2026-75484: Bandit Http2 Unvalidated Header Field Valuescve-2026-75484-bandit-http2-unvalidated-header-field-values

HTTP/2 header parsing does not validate header field values for CR, LF, or NUL characters (RFC 9113 §8.2.1). Unsanitized control characters in request headers can lead to log injection, HTTP request smuggling, or response splitting downstream.

by Provallyupdated 2026-09-02Apache-2.0
1070 direct107 via packs
downloads
73quality
CVE-2026-73495: Scala Http1 Parser Merged Trailerscve-2026-73495-scala-http1-parser-merged-trailers

`headerComplete` callback in HTTP parser does not check `inChunkedHeaders()` before appending header fields. This can cause HTTP/1.1 chunked trailer fields to be improperly merged into request headers, enabling HTTP header injection and proxy control bypasses (CVE-2026-73495).

by Provallyupdated 2026-09-02Apache-2.0
1080 direct108 via packs
downloads
70quality
CVE-2026-64785: Niohttp2 Http2tohttp1codec Swift Cwe 000 Cve 2026 64785cve-2026-64785-niohttp2-http2tohttp1codec-swift-cwe-000-cve-2026-64785

Incomplete validation of HTTP/2 header or pseudo-header values allows space and control characters (0x01-0x1F, 0x20, 0x7F) through to HTTP/1.1 request lines or headers, potentially enabling HTTP request smuggling or response splitting (CWE-444, CWE-113).

by Provallyupdated 2026-09-02Apache-2.0
1070 direct107 via packs
downloads
73quality
CVE-2026-53878: Python Regex Validation Newline Bypasscve-2026-53878-python-regex-validation-newline-bypass

Constructing a regular expression using `$` to anchor the end can result in validation bypasses. In Python's `re` module, `$` matches the absolute end of the string OR just before a newline at the end. If this regex is used to validate input which is later embedded into a different context (like HTTP headers), it could permit newline injection. Use `\Z` inst

by Provallyupdated 2026-09-02Apache-2.0
1110 direct111 via packs
downloads
68quality
CVE-2026-49853: Python Tornado Http Splitting Xsscve-2026-49853-python-tornado-http-splitting-xss

Tornado framework's error handling accepts and processes custom HTTP reason phrases without sufficient validation against Control Characters like CRLF (leading to HTTP Header Injection) or escaping before embedding into HTML response bodies (Cross-Site Scripting). Ensure that custom reason phrases are properly validated (e.g., matching a strict ABNF token pa

by Provallyupdated 2026-06-23Apache-2.0
1.9K0 direct1.9K via packs
downloads
73quality
CVE-2026-48861: Missing Http Method Validation Crlfcve-2026-48861-missing-http-method-validation-crlf

HTTP method is merged into the request serialization list without prior validation. An attacker can pass malicious methods containing CRLF sequences to inject HTTP headers or smuggle requests. Ensure the given method string is validated to contain only allowed characters before constructing the payload.

by Provallyupdated 2026-06-12Apache-2.0
2.3K0 direct2.3K via packs
downloads
70quality
CVE-2026-48598: Elixir Unescaped Kv Interpolationcve-2026-48598-elixir-unescaped-kv-interpolation

Constructing headers or multipart parameters by directly interpolating untrusted values into a `key="value"` string format without escaping allows CRLF and double-quote injection attacks. In contexts like Content-Disposition headers, this can lead to header smuggling, parameter forgery, or multipart body manipulation. Ensure that values are checked for `\r`,

by Provallyupdated 2026-06-12Apache-2.0
2.3K0 direct2.3K via packs
downloads
65quality
CVE-2026-38969: Ruby Webrick Chunked Trailer Injectioncve-2026-38969-ruby-webrick-chunked-trailer-injection

WEBrick indiscriminately appends HTTP chunked trailers to the raw request headers buffer and parses them in conjunction with the primary request headers using HTTPUtils::parse_header. This bypasses the trailer/header boundary and allows trailers to overwrite authoritative headers like Content-Length or Host, enabling HTTP Request Smuggling. The patch cleanly

by Provallyupdated 2026-09-02Apache-2.0
1070 direct107 via packs
downloads
74quality
CVE-2026-38967: Cpp Httplib Crlf Injectioncve-2026-38967-cpp-httplib-crlf-injection

Functions that set or add HTTP headers insert map entries without sanitizing the key and value to remove Carriage Return (CR, \r) and Line Feed (LF, \n) characters. Failing to do so can allow HTTP Response Header Injection (CRLF injection).

by Provallyupdated 2026-06-23Apache-2.0
1.9K0 direct1.9K via packs
downloads
78quality
CVE-2026-34519: Python Incomplete Crlf Validationcve-2026-34519-python-incomplete-crlf-validation

The code checks for the presence of newline characters ('\n') but fails to check for carriage returns ('\r'). In contexts where HTTP headers or status lines are constructed, failing to reject '\r' allows an attacker to inject HTTP control characters, leading to HTTP Response Splitting or CRLF injection. Ensure that both '\r' and '\n' are validated.

by Provallyupdated 2026-06-23Apache-2.0
1.9K0 direct1.9K via packs
downloads
77quality
CVE-2026-34514: Python Unvalidated Content Type Headercve-2026-34514-python-unvalidated-content-type-header

A function parameter is assigned to a header dictionary (e.g., content_type) without prior verification for carriage return ('\r') or newline ('\n') characters. If attacker-controlled, this can lead to header injection or multipart structure corruption.

by Provallyupdated 2026-06-23Apache-2.0
1.9K0 direct1.9K via packs
downloads
78quality
CVE-2026-0865: Cpython Wsgiref Headers Crlf Injectioncve-2026-0865-cpython-wsgiref-headers-crlf-injection

Validation missing for C0 control characters (\x00-\x1f, \x7f) inside HTTP headers. Returning string values directly without checking for '\r' or '\n' can lead to CRLF injection vulnerabilities.

by Provallyupdated 2026-06-23Apache-2.0
1.9K0 direct1.9K via packs
downloads
74quality
Cookie RequestParamToCookiegitlab-sast-scala-cookie-rule-requestparamtocookie

This code constructs an HTTP Cookie using an untrusted HTTP parameter. If this cookie is added to an HTTP response, it will allow a HTTP response splitting vulnerability. See http://en.wikipedia.org/wiki/HTTP_response_splitting for more information.

ScalaCWE-113
by GitLab Security Productsupdated 2026-06-03MIT
2.3K0 direct2.3K via packs
downloads
92quality
Cookie RequestParamToHeadergitlab-sast-scala-cookie-rule-requestparamtoheader

This code directly writes an HTTP parameter to an HTTP header, which allows for a HTTP response splitting vulnerability. See http://en.wikipedia.org/wiki/HTTP_response_splitting for more information.

ScalaCWE-113
by GitLab Security Productsupdated 2026-06-03MIT
2.3K0 direct2.3K via packs
downloads
92quality
Cookie RequestParamToHeadergitlab-sast-java-cookie-rule-requestparamtoheader

HTTP Response Splitting is a vulnerability where Carriage Return (CR `\r`) and Line Feed (LF `\n`) characters are introduced into an HTTP header from user-supplied input. By injecting the `\r\n` character sequence, an adversary could potentially modify how the response is interpreted by the client or any down stream caching services. This could allow an adve

by GitLab Security Productsupdated 2026-06-03MIT
2.3K0 direct2.3K via packs
downloads
86quality
Cookie RequestParamToHeadergitlab-sast-rules-lgpl-kotlin-cookie-rule-requestparamtoheader

This code directly writes an HTTP parameter to an HTTP header, which allows for a HTTP response splitting vulnerability. See http://en.wikipedia.org/wiki/HTTP_response_splitting for more information.

KotlinCWE-113
by GitLab Security Productsupdated 2026-06-03LGPL-3.0-only
2.3K0 direct2.3K via packs
downloads
86quality
Cookie HttpResponseSplittinggitlab-sast-rules-lgpl-kotlin-cookie-rule-httpresponsesplitting

When an HTTP request contains unexpected CR and LF characters, the server may respond with an output stream that is interpreted as two different HTTP responses (instead of one). An attacker can control the second response and mount attacks such as cross-site scripting and cache poisoning attacks.

KotlinCWE-113
by GitLab Security Productsupdated 2026-06-03LGPL-3.0-only
2.3K0 direct2.3K via packs
downloads
86quality
Cookie HttpResponseSplittinggitlab-sast-scala-cookie-rule-httpresponsesplitting

When an HTTP request contains unexpected CR and LF characters, the server may respond with an output stream that is interpreted as two different HTTP responses (instead of one). An attacker can control the second response and mount attacks such as cross-site scripting and cache poisoning attacks.

ScalaCWE-113
by GitLab Security Productsupdated 2026-06-03MIT
2.3K0 direct2.3K via packs
downloads
86quality
Cookie HttpResponseSplittinggitlab-sast-java-cookie-rule-httpresponsesplitting

HTTP Response Splitting is a vulnerability where Carriage Return (CR `\r`) and Line Feed (LF `\n`) characters are introduced into an HTTP header from user-supplied input. By injecting the `\r\n` character sequence, an adversary could potentially modify how the response is interpreted by the client or any downstream caching services. This could allow an adver

by GitLab Security Productsupdated 2026-06-03MIT
2.3K0 direct2.3K via packs
downloads
86quality
All matching rules loaded.