欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

ASP 非法字符過濾函數(shù)

 更新時(shí)間:2006年10月18日 00:00:00   投稿:mdxy-dxy  
現(xiàn)在黑客經(jīng)常測試網(wǎng)站,一些網(wǎng)站經(jīng)常被各種注入,為程序員的成長提供了比較緊迫的環(huán)境,所以大家在寫程序的時(shí)候一定要注意網(wǎng)站安全問題

復(fù)制代碼 代碼如下:

<%
'==============================================================檢查提交數(shù)據(jù)合法性
Function CheckInput()
 '--------定義部份------------------
 Dim Fy_Post,Fy_Get,Fy_In,Fy_Inf,Fy_Xh,Fy_db,Fy_dbstr,Kill_IP,WriteSql
 '自定義需要過濾的字串,用 "|" 分隔
 Fy_In = "'|;|and|(|)|exec|insert|select|delete|update|count|*|%|chr|mid|master|truncate|char|declare"
 
 
 Fy_Inf = split(Fy_In,"|")
 '--------POST部份------------------
 If Request.Form <> "" Then
  For Each Fy_Post In Request.Form
   For Fy_Xh = 0 To Ubound(Fy_Inf)
    If Instr(LCase(Request.Form(Fy_Post)),Fy_Inf(Fy_Xh)) <> 0 Then
     Echo "<Script Language=JavaScript>alert('請(qǐng)不要在參數(shù)中包含非法字符!');history.go(-1);</Script>"
     Response.End
    End If
   Next
  Next
 End If
 '----------------------------------
 
 '--------GET部份-------------------
 If Request.QueryString <> "" Then
  For Each Fy_Get In Request.QueryString
   For Fy_Xh = 0 To Ubound(Fy_Inf)
    If Instr(LCase(Request.QueryString(Fy_Get)),Fy_Inf(Fy_Xh)) <> 0 Then
     Echo "<Script Language=JavaScript>alert('請(qǐng)不要在參數(shù)中包含非法字符!');history.go(-1);</Script>"
     Response.End
    End If
   Next
  Next
 End If
End Function
%>

相關(guān)文章

最新評(píng)論