一聚教程网:一个值得你收藏的教程网站

热门教程

asp.net防sql注入多种方法与实例代码应用

时间:2022-06-25 06:06:00 编辑:袖梨 来源:一聚教程网

asp教程.net防sql注入多种方法与实例代码应用
清除Request方法的注入问题

       

static string[] get_sql_a()
        {
            string Sql_1 = "exec|insert+|select+|delete|update|count|master+|truncate|char|declare|drop+|drop+table|creat+|creat+table";
            string[] sql_c = Sql_1.Split(char.Parse("|"));
            return sql_c;
        }

        static string[] get_sql_b()
        {
            string Sql_2 = "exec+|insert+|delete+|update+|count(|count+|chr+|+mid(|+|+master+|truncate+|char+|+char(|declare+|drop+|creat+|drop+table|creat+table";
            string[] sql_c = Sql_2.Split(char.Parse("|"));
            return sql_c;
        }

       

///


        /// 自动化清除SQL注入问题,显示错误信息。在全局变量中加入:Application_BeginRequest(Obect sender,EventArgs e)事件;调用此方法。
 

        ///

        /// 输出错误信息
       

public static bool Clear_ApplicationRequest(out string error)
        {
            bool _Clear = true;

            error = string.Empty;

            if (System.Web.HttpContext.Current.Request.QueryString != null)
            {
                foreach (string sl in get_sql_a())
                {
                    if (System.Web.HttpContext.Current.Request.QueryString.ToString().ToLower().IndexOf(sl.Trim()) >= 0)
                    {
                        _Clear = false;
                        error = ClientUntity.getPageInfo("系统裁获注入操作,提供以下信息!", true, true, true, true);
                    }
                }
            }

            if (System.Web.HttpContext.Current.Request.Form.Count > 0)
            {
                string s1 = System.Web.HttpContext.Current.Request.ServerVariables["SERVER_NAME"].Trim();//服务器名称
                if (System.Web.HttpContext.Current.Request.ServerVariables["HTTP_REFERER"] != null)
                {
                    string s2 = System.Web.HttpContext.Current.Request.ServerVariables["HTTP_REFERER"].Trim();//http接收的名称
                    string s3 = "";
                    if (s1.Length > (s2.Length - 7))
                    {
                        s3 = s2.Substring(7);
                    }
                    else
                    {
                        s3 = s2.Substring(7, s1.Length);
                    }
                    if (s3 != s1)
                    {
                        _Clear = false;
                        error = ClientUntity.getPageInfo("系统裁获注入操作,提供以下信息!", true, true, true, true);
                    }
                }
            }

            return _Clear;
        }

        #endregion

 //方法二

 

 ///


    /// 防止输入SQL注入,替换字符
    ///

    ///
    ///
    public static string SQLReplace(string ParaValue)
    {
         str = str.Replace(";", str2);
        str = str.Replace("&", str2);
        str = str.Replace("<", str2);
        str = str.Replace(">", str2);
        str = str.Replace("'", str2);
        str = str.Replace("--", str2);
        str = str.Replace("/", str2);
        str = str.Replace("%", str2);
        str = str.Replace("~", str2);
        str = str.Replace(",", str2);
        str = str.Replace("`", str2);
        str = str.Replace("!", str2);
        str = str.Replace("@", str2);
        str = str.Replace("#", str2);
        str = str.Replace("$", str2);
        str = str.Replace("^", str2);
        str = str.Replace("*", str2);
        str = str.Replace("(", str2);
        str = str.Replace(")", str2);
        str = str.Replace("+", str2);
        str = str.Replace(":", str2);
        str = str.Replace("<", str2);
        str = str.Replace(">", str2);
        str = str.Replace("?", str2);
        str = str.Replace("/", str2);
        str = str.Replace("", str2);
        str = str.Replace(""", str2);
        str = str.Replace("{", str2);
        str = str.Replace("}", str2);
        str = str.Replace("[", str2);
        str = str.Replace("]", str2);
        str = str.Replace("-", str2);
        str = str.Replace("_", str2);
        str = str.Replace(" ", str2);
        str = str.Replace("!", str2);
        str = str.Replace("~", str2);
        str = str.Replace("¥", str2);
        str = str.Replace("……", str2);
        str = str.Replace("(", str2);
        str = str.Replace(")", str2);
        str = str.Replace(" ", str2);
        str = str.Replace("——", str2);
        str = str.Replace("、", str2);
        str = str.Replace("select", str2);
        str = str.Replace("update", str2);
        str = str.Replace("insert", str2);
        str = str.Replace("delete", str2);
        str = str.Replace("drop", str2);
        str = str.Replace("delcare", str2);
        str = str.Replace("create", str2);

  ParaValue = ParaValue.Replace("+", "").Replace("-", "").Replace("=", "").Replace("%", "").Replace("<", ">").Replace(">", "<").Replace("<>", "").Replace("'", "").Replace("[", "").Replace("]", "").Replace("!", "").Replace("@", "").Replace("#", "").Replace(",", "").Replace(";", "");

        return ParaValue;
    }

    }
 

/

 
/方法三
 public void GetSessionValue(string a,string c,string e,string d,string f)
    {
            Session["user_a"] = a;
            Session["user_c"] = c;
            Session["user_e"] = e;
            Session["user_d"] = d;
            Session["user_f" ] = f;
    }

    GetSessionValue("","","","","");

//什么是SQL注入式攻击?
所谓SQL注入式攻击,就是攻击者把SQL命令插入到Web表单的输入域或页面请求的查询字符串,欺骗服务器执行恶意的SQL命令。在某些表单中,用户输入的内容直接用来构造(或者影响)动态SQL命令,或作为存储过程的输入参数,这类表单特别容易受到SQL注入式攻击


如何防范? 
   
  好在要防止ASP.NET应用被SQL注入式攻击闯入并不是一件特别困难的事情,只要在利用表单输入的内容构造SQL命令之前,把所有输入内容过滤一番就可以了。过滤输入内容可以按多种方式进行。 
   
  ⑴ 对于动态构造SQL查询的场合,可以使用下面的技术: 
   
  第一:替换单引号,即把所有单独出现的单引号改成两个单引号,防止攻击者修改SQL命令的含义。再来看前面的例子,“SELECT * from Users WHERE login = ''' or ''1''=''1' AND password = ''' or ''1''=''1'”显然会得到与“SELECT * from Users WHERE login = '' or '1'='1' AND password = '' or '1'='1'”不同的结果。 
   
  第二:删除用户输入内容中的所有连字符,防止攻击者构造出类如“SELECT * from Users WHERE login = 'mas' -- AND password =''”之类的查询,因为这类查询的后半部分已经被注释掉,不再有效,攻击者只要知道一个合法的用户登录名称,根本不需要知道用户的密码就可以顺利获得访问权限。 
   
  第三:对于用来执行查询的数据库教程帐户,限制其权限。用不同的用户帐户执行查询、插入、更新、删除操作。由于隔离了不同帐户可执行的操作,因而也就防止了原本用于执行SELECT命令的地方却被用于执行INSERT、UPDATE或DELETE命令。 
   
  ⑵ 用存储过程来执行所有的查询。SQL参数的传递方式将防止攻击者利用单引号和连字符实施攻击。此外,它还使得数据库权限可以限制到只允许特定的存储过程执行,所有的用户输入必须遵从被调用的存储过程的安全上下文,这样就很难再发生注入式攻击了。 
   
  ⑶ 限制表单或查询字符串输入的长度。如果用户的登录名字最多只有10个字符,那么不要认可表单中输入的10个以上的字符,这将大大增加攻击者在SQL命令中插入有害代码的难度。 
   
  ⑷ 检查用户输入的合法性,确信输入的内容只包含合法的数据。数据检查应当在客户端和服务器端都执行——之所以要执行服务器端验证,是为了弥补客户端验证机制脆弱的安全性。 
   
  在客户端,攻击者完全有可能获得网页的源代码,修改验证合法性的脚本(或者直接删除脚本),然后将非法内容通过修改后的表单提交给服务器。因此,要保证验证操作确实已经执行,唯一的办法就是在服务器端也执行验证。你可以使用许多内建的验证对象,例如RegularExpressionValidator,它们能够自动生成验证用的客户端脚本,当然你也可以插入服务器端的方法调用。如果找不到现成的验证对象,你可以通过CustomValidator自己创建一个。 
   
  ⑸ 将用户登录名称、密码等数据加密保存。加密用户输入的数据,然后再将它与数据库中保存的数据比较,这相当于对用户输入的数据进行了“消毒”处理,用户输入的数据不再对数据库有任何特殊的意义,从而也就防止了攻击者注入SQL命令。System.Web.Security.FormsAuthentication类有一个HashPasswordForStoringInConfigFile,非常适合于对输入数据进行消毒处理。 
   
  ⑹ 检查提取数据的查询所返回的记录数量。如果程序只要求返回一个记录,但实际返回的记录却超过一行,那就当作出错处理。
%>

热门栏目