SwiftNIO CVE-2026-43671
HIGHSeverity by source
Network-reachable services can be targeted (AV:N) without auth or interaction, but the >4 GiB precondition and need for a write-path call site make AC:H; impact is heap corruption (I:H/A:H) with no direct confidentiality vector described.
Estimated by vuln.today — no official severity rating has been published for this CVE yet.
Lifecycle Timeline
2DescriptionCVE.org
Summary
A program using swift-nio is vulnerable to a potential out-of-bounds write when attacker-controlled index or length values exceeding UInt32.max are passed to some ByteBuffer methods. This affects all swift-nio versions from 1.0.0 to 2.99.0. It is fixed in 2.100.0 and later releases.
Details
ByteBuffer internally stores indices and capacities as UInt32 values. The internal helper functions _toIndex and _toCapacity, which convert from Int to UInt32, used UInt32(truncatingIfNeeded:). On 64-bit platforms, this silently discards the upper 32 bits of the value rather than trapping on overflow. For example, a value of UInt32.max + 1 (0x100000000) would be truncated to 0.
This truncation can cause safety preconditions to pass when they should fail. Subsequent operations would then use the incorrect truncated value, potentially leading to out-of-bounds memory writes or reads.
The affected ByteBuffer methods that may lead to out-of-bounds writes are:
copyBytes(at:to:length:)- a crafted destination index exceedingUInt32.maxcould copy bytes to an incorrect offset.writeWithUnsafeMutableBytes(minimumWritableBytes:)- a craftedminimumWritableBytesexceedingUInt32.maxcould provide the caller with a buffer pointer of incorrect length, which can easily be subsequently overflowed.
The affected ByteBuffer methods that have logic errors but do neither expose out-of-bounds reads nor out-of-bounds writes:
moveReaderIndex(forwardBy:)/moveWriterIndex(forwardBy:)- a crafted offset exceedingUInt32.maxcould move indices to incorrect positions, bypassing bounds checks. These indices cannot be out of the bounds of the buffer, so they do not expose access to uninitialized memory or produce wild pointers.- The
ByteBuffer(takingOwnershipOf:allocator:)initialiser - passing a buffer larger thanUInt32.maxbytes could create aByteBufferwith an incorrect capacity.
Outside of these methods, there are still impacts, but they are simply logical bugs. In these cases applications can be forced to read from or write to unexpected parts of the buffer. This does not cause memory-safety issues, but it can cause logical issues or corruption of outbound packets.
Impact
Exploitation requires an attacker to influence the index, offset, or length parameter of the affected ByteBuffer methods with a value exceeding UInt32.max (approximately 4 GiB). This is a high bar for most applications: attacker-controlled length parameters to ByteBuffer are typically used on the read path, and the above methods are typically not used on the read paths. However, applications that calculate buffer positions arithmetically from untrusted input when attempting to do writes, or that process very large payloads, may be at risk of memory safety issues.
Other applications may encounter logical issues due to reading unexpected bytes, or writing to unexpected parts of the buffer.
When the memory-safety issue is exploitable, the consequences are severe. Because truncatingIfNeeded silently produces an incorrect but valid UInt32 value, subsequent operations may write to or read from memory outside the valid buffer region. In optimised (release) builds where preconditions are not checked, this could lead to out-of-bounds memory writes, potentially corrupting adjacent heap memory.
In debug builds, some of these conditions are caught by assertions, but truncatingIfNeeded occurs before the assertion checks the (already-truncated) value, so even assertions may not reliably catch the issue.
Patches
The issue is fixed by replacing UInt32(truncatingIfNeeded:) with UInt32(_:) in the _toIndex and _toCapacity helper functions. The UInt32(_:) initialiser traps on overflow in both debug and release builds, converting a potential silent memory corruption into a deterministic crash.
One call site in getSlice(at:length:) retains truncatingIfNeeded because prior bounds checks against the non-truncated Int values mathematically guarantee the values fit within UInt32.
Workarounds
Applications can mitigate this issue by validating that all index and length values passed to ByteBuffer methods do not exceed UInt32.max (4,294,967,295). In practice, most applications are not affected because buffer indices are derived from protocol parsing rather than raw untrusted input.
AnalysisAI
Out-of-bounds write in Apple's SwiftNIO ByteBuffer affects all releases from 1.0.0 through 2.99.0 and is fixed in 2.100.0. The flaw stems from UInt32 truncation in internal index/capacity converters, so when an attacker can influence an index, offset, or length passed to specific ByteBuffer write methods with a value above UInt32.max (~4 GiB), safety preconditions silently pass and subsequent writes can corrupt heap memory outside the buffer. No public exploit identified at time of analysis, and the high data-size threshold makes practical exploitation narrow but severe where applicable.
Technical ContextAI
SwiftNIO is Apple's cross-platform asynchronous event-driven network application framework that underpins many server-side Swift applications and Apple ecosystem services (HTTP/2, TLS, gRPC stacks, etc.). Its ByteBuffer type stores indices and capacities internally as UInt32 and relied on the _toIndex and _toCapacity helpers, which used UInt32(truncatingIfNeeded:) to narrow Int to UInt32. On 64-bit platforms this discards the upper 32 bits instead of trapping, so values like 0x1_0000_0000 collapse to 0 before bounds checks run. This is a classic CWE-787 (Out-of-bounds Write) rooted in an integer-truncation/wraparound issue: the truncated value passes preconditions (and even debug assertions, because the assertion sees the already-narrowed value), after which copyBytes(at:to:length:) or writeWithUnsafeMutableBytes(minimumWritableBytes:) operate on attacker-chosen offsets and can write past the allocated buffer.
RemediationAI
Upgrade swift-nio to 2.100.0 or later (vendor-released patch: 2.100.0), then rebuild and redeploy any application or library that links it; transitive consumers should bump their Package.swift constraints and run swift package update. Confirm the upgrade reaches the resolved dependency graph because indirect pins via frameworks like gRPC-Swift, AsyncHTTPClient, or Vapor can hold older swift-nio versions. Until the upgrade is rolled out, the vendor-suggested workaround is to validate at the application boundary that any Int passed as index, offset, length, or minimumWritableBytes to ByteBuffer methods is <= UInt32.max (4,294,967,295) and reject or clamp larger values; this is low-risk for typical protocol code but requires auditing call sites that compute offsets arithmetically from network-derived integers. Side effects: the upgrade converts what was silent truncation into a deterministic trap, so any code path that previously relied on (or accidentally produced) >4 GiB Int values will now crash instead of silently misbehaving - surface this in pre-deployment testing. Advisory reference: https://github.com/apple/swift-nio/security/advisories/GHSA-r3rc-9hpw-54v9.
Same weakness CWE-787 – Out-of-bounds Write
View allSame technique Buffer Overflow
View allShare
External POC / Exploit Code
Leaving vuln.today
GHSA-r3rc-9hpw-54v9