Katalog CVE

CVE-2026-10646

WysokieCVSS 7.4
Opublikowano: Zaktualizowano: Przetłumaczono: NVD NIST

Prawdopodobieństwo exploitacji (EPSS)

Niskie ryzyko
0.26%

Percentyl 17 — wyżej niż 17% wszystkich znanych CVE

Streszczenie

W implementacji getaddrinfo() dla gniazd BSD w Zephyrze występuje podatność use-after-return. Gdy oczekiwanie na semaforze przekroczy limit czasu, kod ponawia zapytanie DNS bez anulowania poprzedniego, pozostawiając aktywny wskaźnik do stosu. Opóźniona odpowiedź DNS lub timeout resolwera może zapisać dane w nieaktualnym obszarze stosu, prowadząc do awarii lub uszkodzenia pamięci.

Ocena ryzyka

Atakujący sieciowo (on-path lub off-path) może sfałszować 16-bitowy identyfikator transakcji DNS i wysłać spreparowaną odpowiedź, powodując zapis do pamięci stosu. Może to prowadzić do awarii systemu (DoS) lub potencjalnie do wykonania dowolnego kodu.

Rekomendacja

Należy natychmiast zaktualizować Zephyr do wersji 4.4.1 lub nowszej, która zawiera poprawkę anulującą nieudane zapytanie DNS przed ponowną próbą. Jeśli aktualizacja nie jest możliwa, należy rozważyć wyłączenie wielokrotnych ponowień DNS (CONFIG_NET_SOCKETS_DNS_TIMEOUT).

Oryginalny opis (angielski, źródło NVD)

Zephyr's BSD-sockets getaddrinfo() implementation (subsys/net/lib/sockets/getaddrinfo.c) passes a pointer to a stack-allocated state object (struct getaddrinfo_state ai_state) as the user_data of an asynchronous DNS resolver query. The socket layer waits on a semaphore with a timeout deliberately set slightly longer than the resolver's own per-query timeout. When that semaphore wait nonetheless times out (-EAGAIN) - which can occur when the resolver's timeout work is delayed by workqueue contention, or in the documented multi-retry configuration where CONFIG_NET_SOCKETS_DNS_TIMEOUT exceeds CONFIG_NET_SOCKETS_DNS_BACKOFF_INTERVAL - the pre-fix code retries the query (goto again) without cancelling the previous one and without resetting the semaphore. The previous query slot remains active in the resolver with its callback and the stack pointer as user_data, and ai_state-dns_id is overwritten so the stale query can no longer be cancelled. A subsequent DNS response delivered over UDP and matched by its 16-bit transaction id (in dispatcher_cb()/dns_read()), or the resolver's own delayed query-timeout work, then invokes dns_resolve_cb() against the now out-of-scope stack frame, writing through the stale pointer (state-status, state-idx, state-ai_arr[], and k_sem_give()). Because the triggering response is network-delivered and its 16-bit id is spoofable/replayable by an on- or off-path attacker, this is a network-influenceable use-after-return that can corrupt reused stack memory, leading to crashes/denial of service or memory corruption. The fix cancels the timed-out query by name and type before retrying and resets the local semaphore, eliminating the stale callback path. Affected: Zephyr v4.0.0 through v4.4.0.

Dane podatności pochodzą z NVD (NIST) · CISA KEV · EPSS