[MAVEN:GHSA-H6GJ-6JJQ-H8G9] jQuery UI vulnerable to XSS when refreshing a checkboxradio with an HTML-like initial text label

Severity Moderate
Affected Packages 4
Fixed Packages 4
CVEs 1

Impact

Initializing a checkboxradio widget on an input enclosed within a label makes that parent label contents considered as the input label. If you call .checkboxradio( "refresh" ) on such a widget and the initial HTML contained encoded HTML entities, they will erroneously get decoded. This can lead to potentially executing JavaScript code.

For example, starting with the following initial secure HTML:
html
<label>
<input id="test-input">
&lt;img src=x onerror="alert(1)"&gt;
</label>

and calling:
js
$( "#test-input" ).checkboxradio();
$( "#test-input" ).checkboxradio( "refresh" );

will turn the initial HTML into:
html
<label>
<!-- some jQuery UI elements -->
<input id="test-input">
<img src=x onerror="alert(1)">
</label>

and the alert will get executed.

Patches

The bug has been patched in jQuery UI 1.13.2.

Workarounds

To remediate the issue, if you can change the initial HTML, you can wrap all the non-input contents of the label in a span:
html
<label>
<input id="test-input">
<span>&lt;img src=x onerror="alert(1)"&gt;</span>
</label>

References

https://blog.jqueryui.com/2022/07/jquery-ui-1-13-2-released/

For more information

If you have any questions or comments about this advisory, search for a relevant issue in the jQuery UI repo. If you don't find an answer, open a new issue.

ID
MAVEN:GHSA-H6GJ-6JJQ-H8G9
Severity
moderate
URL
https://github.com/advisories/GHSA-h6gj-6jjq-h8g9
Published
2022-07-18T17:07:36
(2 years ago)
Modified
2023-09-26T18:07:36
(11 months ago)
Rights
Maven Security Team
Other Advisories
Type Package URL Namespace Name / Product Version Distribution / Platform Arch Patch / Fix
Affected pkg:maven/org.webjars.npm/jquery-ui org.webjars.npm jquery-ui < 1.13.2
Fixed pkg:maven/org.webjars.npm/jquery-ui org.webjars.npm jquery-ui = 1.13.2
Affected pkg:maven/jQuery.UI.Combined jQuery.UI.Combined < 1.13.2
Fixed pkg:maven/jQuery.UI.Combined jQuery.UI.Combined = 1.13.2
Affected pkg:maven/jquery-ui-rails jquery-ui-rails < 7.0.0
Fixed pkg:maven/jquery-ui-rails jquery-ui-rails = 7.0.0
Affected pkg:maven/jquery-ui jquery-ui < 1.13.2
Fixed pkg:maven/jquery-ui jquery-ui = 1.13.2
# CVE Description CVSS EPSS EPSS Trend (30 days) Affected Products Weaknesses Security Advisories Exploits PoC Pubblication Date Modification Date
# CVE Description CVSS EPSS EPSS Trend (30 days) Affected Products Weaknesses Security Advisories PoC Pubblication Date Modification Date
Loading...