BugKuCTF WEB web基础$_GET

 http://123.206.87.240:8002/get/

题解:

$what=$_GET['what'];
echo $what;
if($what=='flag')
echo 'flag{****}';

URL

http://123.206.87.240:8002/get/?what=flag

猜你喜欢

转载自blog.csdn.net/weixin_43272781/article/details/94910802