解读ASP程序中通用防SQL注入攻击代码_ASP教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!

推荐:用红色显示ASP查询数据时得到的记录关键词
% response.write replace(rs(字段X),searchname,font color=#FF0000 searchname /font) % 说明:rs为记录集对象,searchname为搜索的关键词 转载自HTMer[http://www.htmer.com/]

SQL注入一般的http请求不外乎get和post,所以只要我们在文件中过滤所有post或者get请求中的参数信息中非法字符,就可以防SQL注入攻击。
    IIS传递给asp.dll的get请求是以字符串的形式,当传递给Request.QueryString数据后,asp解析器会分析Request.QueryString的信息,然后根据"&",分出各个数组内的数据。下面分别列出get拦截和post拦截的代码:
'======get拦截======
dim sql_injdata
SQL_injdata = "'|and|exec|insert|select|delete|update|count|*|%|chr|mid|master|truncate|char|declare"
SQL_inj = split(SQL_Injdata,"|")
If Request.QueryString<>"" Then
For Each SQL_Get In Request.QueryString
For SQL_Data=0 To Ubound(SQL_inj)
if instr(Request.QueryString(SQL_Get),Sql_Inj(Sql_DATA))>0 Then
Response.Write "<Script Language='javascript'>alert('HTMer.com系统提示↓nn请不要在参数中包含非法字符尝试注入!nnHTTP://www.htmer.com');history.back(-1)</Script>"
Response.end
end if
next
next
end If

 

'======post拦截======
If Request.Form<>"" Then
For Each Sql_Post In Request.Form
For SQL_Data=0 To Ubound(SQL_inj)
if instr(Request.Form(Sql_Post),Sql_Inj(Sql_DATA))>0 Then
Response.Write "<Script Language='javascript'>alert('HTMer.com系统提示↓nn请不要在参数中包含非法字符尝试注入!nnHTTP://www.htmer.com');history.back(-1)</Script>"
Response.end
end if
next
next
end if

    好了,我们已经实现了get和post请求的信息拦截,你只需要在conn.asp之类的打开数据库文件之前引用这个页面即可。

分享:在asp程序中过滤不文明字符的函数
% Functioncutbadchar(str) badstr=不|文|明|字|符|列|表|格|式’此处填写不文明的词语,用|分开 badword=split(badstr,|) Fori=0toUbound(badword) Ifinstr(str,badword(i))0then str=Replace(str,badword(i),***) EndIf Next cutbadchar=str EndFunct

来源:模板无忧//所属分类:ASP教程/更新时间:2010-05-19
相关ASP教程