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下载地址:
点此
查看全文
相关阅读:
流水账
还是有希望啊
The Java Tutorials:Collections
绘图框架新需求
Fractal Tree扩展
js获取字符串最后一个字符代码
js保留小数点后N位的方法介绍
JS 实现 ResizeBar,可拖动改变两个区域(带iframe)大小
js获取浏览器高度和宽度值,尽量的考虑了多浏览器。
jquery自动将form表单封装成json的具体实现
原文地址:https://www.cnblogs.com/SALIN/p/1196657.html
最新文章
socketserver 模块的使用
多路复用IO模型 IO multiplexing
非阻塞IO模型 nonblocking IO
blocking IO 阻塞IO模型
IO模型的基本介绍
python中隐式的内存共享
列表及相关操作的总结
linux中清除cache的方法
生成器和列表解析总结及测试
关于python中的unicode字符串的使用
热门文章
使用源码编译wxpython-基于python2.7
The remote SSH server rejected X11 forwarding request
python内建函数sorted方法概述
迭代的模块itertools
linux系统中内存爆满之后会如何?
Linux下控制器IO地址
Code is not literature
如何学习内核
Linux内核中关于内存的数据结构
Emacs和Ultra Edit列编辑模式
Copyright © 2011-2022 走看看