Cyber Resilience

CVE-2026-41035

HighPublic PoCUpdated

Published: 16 April 2026

Published
16 April 2026
Modified
21 May 2026
KEV Added
Patch
CVSS Score v3.1 7.4 CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:L
EPSS Score 0.0003 8.0th percentile
Risk Priority 15 60% EPSS · 20% KEV · 20% CVSS

Summary

CVE-2026-41035 is a high-severity Improper Handling of Length Parameter Inconsistency (CWE-130) vulnerability in Samba Rsync. Its CVSS base score is 7.4 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 8.0th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

The strongest mitigations our analysis identified are NIST 800-53 SI-16 (Memory Protection) and SI-2 (Flaw Remediation).

Deeper analysis

CVE-2026-41035 is a use-after-free vulnerability (CWE-130) in rsync versions 3.0.1 through 3.4.1, stemming from the receive_xattr function's reliance on an untrusted length value passed to a qsort call. The flaw affects rsync receivers when invoked with the -X (or --xattrs) option to handle extended attributes. On Linux systems, many but not all common configurations are vulnerable, while non-Linux platforms face broader exposure.

Exploitation is network-accessible (AV:N) with low attack complexity (AC:L), requiring low privileges (PR:L) and no user interaction (UI:N), resulting in a scope change (S:C) and low impacts to confidentiality, integrity, and availability (C:L/I:L/A:L), for an overall CVSS v3.1 score of 7.4. An attacker acting as a sender can trigger the issue against a victim receiver processing extended attributes, potentially leading to memory corruption.

Advisories and patches are detailed in Rsync GitHub issue #871 and the project's releases page, with additional discussions in oss-security mailing list posts from April 2026, including announcements on April 16 and 22.

EU & UK References

Vulnerability details

In rsync 3.0.1 through 3.4.1, receive_xattr relies on an untrusted length value during a qsort call, leading to a receiver use-after-free. The victim must run rsync with -X (aka --xattrs). On Linux, many (but not all) common configurations are vulnerable.…

more

Non-Linux platforms are more widely vulnerable.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1190 Exploit Public-Facing Application Initial Access
Adversaries may attempt to exploit a weakness in an Internet-facing host or system to initially access a network.
Why these techniques?

The vulnerability is a remotely exploitable use-after-free in the rsync receiver (network-accessible with AV:N), directly enabling exploitation of a public-facing or network-exposed service for memory corruption.

Confidence: HIGH · MITRE ATT&CK Enterprise v18.1

CVEs Like This One

CVE-2026-43618Same product: Samba Rsync
CVE-2025-14847Shared CWE-130
CVE-2026-5367Shared CWE-130
CVE-2026-3868Shared CWE-130
CVE-2026-4480Same vendor: Samba
CVE-2026-33846Shared CWE-130
CVE-2026-41898Shared CWE-130
CVE-2026-31635Shared CWE-130
CVE-2026-35547Shared CWE-130
CVE-2026-1933Same vendor: Samba

Affected Assets

samba
rsync
3.0.1 — 3.4.1

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

Requires timely flaw remediation, directly addressing the use-after-free vulnerability in rsync by mandating application of patches from advisories like Rsync GitHub issue #871.

prevent

Implements memory protection controls such as address space layout randomization and stack canaries to minimize successful exploitation of use-after-free flaws like the one in rsync's receive_xattr.

prevent

Enforces least functionality by prohibiting or restricting the --xattrs option in rsync configurations, eliminating the vulnerable code path triggered by untrusted length values.

References