题目
http://123.206.87.240:8006/test1/
解题思路
查看源代码
源码审计:
user存在,且是一个文件,通过file_get_contents()将文件读入字符串r==“welcome to the bugkuctf”
之后会打印输出“hello admin”,并且包含file文件。此处根据提示,file应该是hint.php
要想传入一个文件,可以利用php://input伪协议
构造payload:txt=php://input&file=hint.php
同时post参数:welcome to the bugkuctf
之后利用php://filter伪协议读出hint.php的内容
payload:txt=php://input&file=php://filter/read=convert.base64-encode/resource=hint.php
得到base64加密后的源代码