主頁 > 知識庫 > asp 獲取參數(shù)值與sql安全過濾參數(shù)函數(shù)代碼

asp 獲取參數(shù)值與sql安全過濾參數(shù)函數(shù)代碼

熱門標簽:石家莊慧營銷外呼系統(tǒng) java外呼系統(tǒng)是什么 濟源電銷外呼系統(tǒng)線路 創(chuàng)意電話機器人 外呼線路批發(fā) 世界地圖標注了哪些城市 武穴地圖標注 地圖標注陽江 梧州市地圖標注
復制代碼 代碼如下:

'獲取參數(shù)值
Function getForm(element,ftype)
Select case ftype
case "get"
getForm=trim(request.QueryString(element))
case "post"
getForm=trim(request.Form(element))
case "both"
if isNul(request.QueryString(element)) then getForm=trim(request.Form(element)) else getForm=trim(request.QueryString(element))
End Select
getForm=replace(getForm,CHR(34),"quot;")
getForm=replace(getForm,CHR(39),"apos;")
End Function
'主要功能就是獲取參數(shù)值,比直接用request("element")要安全很多


'過濾參數(shù)
Function filterPara(byVal Para)
filterPara=preventSqlin(Checkxss(Para))
End Function

Function preventSqlin(content)
dim sqlStr,sqlArray,i,speStr
sqlStr="|>|%|%27|'|''|;|*|and|exec|dbcc|alter|drop|insert|select|update|delete|count|master|truncate|char|declare|where|set|declare|mid|chr"
if isNul(content) then Exit Function
sqlArray=split(sqlStr,"|")
for i=lbound(sqlArray) to ubound(sqlArray)
if instr(lcase(content),sqlArray(i))>0 then
select case sqlArray(i)
case "":speStr="lt;"
case ">":speStr="gt;"
case "'","""":speStr="quot;"
'case ";":speStr=";"
case else:speStr=""
end select
content=replace(content,sqlArray(i),speStr,1,-1,1)
end if
next
preventSqlin=content
End Function
'上面的參數(shù)過濾函主要是防止sql注入,加強的防護。

標簽:揭陽 南寧 來賓 淮北 迪慶 甘南 滁州 唐山

巨人網(wǎng)絡通訊聲明:本文標題《asp 獲取參數(shù)值與sql安全過濾參數(shù)函數(shù)代碼》,本文關鍵詞  asp,獲取,參,數(shù)值,與,sql,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權(quán)與本站無關。
  • 相關文章
  • 下面列出與本文章《asp 獲取參數(shù)值與sql安全過濾參數(shù)函數(shù)代碼》相關的同類信息!
  • 本頁收集關于asp 獲取參數(shù)值與sql安全過濾參數(shù)函數(shù)代碼的相關信息資訊供網(wǎng)民參考!
  • 推薦文章