Skip to content

Cross-Site Scripting in Wagtail

Moderate severity GitHub Reviewed Published Jul 20, 2020 in wagtail/wagtail • Updated Jan 9, 2023

Package

pip wagtail (pip)

Affected versions

>= 2.8.0, < 2.9.3
< 2.7.4

Patched versions

2.9.3
2.7.4

Description

Impact

When a form page type is made available to Wagtail editors through the wagtail.contrib.forms app, and the page template is built using Django's standard form rendering helpers such as form.as_p (as directed in the documentation), any HTML tags used within a form field's help text will be rendered unescaped in the page. Allowing HTML within help text is an intentional design decision by Django; however, as a matter of policy Wagtail does not allow editors to insert arbitrary HTML by default, as this could potentially be used to carry out cross-site scripting attacks, including privilege escalation. This functionality should therefore not have been made available to editor-level users.

The vulnerability is not exploitable by an ordinary site visitor without access to the Wagtail admin.

Patches

Patched versions have been released as Wagtail 2.7.4 (for the LTS 2.7 branch) and Wagtail 2.9.3 (for the current 2.9 branch). In these versions, help text will be escaped to prevent the inclusion of HTML tags. Site owners who wish to re-enable the use of HTML within help text (and are willing to accept the risk of this being exploited by editors) may set WAGTAILFORMS_HELP_TEXT_ALLOW_HTML = True in their configuration settings.

Workarounds

Site owners who are unable to upgrade to the new versions can secure their form page templates by rendering forms field-by-field as per Django's documentation, but omitting the |safe filter when outputting the help text.

Acknowledgements

Many thanks to Timothy Bautista for reporting this issue.

For more information

If you have any questions or comments about this advisory:

References

@gasman gasman published to wagtail/wagtail Jul 20, 2020
Reviewed Jul 20, 2020
Published to the GitHub Advisory Database Jul 20, 2020
Last updated Jan 9, 2023

Severity

Moderate
5.7
/ 10

CVSS base metrics

Attack vector
Network
Attack complexity
High
Privileges required
High
User interaction
Required
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
None
CVSS:3.1/AV:N/AC:H/PR:H/UI:R/S:U/C:H/I:H/A:N

Weaknesses

CVE ID

CVE-2020-15118

GHSA ID

GHSA-2473-9hgq-j7xw

Source code

No known source code

Credits

Loading Checking history
See something to contribute? Suggest improvements for this vulnerability.