We use jquery.mobile-1.1.1.min.js in our application. Burp scan found Link manipulation (DOM-based) vulnerability in jquery.mobile-1.1.1.min.js:
[SNIP]
<a href='testurl' />").prependTo(e)[0].href;c[0].href=h||location.pathname;d&&d.remove();return f.indexOf(b)===0}(),cssPointerEvents:function(){var a=k.createElement("x"),b=k.documentElement,
c=t.getComputedStyle;if(!("pointerEvents"in a.style))return false;a.style.pointerEve
Issue detail
The application may be vulnerable to DOM-based link manipulation. Data is read from location.pathname
and passed to the 'href' property of a DOM element via the following statement: c[0].href=h||location.pathname;
Could you tell me if there is real vulnerability in the jquery source code and bug is needed for jquery or there is just false positive finding of Burp Scan?
Thanks.