Headline
CVE-2022-29252: XWIKI-19292: Fix bad escaping · xwiki/xwiki-platform@27f8391
XWiki Platform Wiki UI Main Wiki is a package for managing subwikis. Starting with version 5.3-milestone-2, XWiki Platform Wiki UI Main Wiki contains a possible cross-site scripting vector in the WikiManager.JoinWiki
wiki page related to the “requestJoin” field. The issue is patched in versions 12.10.11, 14.0-rc-1, 13.4.7, and 13.10.3. The easiest available workaround is to edit the wiki page WikiManager.JoinWiki
(with wiki editor) according to the suggestion provided in the GitHub Security Advisory.
Permalink
Browse files
XWIKI-19292: Fix bad escaping
- Loading branch information
1 parent bd93532 commit 27f839133d41877e538d35fa88274b50a1c00b9b
@@ -245,7 +245,7 @@
<a href="$backUrl" class=’button secondary’>{{translation key="platform.wiki.users.join.request.cancel.label"/}}</a>
</span>
<input type=’hidden’ name=’wikiId’ value="$!wikiId"/>
<input type=’hidden’ name=’requestJoin’ value="$!request.requestJoin"/>
<input type=’hidden’ name=’requestJoin’ value="$escapetool.xml($!request.requestJoin)"/>
<input type="hidden" name="form_token" value="$!escapetool.xml($services.csrf.getToken())" />
</dl>
</form>
0 comments on commit 27f8391
Please sign in to comment.
Related news
### Impact We found a possible XSS vector in the `WikiManager.JoinWiki ` wiki page related to the "requestJoin" field. ### Patches The issue is patched in versions 12.10.11, 14.0-rc-1, 13.4.7, 13.10.3. ### Workarounds The easiest workaround is to edit the wiki page `WikiManager.JoinWiki` (with wiki editor) and change the line ``` <input type='hidden' name='requestJoin' value="$!request.requestJoin"/> ``` into ``` <input type='hidden' name='requestJoin' value="$escapetool.xml($!request.requestJoin)"> ``` ### References * https://jira.xwiki.org/browse/XWIKI-19292 * https://github.com/xwiki/xwiki-platform/commit/27f839133d41877e538d35fa88274b50a1c00b9b ### For more information If you have any questions or comments about this advisory: * Open an issue in [Jira XWiki](https://jira.xwiki.org) * Email us at [security mailing list](mailto:[email protected])