SUCTF 2018——Anonymous(php匿名函数 x00lambda_)

Posted 淚笑-l3yx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SUCTF 2018——Anonymous(php匿名函数 x00lambda_)相关的知识,希望对你有一定的参考价值。

直接看题源代码

 1 <?php
 2     $MY = create_function("","die(`cat flag.php`);");
 3     $hash = bin2hex(openssl_random_pseudo_bytes(32));
 4     eval("function SUCTF_$hash(){"
 5         ."global $MY;"
 6         ."$MY();"
 7         ."}");
 8     if(isset($_GET[‘func_name‘])){
 9         $_GET["func_name"]();
10         die();
11     }
12     show_source(__FILE__);

create_function的匿名函数也是有名字的,名字是x00lambda_%d,其中%d代表他是当前进程中的第几个匿名函数,直接burp开启跑

以上是关于SUCTF 2018——Anonymous(php匿名函数 x00lambda_)的主要内容,如果未能解决你的问题,请参考以下文章

[SUCTF 2019]CheckIn

[SUCTF 2018]GetShell

[SUCTF 2019]CheckIn

[SUCTF 2019]CheckIn

SUCTF--WEB

[SUCTF 2019]CheckIn(user.ini文件构成的php后门)