Is it possible to make XSS attacks through html comments with JSP code inside?
Posted
by Dmitriy Matveev
on Stack Overflow
See other posts from Stack Overflow
or by Dmitriy Matveev
Published on 2010-05-06T09:22:31Z
Indexed on
2010/05/06
9:28 UTC
Read the original article
Hit count: 250
Hello! Is it true that following code adds a XSS vulnerability to some JPS page?
<!-- <%=paramName%>=<%=request.getParameter(paramName)%><BR> -->
It looks like a "leftover debug" and definitely should be removed from the code, but how dangerous is it?
© Stack Overflow or respective owner