zoukankan
html css js c++ java
.net中SQL防注入代码
在网站里新建
Global.asax,添加
void Application_BeginRequest(object source, EventArgs e)
{
COMP.ProcessRequest pr = new COMP.ProcessRequest();
pr.StartProcessRequest();
}
comp里面有文件
ProcessRequest.cs代码如下
public
class
ProcessRequest
{
SQL注入式攻击代码分析
#region
SQL注入式攻击代码分析
/**/
///
<summary>
///
处理用户提交的请求
///
</summary>
public
void
StartProcessRequest()
{
try
{
string
getkeys
=
""
;
string
sqlErrorPage
=
"
/
"
;
if
(System.Web.HttpContext.Current.Request.QueryString
!=
null
)
{
for
(
int
i
=
0
; i
<
System.Web.HttpContext.Current.Request.QueryString.Count; i
++
)
{
getkeys
=
System.Web.HttpContext.Current.Request.QueryString.Keys[i];
if
(
!
ProcessSqlStr(System.Web.HttpContext.Current.Request.QueryString[getkeys].ToLower()))
{
System.Web.HttpContext.Current.Response.Redirect(sqlErrorPage);
System.Web.HttpContext.Current.Response.End();
}
}
}
//
if (System.Web.HttpContext.Current.Request.Form != null)
//
{
//
for(int i=0;i<System.Web.HttpContext.Current.Request.Form.Count;i++)
//
{
//
getkeys = System.Web.HttpContext.Current.Request.Form.Keys[i];
//
if (!ProcessSqlStr(System.Web.HttpContext.Current.Request.Form[getkeys].ToLower()))
//
{
//
System.Web.HttpContext.Current.Response.Redirect (sqlErrorPage);
//
System.Web.HttpContext.Current.Response.End();
//
}
//
}
//
}
}
catch
{
//
错误处理: 处理用户提交信息!
}
}
/**/
///
<summary>
///
分析用户请求是否正常
///
</summary>
///
<param name="Str">
传入用户提交数据
</param>
///
<returns>
返回是否含有SQL注入式攻击代码
</returns>
private
bool
ProcessSqlStr(
string
Str)
{
bool
ReturnValue
=
true
;
try
{
if
(Str
!=
""
&&
Str
!=
null
)
{
string
SqlStr
=
""
;
if
(SqlStr
==
""
||
SqlStr
==
null
)
{
SqlStr
=
"
'|and|exec|insert|select|delete|update|count|*|chr|mid|master|truncate|char|declare
"
;
}
string
[] anySqlStr
=
SqlStr.Split(
'
|
'
);
foreach
(
string
ss
in
anySqlStr)
{
if
(Str.IndexOf(ss)
>=
0
)
{
ReturnValue
=
false
;
}
}
}
}
catch
{
ReturnValue
=
false
;
}
return
ReturnValue;
}
#endregion
}
comp下载地址:
点此
查看全文
相关阅读:
布隆过滤器
springboot+redis实现分布式锁
springboot+redis实现消息队列
工作启示文章收藏
redis常用命令
前方的路
分布式系统中对cookie和session的思考
用Markdown来写自由书籍-开源技术的方案
Centos 7.0添加yum本地安装源
爹地,我找到了!15个极好的Linux find命令示例
原文地址:https://www.cnblogs.com/SALIN/p/1196657.html
最新文章
深入理解javascript原型和闭包(17)——补充:上下文环境和作用域的关系
深入理解javascript原型和闭包(16)——完结
深入理解javascript原型和闭包(15)——闭包
深入理解javascript原型和闭包(14)——从【自由变量】到【作用域链】
深入理解javascript原型和闭包(13)-【作用域】和【上下文环境】
深入理解javascript原型和闭包(12)——简介【作用域】
深入理解javascript原型和闭包(11)——执行上下文栈
深入理解javascript原型和闭包(10)——this
ArrayList
ArrayList Student
热门文章
集合框架 HashSet TreeSet HashMap TreeMap
打印机__接口
接口interface
多态
abstract 抽象类
继承
构造函数,方法,方法的调用
springmvc从stream中获取参数,加idea测试
redis集群拓扑结构自动更新
现炒现买__jdk动态代理
Copyright © 2011-2022 走看看