我繼承的傳統應用程序,並有如下的代碼片段與腳本有關的HTML標籤的不當中立性。Veracode的 - 在一個網頁(基本XSS)
private static void printKeywordCheckboxes(JspWriter out, ArrayList words, int type)
throws IOException {
LogbookKeyword thisWord;
Iterator iterWord = words.iterator();
while (iterWord.hasNext()) {
thisWord = (LogbookKeyword) iterWord.next();
out.println(" <input type=\"checkbox\" name=\"keywordCheckbox" +
type + "\" value=\"" +
thisWord.hashCode() + "\" checked/>" +
thisWord.getWord() + "<br>");
}
}
Veracode的拋出一個異常「的網頁(基本XSS)腳本相關的HTML標記的不當中和」在「通過out.println()」。
任何人都可以讓我知道這個問題應該怎麼解決嗎?任何幫助將不勝感激。
感謝蒂姆。您能否讓我知道清潔功能或與veracode幫助中心的鏈接。我無法在他們的網站上找到它 – user3487820