Katalog CVE

CVE-2026-10645

ŚrednieCVSS 4.9
Opublikowano: Zaktualizowano: Przetłumaczono: NVD NIST

Prawdopodobieństwo exploitacji (EPSS)

Niskie ryzyko
0.11%

Percentyl 2 - wyżej niż 2% wszystkich znanych CVE

Streszczenie

Sterownik systemu plików ext2 w Zephyr OS (subsys/fs/ext2) ufa polom de_rec_len i de_name_len w katalogach na dysku podczas przetwarzania bloku katalogu. Walidacja de_name_len jest nieskuteczna, co pozwala na odczyt do 263 bajtów poza bufor bloku, prowadząc do wycieku pamięci jądra, a de_rec_len równe 0 powoduje nieskończoną pętlę (odmowa usługi). Podatność dotyczy wersji od v3.5.0 do v4.4.0.

Ocena ryzyka

Organizacja narażona jest na wyciek poufnych danych z pamięci jądra (np. klucze, hasła) oraz na ataki typu odmowa usługi poprzez zamontowanie spreparowanego obrazu ext2 z zewnętrznego nośnika (karta SD, USB).

Rekomendacja

Należy natychmiast zaktualizować Zephyr OS do wersji zawierającej poprawkę (v4.4.1 lub nowszej) lub zastosować łatkę walidującą de_rec_len i de_name_len w parserze ext2.

Inne podatności w Zephyr ext2 filesystem driver

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

The Zephyr ext2 filesystem driver (subsys/fs/ext2) trusted the on-disk directory entry fields de_rec_len and de_name_len when walking a directory block. ext2_fetch_direntry() guarded only with de_name_len > EXT2_MAX_FILE_NAME, but de_name_len is a uint8_t and EXT2_MAX_FILE_NAME is 255, so the check is always false; the function then memcpy'd up to 255 name bytes and the lookup/readdir paths advanced traversal by an unvalidated de_rec_len. Each directory block is read into a block_size-sized slab buffer, and block_off can be driven near the block end by preceding entries' rec_len, so the 8-byte header read and the subsequent name memcpy can read up to ~263 bytes past the end of the block buffer into adjacent heap/slab memory. On the readdir path those bytes are returned to the caller in fs_dirent.name, leaking adjacent kernel heap memory; a de_rec_len of 0 also causes a zero-progress infinite loop (denial of service), and the unlink path's memmove(de, next, next_reclen) over unvalidated records is an additional OOB read/write source. The defect is reached by any path-based operation (open, stat, unlink, rename, mkdir) or directory listing on a mounted ext2 volume, so a crafted or corrupted ext2 image on attacker-supplied storage (SD card, USB mass storage, or otherwise mounted image) triggers it. Affected: Zephyr ext2 from its introduction in v3.5.0 through v4.4.0. The fix validates rec_len and name_len in the parser and rejects entries whose header does not fit the remaining block or whose rec_len crosses the block boundary in every traversal caller.

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