diff --git a/code/jeeplatform-admin/src/main/webapp/plugins/ueditor1_4_3_2/third-party/jquery-1.10.2.js b/code/jeeplatform-admin/src/main/webapp/plugins/ueditor1_4_3_2/third-party/jquery-1.10.2.js index c5c6482..0de1a02 100644 --- a/code/jeeplatform-admin/src/main/webapp/plugins/ueditor1_4_3_2/third-party/jquery-1.10.2.js +++ b/code/jeeplatform-admin/src/main/webapp/plugins/ueditor1_4_3_2/third-party/jquery-1.10.2.js @@ -8388,6 +8388,11 @@ function ajaxConvert( s, response, jqXHR, isSuccess ) { // Convert response if prev dataType is non-auto and differs from current } else if ( prev !== "*" && prev !== current ) { + // Mitigate possible XSS vulnerability (gh-2432) + if ( s.crossDomain && current === "script" ) { + continue; + } + // Seek a direct converter conv = converters[ prev + " " + current ] || converters[ "* " + current ];