刷题之旅第30站,CTFshow web10

感谢ctf show平台提供题目

点击取消按钮,我们下载到了php文件。
刷题之旅第30站,CTFshow web10_第1张图片


		$flag="";
        function replaceSpecialChar($strParam){
             $regex = "/(select|from|where|join|sleep|and|\s|union|,)/i";
             return preg_replace($regex,"",$strParam);
        }
        if (!$con)
        {
            die('Could not connect: ' . mysqli_error());
        }
		if(strlen($username)!=strlen(replaceSpecialChar($username))){
			die("sql inject error");
		}
		if(strlen($password)!=strlen(replaceSpecialChar($password))){
			die("sql inject error");
		}
		$sql="select * from user where username = '$username'";
		$result=mysqli_query($con,$sql);
			if(mysqli_num_rows($result)>0){
					while($row=mysqli_fetch_assoc($result)){
						if($password==$row['password']){
							echo "登陆成功
"
; echo $flag; } } } ?>

首先对post的数据进行了/(select|from|where|join|sleep|and|\s|union|,)/i的过滤,然后查询出来的值要和我们post的password相等

此处使用WITH ROLLUP进行绕过,首先学习一下WITH ROLLUP

WITH ROLLUP是对group by的结果进行进一步的汇总然后显示,在group by 列名 with rollup 中,倘若按列名分组后,列的属性值是不相同的,会生成一条分组条件的列为null的一条新的数据。而如果查询结果是唯一的,一会生成一条分组条件所在列为null的数据。

我们就是要通过with rollup使sql语句查询结果为null,然后不输入password使password为null就可以使 p a s s w o r d = = password== password==row[‘password’]

payload:

'or/**/1=1/**/GROUP/**/BY/**/password/**/WITH/**/ROLLUP/**/LIMIT/**/1/**/OFFSET/**/1#

offset后面的值需要尝试才能找到pwd是null的行

刷题之旅第30站,CTFshow web10_第2张图片

参考:
https://blog.csdn.net/zz_Caleb/article/details/104183469

点个赞再走吧。

刷题之旅第30站,CTFshow web10_第3张图片

你可能感兴趣的:(刷题之旅100站)