海外邮件中继,海外退信中继,美国高速VPS,不限流量VPN,邮局维护和管理,邮件网关,EMOS邮件中继,POSTFIX邮件中继,Winwebmail邮件中继,Winmail邮件中继,DBMail邮件中继,JDMail邮件中继,Exchange邮件中继,MDaemon邮件中继 淘宝店:http://shantan.taobao.com 云邮科技官网:www.yunrelay.com
【字体设置:大 中 小】
这个方法主要是在连接数据库的文件中,一般是conn.asp中加了点内容来达到防止注入的目的
<%
dim mdb
mdb="data/#data.mdb" '数据库存放地点,修改你自己的
'这里是连接数据库的其它内容
'----------防SQL注入通用代码-------
On Error Resume Next
Dim strTemp,hk
If Trim(Request.QueryString) <> "" Then strTemp =Trim(Request.QueryString)
strTemp = LCase(strTemp)
hk=0
If Instr(strTemp,"%")<>0 then hk=1
If Instr(strTemp,"count(")<>0 then hk=1
If Instr(strTemp,"asc(")<>0 then hk=1
If Instr(strTemp,"mid(")<>0 then hk=1
If Instr(strTemp,"char(")<>0 then hk=1
If Instr(strTemp,"xp_cmdshell")<>0 then hk=1
If Instr(strTemp,"'")<>0 then hk=1
if hk=1 then
Response.Write("<center>感谢你的检测,如果发现漏洞请通知我,谢谢!")
response.end
hk=0
End If
'-----end 防止SQL注入------
%>
经过本人测试,有漏洞的网站在加了此代码以后可以达到防止注入的效果.
可以饶过 域名旁注工具3.5,啊D2.0超酷注射工具等等注入工具
谢谢。
发表评论 - 不要忘了输入验证码哦!