新书推介:《语义网技术体系》
作者:瞿裕忠,胡伟,程龚
   XML论坛     W3CHINA.ORG讨论区     计算机科学论坛     SOAChina论坛     Blog     开放翻译计划     新浪微博  
 
  • 首页
  • 登录
  • 注册
  • 软件下载
  • 资料下载
  • 核心成员
  • 帮助
  •   Add to Google

    >> 本版讨论.NET,C#,ASP,VB技术
    [返回] 中文XML论坛 - 专业的XML技术讨论区计算机技术与应用『 Dot NET,C#,ASP,VB 』 → [转帖]两个小函数让你的ASP程序对SQL注入免疫! 查看新帖用户列表

      发表一个新主题  发表一个新投票  回复主题  (订阅本版) 您是本帖的第 5937 个阅读者浏览上一篇主题  刷新本主题   平板显示贴子 浏览下一篇主题
     * 贴子主题: [转帖]两个小函数让你的ASP程序对SQL注入免疫! 举报  打印  推荐  IE收藏夹 
       本主题类别:     
     Qr 帅哥哟,离线,有人找我吗?
      
      
      威望:9
      等级:博士二年级(版主)
      文章:4392
      积分:29981
      门派:XML.ORG.CN
      注册:2004/5/15

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给Qr发送一个短消息 把Qr加入好友 查看Qr的个人资料 搜索Qr在『 Dot NET,C#,ASP,VB 』的所有贴子 访问Qr的主页 引用回复这个贴子 回复这个贴子 查看Qr的博客楼主
    发贴心情 [转帖]两个小函数让你的ASP程序对SQL注入免疫!

    两个小函数让你的ASP程序对SQL注入免疫!

    Rem ## 长整数转换
    Function toNum(s, default)
    If IsNumeric(s) and s <> "" then
    toNum = CLng(s)
    Else
    toNum = default
    End If
    End Function

    Rem ## SQL 语句转换
    Function toSql(str)
    If IsNull(str) Then str = ""
    toSql = replace(str, "'", "''")
    End Function

    示例:
    Dim sql
    Dim strWhere, strName, intAge
    strName = toSql(request("user"))
    intAge = toNum(request("age"), 20)
    sql = "SELECT * FROM [USER]" & _
    "WHERE [AGE] > " & strName & _
    " AND [USERNAME] = '" & intAge & "'"

    一般情况下, 通过上面两个函数的过虑, 可以杜绝网上的SQL注入攻击!如果你觉得有需要, 可以加上对chr(0)的替换, 将toSql函数改为如下:
    Function toSql(str)
    If IsNull(str) Then str = ""
    str = replace(str, chr(0), "")
    toSql = replace(str, "'", "''")
    End Function

    另注:

    ***********************************************************************
    检测外部提交的函数
    Function CheckUrlRefer()
    Dim strLocalUrl, intUrlLen, strUrlRefer
    strLocalUrl = "http://127.0.0.1"
    intUrlLen = Len(strLocalUrl)
    strUrlRefer = LCase(request.ServerVariables("HTTP_REFERER") & "")
    '检测前一个页面是否来自 strLocalUrl
    If Left(strUrlRefer, intUrlLen) = strLocalUrl Then
    CheckUrlRefer = True
    Else
    CheckUrlRefer = False
    End If
    End Function
    ***********************************************************************
    该函数可以帮助你抵挡外部的SQL注入测试, 只需要在页面的头部调用即可.

    通过简单的两个小函数, 让你的ASP程序更安全!

    欢迎高手指正(请将绕过这两个函数的方法写出来)!

    相关讨论页面:
    http://community.csdn.net/Expert/TopicView.asp?id=3585010
    http://community.csdn.net/Expert/TopicView.asp?id=3582230

    http://community.csdn.net/Expert/topic/3589/3589480.xml?temp=.4866449
    /////////////////////////////////////////////////////////////////////////////////////////////////////////////

    dim qs,errc,iii
    qs=request.servervariables("query_string")
    dim nothis(18)
    nothis(0)="net user"
    nothis(1)="xp_cmdshell"
    nothis(2)="/add"
    nothis(3)="exec%20master.dbo.xp_cmdshell"
    nothis(4)="net localgroup administrators"
    nothis(5)="select"
    nothis(6)="count"
    nothis(7)="asc"
    nothis(8)="char"
    nothis(9)="mid"
    nothis(10)="'"
    nothis(11)=":"
    nothis(12)=""""
    nothis(13)="insert"
    nothis(14)="delete"
    nothis(15)="drop"
    nothis(16)="truncate"
    nothis(17)="from"
    nothis(18)="%"
    errc=false
    for iii= 0 to ubound(nothis)
    if instr(qs,nothis(iii))<>0 then
    errc=true
    end if
    next
    if errc then
    Response.Write("对不起,非法URL地址请求!")
    response.end
    end if

    ***************************************************************

    当然这方法做得太“绝”了,但是我也是没有办法啊。这个方法是在网上看到的,运行于一个网站上,现在一切良好。为了安全我只能这样。我想只要有关SQL的敏感单词都进行过滤掉应该没有什么吧,当然像楼主的做到那一步是基本上可以了,可以修补一下用用。记得我最初用的是《SQL注入天书》上面提供的防范方法,后来才改用这个。
    将我以前用的代码也帖出来供参考,大家有兴趣可以去百度或GOOGLE中搜索一下《SQL注入天书》了解

    使用这个函数,对客户端提交来的数据进行验证。。。

    <%
    Function SafeRequest(ParaName,ParaType)
    '--- 传入参数 ---
    'ParaName:参数名称-字符型
    'ParaType:参数类型-数字型(1表示以上参数是数字,0表示以上参数为字符)

    Dim ParaValue
    ParaValue=Request(ParaName)
    If ParaType=1 then
    If not isNumeric(ParaValue) then
    Response.write "参数" & ParaName & "必须为数字型!"
    Response.end
    End if
    Else
    ParaValue=replace(ParaValue,"'","''")
    End if
    SafeRequest=ParaValue
    End function

    %>


       收藏   分享  
    顶(0)
      




    ----------------------------------------------
    没人帮忙,那就靠自己,自己才是最好的老师!本人拒绝回答通过站内短消息提出的问题!

    blog:http://Qr.blogger.org.cn

    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2005/3/4 12:44:00
     
     GoogleAdSense
      
      
      等级:大一新生
      文章:1
      积分:50
      门派:无门无派
      院校:未填写
      注册:2007-01-01
    给Google AdSense发送一个短消息 把Google AdSense加入好友 查看Google AdSense的个人资料 搜索Google AdSense在『 Dot NET,C#,ASP,VB 』的所有贴子 访问Google AdSense的主页 引用回复这个贴子 回复这个贴子 查看Google AdSense的博客广告
    2024/4/20 15:49:26

    本主题贴数1,分页: [1]

     *树形目录 (最近20个回帖) 顶端 
    主题:  [转帖]两个小函数让你的ASP程序对SQL注入免疫!(3546字) - Qr,2005年3月4日

    W3C Contributing Supporter! W 3 C h i n a ( since 2003 ) 旗 下 站 点
    苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
    4,839.844ms