diff --git a/docs/v2.10.0/_static/jquery-3.5.1.js b/docs/v2.10.0/_static/jquery-3.5.1.js index 50937333b9..e287eb4efd 100644 --- a/docs/v2.10.0/_static/jquery-3.5.1.js +++ b/docs/v2.10.0/_static/jquery-3.5.1.js @@ -9219,6 +9219,12 @@ function ajaxConvert( s, response, jqXHR, isSuccess ) { } else if ( prev !== "*" && prev !== current ) { // Seek a direct converter + + // Mitigate possible XSS vulnerability (gh-2432) + if ( s.crossDomain && current === "script" ) { + continue; + } + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; // If none found, seek a pair