温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

ASP.NET中怎么防止SQL注入

发布时间:2021-07-15 16:21:54 来源:亿速云 阅读:354 作者:Leah 栏目:开发技术

这篇文章将为大家详细讲解有关ASP.NET中怎么防止SQL注入,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。

什么是SQL注入?

我理解的sql注入就是一些人可以通过恶意的参数输入,让后台执行这段SQL,然后达到获取数据或者破坏数据库的目的!
举个简单的查询例子,后台sql是拼接的:select * from Test where name='+参数传递+';前台页面要求输入name,那么黑客可以输入: ';DROP TABLE Test;--   不要小瞧这一段SQL代码:
select * from Test where name=' ';DROP TABLE Test;--';在SQL中是正确的,可执行的,但是执行后整个Test表都删除了,网站崩溃!

最好的解决方法

最好的办法就是不写拼接SQL,改用参数化SQL,推荐新项目使用。这里不做介绍,感兴趣的朋友可以自行搜索一下,本文介绍的方法适合老项目,就是没有使用参数化SQL开发的程序。

使用过滤函数来过滤

将SQL一些危险的关键字,还有注释百分号以及分号这些根本在我们正常写代码的时候根本不会出现的字符都过滤掉,这样能最大限度的保证SQL执行是安全的,代码如下:

public class SqlFilter {   public static void Filter()   {     string fileter_sql = "execute,exec,select,insert,update,delete,create,drop,alter,exists,table,sysobjects,truncate,union,and,order,xor,or,mid,cast,where,asc,desc,xp_cmdshell,join,declare,nvarchar,varchar,char,sp_oacreate,wscript.shell,xp_regwrite,',%,;,--";     try     {       // -----------------------防 Post 注入-----------------------       if (HttpContext.Current.Request.Form != null)       {         PropertyInfo isreadonly = typeof(System.Collections.Specialized.NameValueCollection).GetProperty("IsReadOnly", BindingFlags.Instance | BindingFlags.NonPublic);         //把 Form 属性改为可读写         isreadonly.SetValue(HttpContext.Current.Request.Form, false, null);         for (int k = 0; k < System.Web.HttpContext.Current.Request.Form.Count; k++)         {           string getsqlkey = HttpContext.Current.Request.Form.Keys[k];           string sqlstr = HttpContext.Current.Request.Form[getsqlkey];           string[] replace_sqls = fileter_sql.Split(',');           foreach (string replace_sql in replace_sqls)           {             sqlstr = Regex.Replace(sqlstr, replace_sql, "", RegexOptions.IgnoreCase);           }           HttpContext.Current.Request.Form[getsqlkey] = sqlstr;         }       }       // -----------------------防 GET 注入-----------------------       if (HttpContext.Current.Request.QueryString != null)       {         PropertyInfo isreadonly = typeof(System.Collections.Specialized.NameValueCollection).GetProperty("IsReadOnly", BindingFlags.Instance | BindingFlags.NonPublic);         //把 QueryString 属性改为可读写         isreadonly.SetValue(HttpContext.Current.Request.QueryString, false, null);         for (int k = 0; k < System.Web.HttpContext.Current.Request.QueryString.Count; k++)         {           string getsqlkey = HttpContext.Current.Request.QueryString.Keys[k];           string sqlstr = HttpContext.Current.Request.QueryString[getsqlkey];           string[] replace_sqls = fileter_sql.Split(',');           foreach (string replace_sql in replace_sqls)           {             sqlstr = Regex.Replace(sqlstr, replace_sql, "", RegexOptions.IgnoreCase);           }           HttpContext.Current.Request.QueryString[getsqlkey] = sqlstr;         }       }       // -----------------------防 Cookies 注入-----------------------       if (HttpContext.Current.Request.Cookies != null)       {         PropertyInfo isreadonly = typeof(System.Collections.Specialized.NameValueCollection).GetProperty("IsReadOnly", BindingFlags.Instance | BindingFlags.NonPublic);         //把 Cookies 属性改为可读写         isreadonly.SetValue(HttpContext.Current.Request.Cookies, false, null);         for (int k = 0; k < System.Web.HttpContext.Current.Request.Cookies.Count; k++)         {           string getsqlkey = HttpContext.Current.Request.Cookies.Keys[k];           string sqlstr = HttpContext.Current.Request.Cookies[getsqlkey].Value;           string[] replace_sqls = fileter_sql.Split(',');           foreach (string replace_sql in replace_sqls)           {             sqlstr = Regex.Replace(sqlstr, replace_sql, "", RegexOptions.IgnoreCase);           }           HttpContext.Current.Request.Cookies[getsqlkey].Value = sqlstr;         }       }     }     catch (Exception ex)     {       Console.WriteLine(ex.Message);     }   } }

关于ASP.NET中怎么防止SQL注入就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI