mirror of
https://github.com/pretix/pretix.git
synced 2026-08-22 12:42:00 +00:00
[SECURITY] Fix stored XSS in ticket confirmation page (CVE-2026-13225)
This commit is contained in:
committed by
Raphael Michel
parent
3442a543c8
commit
848f7fa0e5
@@ -4,6 +4,7 @@
|
|||||||
{% load eventsignal %}
|
{% load eventsignal %}
|
||||||
{% load money %}
|
{% load money %}
|
||||||
{% load eventurl %}
|
{% load eventurl %}
|
||||||
|
{% load wrap_in %}
|
||||||
{% block title %}{% trans "Registration details" %}{% endblock %}
|
{% block title %}{% trans "Registration details" %}{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h2 class="h1">
|
<h2 class="h1">
|
||||||
@@ -48,7 +49,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
<p>
|
<p>
|
||||||
{% blocktrans trimmed with email="<strong>"|add:order.email|add:"</strong>"|safe %}
|
{% blocktrans trimmed with email=order.email|wrap_in:"strong" %}
|
||||||
This order is managed for you by {{ email }}. Please contact them for any questions regarding
|
This order is managed for you by {{ email }}. Please contact them for any questions regarding
|
||||||
payment, cancellation or changes to this order.
|
payment, cancellation or changes to this order.
|
||||||
{% endblocktrans %}
|
{% endblocktrans %}
|
||||||
|
|||||||
Reference in New Issue
Block a user