Cyber Resilience

CVE-2025-53623

HighRCE

Published: 14 July 2025

Published
14 July 2025
Modified
15 April 2026
KEV Added
Patch
CVSS Score v4 8.1 CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:U/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
EPSS Score 0.0123 79.6th percentile
Risk Priority 17 60% EPSS · 20% KEV · 20% CVSS

Summary

CVE-2025-53623 is a high-severity OS Command Injection (CWE-78) vulnerability. Its CVSS base score is 8.1 (High).

Operationally, ranked in the top 20.4% of CVEs by exploit likelihood; it is not currently listed in the CISA KEV catalog.

Deeper analysis

The Job Iteration API, an extension for ActiveJob that enables interruptible and resumable jobs, contains an arbitrary code execution vulnerability in the CsvEnumerator class in all versions prior to 1.11.0. The flaw, tracked as CVE-2025-53623 and assigned CWE-78, stems from insufficient validation of input passed to methods such as count_of_rows_in_file, allowing OS command injection when untrusted CSV filenames are processed. The issue received a CVSS 4.0 score of 8.1 reflecting network-accessible exploitation with high impact on confidentiality, integrity, and availability.

An unauthenticated attacker can supply a malicious filename or path to the CsvEnumerator class and execute arbitrary commands on the host running the application, potentially resulting in full system compromise, data exfiltration, or unauthorized access. Exploitation requires the vulnerable code path to be reached with attacker-controlled input, which can occur in any application using the library without additional sanitization.

The official advisory and patch notes recommend upgrading to version 1.11.0 or later, where the issue is resolved. In the absence of an upgrade, users are advised to avoid passing untrusted input to CsvEnumerator entirely and to sanitize and validate all file paths before use.

The EPSS score has remained flat at 0.0123 with no material increase since disclosure.

EU & UK References

Vulnerability details

The Job Iteration API is an an extension for ActiveJob that make jobs interruptible and resumable Versions prior to 1.11.0 have an arbitrary code execution vulnerability in the `CsvEnumerator` class. This vulnerability can be exploited by an attacker to execute…

more

arbitrary commands on the system where the application is running, potentially leading to unauthorized access, data leakage, or complete system compromise. The issue is fixed in versions `1.11.0` and above. Users can mitigate the risk by avoiding the use of untrusted input in the `CsvEnumerator` class and ensuring that any file paths are properly sanitized and validated before being passed to the class methods. Users should avoid using the `count_of_rows_in_file` method with untrusted CSV filenames.

CWE(s)

Related Threats

No named actor attribution yet. ATT&CK technique mapping in progress for this CVE.

Affected Assets

Mitigating Controls

Likely Mitigating Controls AI

Per-CVE control mapping for this CVE has not run yet; the list below is derived from the weakness types (CWEs) cited in the NVD entry.

addresses: CWE-78

Platform-independent apps typically execute inside a managed runtime or sandbox that restricts direct OS command execution, reducing the ability to exploit OS command injection.

addresses: CWE-78

Validates inputs to block special elements that would alter OS command execution.

References