學ASP也有一段時間了,這幾天一直在寫自己的程序,也遇到了好多問題,我就不得不得考慮到一些現在的漏洞,比如,‘ 或 and 1=1等等的一些漏洞!別的先不管,今天我就來說說如何堵這個漏洞!
記得看了一篇文章(不記得什麼時候看的了),他用到了instr這個函數,具體的應該是這樣的。 If instr(Request("id")," ")>0 or instr(Request("id"),"'")>0 then response.redirect "index.ASP"
當然,也也可以在then後面寫你想要的!這個先不管!
讓我們先來學習instr這個函數吧:
語法 InStr([start, ]string1, string2[, compare])
InStr 函數的語法有以下參數:
[返回值]
InStr 函數返回以下值:
如果 InStr 返回
string1 為零長度 0
string1 為 Null Null
string2 為零長度 start
string2 為 Null Null
string2 沒有找到 0
在 string1 中找到 string2 找到匹配字符串的位置
start > Len(string2) 0
R> 下面的示例利用 InStr 搜索字符串:
Dim SearchString, SearchChar, MyPos
SearchString ="XXpXXpXXPXXP" ' 要在其中搜索的字符串。
SearchChar = "P" ' 搜索 "P"。
MyPos = Instr(4, SearchString, SearchChar, 1) '文本比較從第四個字符開始返回 6。
MyPos = Instr(1, SearchString, SearchChar, 0) '二進制比較從第1個字符開始返回 9。
MyPos = Instr(SearchString, SearchChar) ' 返回 9。
' 缺省為二進制比較(最後一個參數省略)。
MyPos = Instr(1, SearchString, "W") ' 二進制比較從第1個字符開始返回 0 (沒有找到 "W")。
if instr(Request("id")," ")>0 or instr(Request("id"),"'")>0 then