0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 03:31:04 +01:00

Release note for CVE-2023-28836 in 4.1.4

This commit is contained in:
Matt Westcott 2023-04-03 11:19:56 +02:00
parent bc84bf9815
commit eefc3381d3
2 changed files with 7 additions and 0 deletions

View File

@ -293,6 +293,7 @@ Changelog
4.1.4 (xx.xx.xxxx) - IN DEVELOPMENT
~~~~~~~~~~~~~~~~~~
* Fix: CVE-2023-28836 - Stored XSS attack via ModelAdmin views (Thibaud Colas)
* Fix: Fix radio and checkbox elements shrinking when using a long label (Sage Abdullah)
* Fix: Fix select elements expanding beyond their container when using a long option label (Sage Abdullah)
* Fix: Fix timezone handling of `TemplateResponse`s for users with a custom timezone (Stefan Hammer, Sage Abdullah)

View File

@ -11,6 +11,12 @@ depth: 1
## What's new
### CVE-2023-28836: Stored XSS attack via ModelAdmin views
This release addresses a stored cross-site scripting (XSS) vulnerability on ModelAdmin views within the Wagtail admin interface. A user with a limited-permission editor account for the Wagtail admin could potentially craft pages and documents that, when viewed by a user with higher privileges, could perform actions with that user's credentials. The vulnerability is not exploitable by an ordinary site visitor without access to the Wagtail admin, and only affects sites with ModelAdmin enabled.
Many thanks to Thibaud Colas for reporting this issue. For further details, please see [the CVE-2023-28836 security advisory](https://github.com/wagtail/wagtail/security/advisories/GHSA-5286-f2rf-35c2).
### Bug fixes
* Fix radio and checkbox elements shrinking when using a long label (Sage Abdullah)