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下载地址:
点此
查看全文
相关阅读:
拍照
ORACLE DATABASE 10G FALSHBACK 知识整理
在webx.ml中 配置struts2 后 welcome-file-list 失效的解决办法
基于内容的图像检索技(CBIR)术相术介绍
Codeforces Round #198 (Div. 2) B. Maximal Area Quadrilateral
终端复用工具tmux的使用
泛型的使用
1.2.4 Java Annotation 提要
Java算法--串的简单处理
【基础练习】【线性DP】codevs3641 上帝选人题解
原文地址:https://www.cnblogs.com/SALIN/p/1196657.html
最新文章
Android Studio更新升级方法
Datatable.Compute小技巧
hdu 4707 搜索 目前做的最水的搜索
数据结构-二叉树
jQuery实现的手机发送验证码倒计时效果代码分享
jQuery hover 延时器实现代码
Jquery倒计时源码分享
jQuery实现鼠标经过图片预览大图效果
jquery插件实现鼠标经过图片右侧显示大图的效果(类似淘宝)
JQuery鼠标移到小图显示大图效果的方法
热门文章
jQuery实现鼠标划过展示大图的方法
JQuery中绑定事件(bind())和移除事件(unbind())
jquery检测input checked 控件是否被选中的方法
jquery $(document).ready() 与window.onload的区别
各个RFC
程序实现LayoutAnimationController
九度OnlineJudge之1020:最小长方形
小型Mp3播放器
链表的基本操作实现
播放视频
Copyright © 2011-2022 走看看