You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! We recently upgraded jquery-ui to version 1.13.2 for fixing vulnerabilites, but our security scanning tool detected two issues from jquery-ui. It seems like the issues are already existing in the previous version, not introduced by the latest version, so I'm wondering, are they in the process of fixing, or they have been investigated but dismissed please?
The details of these two issues are as followed:
In line 912 of jquery-ui.js, target = typeof options.of === "string" ? $( document ).find( options.of ) : $( options.of ), The detected issue is potential XSS vulnerability in the '$.fn.position' plugin.
In line 17945 of jquery-ui.js, return hash ? hash.replace( /[!"$%&'()*+,.\/:;<=>?@\[\]\^`{|}~]/g, "\\$&" ) : "";, the detected issue is Incomplete string escaping or encoding -- This does not escape backslash characters in the input.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi! We recently upgraded jquery-ui to version 1.13.2 for fixing vulnerabilites, but our security scanning tool detected two issues from jquery-ui. It seems like the issues are already existing in the previous version, not introduced by the latest version, so I'm wondering, are they in the process of fixing, or they have been investigated but dismissed please?
The details of these two issues are as followed:
target = typeof options.of === "string" ? $( document ).find( options.of ) : $( options.of ),
The detected issue ispotential XSS vulnerability in the '$.fn.position' plugin
.return hash ? hash.replace( /[!"$%&'()*+,.\/:;<=>?@\[\]\^`{|}~]/g, "\\$&" ) : "";
, the detected issue isIncomplete string escaping or encoding -- This does not escape backslash characters in the input
.Thanks!
Beta Was this translation helpful? Give feedback.
All reactions