Using vaadin 7.7.4 ran burb suite profesional against my solution
Burp complains agaisnt a construction in vaadinBootstrap.js
It is most certainly a false positive but I need some hint in explaining why it is so to the pen tester.
I am not a js developer I am a java developper thats why I like using vaadin
The full text of the finding is:
The application may be vulnerable to DOM-based open redirection. Data is read from window.location.href and passed to the ‘open()’ function of an XMLHttpRequest object via the following statements:
url = window.location.href.replace(/#.*/,‘’);
r.open(‘POST’, url, true);
DOM-based open redirection arises when a script writes controllable data into the target of a redirection in an unsafe way. An attacker may be able to use the vulnerability to construct a URL that, if visited by another application user, will cause a redirection to an arbitrary external domain. This behavior can be leveraged to facilitate phishing attacks against users of the application. The ability to use an authentic application URL, targeting the correct domain and with a valid SSL certificate (if SSL is used), lends credibility to the phishing attack because many users, even if they verify these features, will not notice the subsequent redirection to a different domain.
Any hints to what I should explain the PEN testers?