网站导航网学 原创论文 原创专题 网站设计 最新系统 原创论文 论文降重 发表论文 论文发表 UI设计定制 论文答辩PPT格式排版 期刊发表 论文专题
返回网学首页
网学原创论文
最新论文 推荐专题 热门论文 论文专题
当前位置: 网学 > 设计资源 > .Net编程 > 正文

整站防止SQL注入式入侵

论文降重修改服务、格式排版等 获取论文 论文降重及排版 论文发表 相关服务
防止SQL注入,通常一个一个文件修改不仅麻烦而且还有漏掉的危险,下面我说一下如何从整个系统防止注入。
做到以下三步,相信你的程序就会比较安全了,而且对整个网站的维护也将变的简单。

一、数据验证类
parameterCheck.cs  
    
public class parameterCheck{  
    public static bool isEmail(string emailString){  
        return System.Text.RegularExpressions.Regex.IsMatch(emailString, "[''\\w_-]+(\\.
[''\\w_-]+)*@[''\\w_-]+(\\.[''\\w_-]+)*\\.[a-zA-Z]{2,4}");  
    }
  
    public static bool isInt(string intString){  
        return System.Text.RegularExpressions.Regex.IsMatch(intString ,"^(\\d{5}-\\d{4})|
(\\d{5})contentquot;);  
    }
  
    public static bool isUSZip(string zipString){  
        return System.Text.RegularExpressions.Regex.IsMatch(zipString ,"^-[0-9]+$|^[0-9]
+contentquot;);  
    }


二、Web.config
在你的Web.config文件中,在下面增加一个标签,如下:
<appSettings>  
    <add key="safeParameters" value="OrderID-int32,CustomerEmail-email,ShippingZipcode-
USzip" />  
</appSettings>
其中key是后面的值为“OrderId-int32”等,其中“-”前面表示参数的名称比如:OrderId,后面的int32表示数据类型。

三、Global.asax
在Global.asax中增加下面一段:
protected void Application_BeginRequest(Object sender, EventArgs e){  
    String safeParameters = System.Configuration.ConfigurationSettings.AppSettings
["safeParameters"].ToString().Split('','');  
    for(int i= 0 ;i < safeParameters.Length; i++){  
        String parameterName = safeParameters[i].Split(''-'')[0];  
        String parameterType = safeParameters[i].Split(''-'');  
        isValidParameter(parameterName, parameterType);  
    }
  
}  

public void isValidParameter(string parameterName, string parameterType){  
    string parameterValue = Request.QueryString[parameterName];  
    if(parameterValue == null) return;  

    if(parameterType.Equals("int32")){  
        if(!parameterCheck.isInt(parameterValue)) Response.Redirect("parameterError.aspx");  
    }
  
    else if (parameterType.Equals("double")){  
        if(!parameterCheck.isDouble(parameterValue)) Response.Redirect("parameterError.aspx");  
    }
  
    else if (parameterType.Equals("USzip")){  
        if(!parameterCheck.isUSZip(parameterValue)) Response.Redirect("parameterError.aspx");  
    }
  
    else if (parameterType.Equals("email")){  
        if(!parameterCheck.isEmail(parameterValue)) Response.Redirect("parameterError.aspx");  
    }
  
}

以后需要修改的时候我们只需要修改以上三个文件,对整个系统的维护将会大大提高效率,当然你可以根据自己的需要增加其它的变量参数和数据类型。
设为首页 | 加入收藏 | 网学首页 | 原创论文 | 计算机原创
版权所有 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2020 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号 常年法律顾问:王律师