[NewStarCTF 2023 公开赛道]include 0。0

1
2
3
4
5
6
7
8
9
10
<?php
highlight_file(__FILE__);
// FLAG in the flag.php
$file = $_GET['file'];
if(isset($file) && !preg_match('/base|rot/i',$file)){
@include($file);
}else{
die("nope");
}
?>

我们发现代码过滤了base和rot,但没过滤convert.iconv,因此我们可硬将utf-8转为utf-7来输出flag.php的内容

文件包含

[BSidesCF 2019]Pick Tac Toe

image-20241020153403748

我们在源码中发现,每次点击都是一次提交

因此我们只需要按顺序post三个value来战胜ai,我分别是ul,c,bl