在 VERACODE 工具中运行我的应用程序时,使用静态扫描,很少遇到中低级问题。我面临的问题之一是网页中与脚本相关的 HTML 标签的不正确中和(基本 XSS)(CWE ID 80)。这发生在我的应用程序的许多屏幕中。
我的代码中的一个这样的例子如下:
<table border="1" width="500">
<% java.util.Enumeration names = request.getParameterNames();
while (names.hasMoreElements()) {
String name = (String)names.nextElement();
String[] values = request.getParameterValues(name);
%>
<tr>
<td align="left"><b><%= name %></b></td>
<td align="left">
<% for (int i = 0; i < values.length; i++) { %>
<%= values[i] %>
<%
if (i < values.length - 1) { %>
<%= ", " %>
<% }
} %>
</td>
</tr>
<% } %>
</table>
错误在<%= name %>行中抛出 。请帮我解决这个 XSS 问题。