應對ASP溢出漏洞我們應該做全面的字符過濾
一種是會員登陸
下面這一段代碼是把username的非法字符過濾掉
<%
username=trim(request
userpws=trim(request
if username="" or userpws="" or Instr(username
response
response
end if
%>
還有一種是通過地址欄輸入非法字符的溢出漏洞
如 一有頁面為newslist
我們從newslist
在newspage
<%
dim newsid
newsid=request(
%>
為安全起見我們至少要加一句
<%
dim newsid
newsid=tirm(request
if newsid=
response
response
%>
我說的基本上就以上兩點
雖然在INTERNET中我們還存在著一些漏洞
利用非法字符溢出漏洞攻擊網站簡單的應對方法
From:http://tw.wingwit.com/Article/program/net/201311/14380.html