Katalog CVE

CVE-2026-23074

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

Prawdopodobieństwo exploitacji (EPSS)

Niskie ryzyko
0.13%

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

Streszczenie

W jądrze Linux wykryto podatność w mechanizmie kolejkowania teql (TrueLink Equalizer). Brak wymuszenia, aby teql był używany wyłącznie jako nadrzędna dyscyplina kolejkowania (root qdisc), umożliwia atakującemu skonfigurowanie go jako podrzędnego, co prowadzi do naruszenia spójności danych i potencjalnego użycia po zwolnieniu (Use-After-Free).

Ocena ryzyka

Atakujący z uprawnieniami do konfiguracji sieci może doprowadzić do awarii systemu (kernel panic) lub potencjalnie do eskalacji uprawnień poprzez wykorzystanie błędu UAF.

Rekomendacja

Należy natychmiast zaktualizować jądro Linux do wersji zawierającej poprawkę wymuszającą użycie teql wyłącznie jako root qdisc.

Inne podatności w Linux kernel

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

In the Linux kernel, the following vulnerability has been resolved: net/sched: Enforce that teql can only be used as root qdisc Design intent of teql is that it is only supposed to be used as root qdisc. We need to check for that constraint. Although not important, I will describe the scenario that unearthed this issue for the curious. GangMin Kim <[email protected]> managed to concot a scenario as follows: ROOT qdisc 1:0 (QFQ) ├── class 1:1 (weight=15, lmax=16384) netem with delay 6.4s └── class 1:2 (weight=1, lmax=1514) teql GangMin sends a packet which is enqueued to 1:1 (netem). Any invocation of dequeue by QFQ from this class will not return a packet until after 6.4s. In the meantime, a second packet is sent and it lands on 1:2. teql's enqueue will return success and this will activate class 1:2. Main issue is that teql only updates the parent visible qlen (sch->q.qlen) at dequeue. Since QFQ will only call dequeue if peek succeeds (and teql's peek always returns NULL), dequeue will never be called and thus the qlen will remain as 0. With that in mind, when GangMin updates 1:2's lmax value, the qfq_change_class calls qfq_deact_rm_from_agg. Since the child qdisc's qlen was not incremented, qfq fails to deactivate the class, but still frees its pointers from the aggregate. So when the first packet is rescheduled after 6.4 seconds (netem's delay), a dangling pointer is accessed causing GangMin's causing a UAF.

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