ASP 非法字符过滤函数
ASP 非法字符过滤函数
发布时间:2016-12-29 来源:查字典编辑
摘要:复制代码代码如下:

复制代码 代码如下:

<%

'==============================================================检查提交数据合法性

FunctionCheckInput()

'--------定义部份------------------

DimFy_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部份------------------

IfRequest.Form<>""Then

ForEachFy_PostInRequest.Form

ForFy_Xh=0ToUbound(Fy_Inf)

IfInstr(LCase(Request.Form(Fy_Post)),Fy_Inf(Fy_Xh))<>0Then

Echo"<ScriptLanguage=JavaScript>alert('请不要在参数中包含非法字符!');history.go(-1);</Script>"

Response.End

EndIf

Next

Next

EndIf

'----------------------------------

'--------GET部份-------------------

IfRequest.QueryString<>""Then

ForEachFy_GetInRequest.QueryString

ForFy_Xh=0ToUbound(Fy_Inf)

IfInstr(LCase(Request.QueryString(Fy_Get)),Fy_Inf(Fy_Xh))<>0Then

Echo"<ScriptLanguage=JavaScript>alert('请不要在参数中包含非法字符!');history.go(-1);</Script>"

Response.End

EndIf

Next

Next

EndIf

EndFunction

%>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新ASP教程学习
热门ASP教程学习
编程开发子分类