byte b[] = do.getFileUploaded();
servletoutputstream = response.getOutputStream();
servletoutputstream.write(b, 0, b.length);
我在servletoutputstream.write(b,0,b.length)中遇到了XSS攻擊問題;語法說:「從servlet請求(」b「)接收到的數據到servlet響應(可能的XSS攻擊)」如何修復它。我正在使用ESAPI來轉義和過濾其他xss攻擊問題。有沒有人有任何/替代解決方案這一個 在此先感謝。xss攻擊問題 - 用servletoutputstream.write(b,0,b.length);
它在功能上可能沒有意義,但在技術上無效嗎? –
你的工具告訴你它爲XSS攻擊提供了一種方法。我會打電話給那個無效的。 – EJP