Microdot has HTTP response splitting in Response.set_cookie()
Low severity
GitHub Reviewed
Published
Apr 24, 2026
in
miguelgrinberg/microdot
•
Updated May 13, 2026
Description
Published to the GitHub Advisory Database
May 5, 2026
Reviewed
May 5, 2026
Published by the National Vulnerability Database
May 11, 2026
Last updated
May 13, 2026
Impact
The
Response.set_cookie()method does not sanitize its string arguments, and in particular will not detect the presence of the\r\nsequence 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.
Patches
Upgrade to version 2.6.1.
Workarounds
Do not pass untrusted data to the
Response.set_cookie()method.References