Debian Rust Security Tracker 🩺🦀

RUSTSEC-2026-0176: Out-of-bounds read in `nth` / `nth_back` for `PyList` and `PyTuple` iterators

6 affected
Crate
pyo3
Patched Versions
>=0.29.0
Debian Version
0.28.2-1
Issued
2026-06-11
Aliases
Patched:Affected

PyO3 0.24.0 added optimized implementations of Iterator::nth and DoubleEndedIterator::nth_back for the BoundListIterator and BoundTupleIterator types. These implementations computed the target index using unchecked usize addition (index + n) before bounds-checking against the sequence length, then read the element via get_item_unchecked.

In nth methods, a sufficiently large n (combined with a non-zero internal index) could cause the addition to overflow and wrap around, producing a small "target index" that passed the bounds check and enabling reads at the front of the list or tuple of elements previously yielded by the iterator.

In nth_back methods, a sufficiently large n could cause underflow in a similar fashion, however would instead allow reads of arbitrary memory past the end of the list or tuple storage.

PyO3 0.29.0 has corrected these methods to use checked arithmetic at the positions which could be at risk of overflow.

Affected Packages

affected ⚠️ librust-pyo3-dev 0.28.2-1
pyo3 0.28.2 loggerhead 3.0.1+dfsg-2+b1
pyo3 0.28.2 ognibuild 0.2.14-1
pyo3 0.28.2 python3-pendulum 3.2.0-1+b1
pyo3 0.28.2 python3-pydantic-core 2.46.4-1
pyo3 0.28.2 python3-taskchampion-py 2.0.2-4+b1