演绎丶那神话 发表于 2011 年 10 月 10 日 13:14:41

ASP防注入代码

能增加注入的安全性能.

<%on error resume next %>
<%
'--------定义部份------------------

'自定义需要过滤的字串,用 "枫" 分隔
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

Response.Write "<Script Language=JavaScript>alert('非法操作!系统做了如下记录↓\n\n您的注入行为将被提交到G A局!');</Script>"
Response.Write "非法操作!您的纪录已经被提交到G A局↓<br>"
Response.Write "操作IP:"&Request.ServerVariables("REMOTE_ADDR")&"<br>"
Response.Write "操作时间:"&Now&"<br>"
Response.Write "操作页面:"&Request.ServerVariables("URL")&"<br>"
Response.Write "提交方式:POST<br>"
Response.Write "提交参数:"&Fy_Post&"<br>"
Response.Write "提交数据:"&Request.Form(Fy_Post)
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

Response.Write "<Script Language=JavaScript>alert('非法操作!系统做了如下记录↓\n\n您的行为已经同时提交到G A局!情况严重的将追究刑事责任.');</Script>"
Response.Write "非法操作!G A局做了如下记录,情节严重的依法追究刑事责任↓<br>"
Response.Write "操作IP:"&Request.ServerVariables("REMOTE_ADDR")&"<br>"
Response.Write "操作时间:"&Now&"<br>"
Response.Write "操作页面:"&Request.ServerVariables("URL")&"<br>"
Response.Write "提交方式:GET<br>"
Response.Write "提交参数:"&Fy_Get&"<br>"
Response.Write "提交数据:"&Request.QueryString(Fy_Get)
Response.End
End If
Next
Next
End If
%>

jia159951 发表于 2011 年 10 月 13 日 20:10:40

这个怎么用啊

xybug 发表于 2011 年 10 月 27 日 14:11:30

asp很少用了

dev 发表于 2011 年 11 月 1 日 11:19:06

现在还有用么。。。。。。。。。。。。。?

dh3281246 发表于 2011 年 12 月 3 日 15:12:43

本帖最后由 dh3281246 于 2011-12-3 15:13 编辑

一般用PHP的CMS程序……
页: [1]
查看完整版本: ASP防注入代码