美文网首页
strcmp()绕过

strcmp()绕过

作者: queena_ | 来源:发表于2017-11-27 17:01 被阅读0次

Challenge

<?php

error_reporting(0);

error_"xxxxxxxx";

$password = $_GET['password'];

if(strcmp($password,$pass) == 0)

{

echo "flag";

}else{

echo "try again";

}

?>

Solution

Php5.3之后版本使用strcmp比较一个字符串和数组的话,将不再返回-1而是返回0

相关文章

网友评论

      本文标题:strcmp()绕过

      本文链接:https://www.haomeiwen.com/subject/jcpdbxtx.html