Количество 86
Количество 86
GHSA-gxm6-px42-mpjc
In the Linux kernel, the following vulnerability has been resolved: netfilter: nf_tables: fix use-after-free in nf_tables_addchain() nf_tables_addchain() publishes the chain to table->chains via list_add_tail_rcu() (in nft_chain_add()) before registering hooks. If nf_tables_register_hook() then fails, the error path calls nft_chain_del() (list_del_rcu()) followed by nf_tables_chain_destroy() with no RCU grace period in between. This creates two use-after-free conditions: 1) Control-plane: nf_tables_dump_chains() traverses table->chains under rcu_read_lock(). A concurrent dump can still be walking the chain when the error path frees it. 2) Packet path: for NFPROTO_INET, nf_register_net_hook() briefly installs the IPv4 hook before IPv6 registration fails. Packets entering nft_do_chain() via the transient IPv4 hook can still be dereferencing chain->blob_gen_X when the error path frees the chain. Add synchronize_rcu() between nft_chain_del() and the chai...
BDU:2026-09460
Уязвимость компонента net/netfilter/nf_tables_api.c ядра операционной системы Linux, позволяющая нарушителю вызвать отказ в обслуживании
RLSA-2026:2264
Moderate: kernel security update
ELSA-2026-2264
ELSA-2026-2264: kernel security update (IMPORTANT)
GHSA-w7vv-gw43-hxq2
In the Linux kernel, the following vulnerability has been resolved: dst: fix races in rt6_uncached_list_del() and rt_del_uncached_list() syzbot was able to crash the kernel in rt6_uncached_list_flush_dev() in an interesting way [1] Crash happens in list_del_init()/INIT_LIST_HEAD() while writing list->prev, while the prior write on list->next went well. static inline void INIT_LIST_HEAD(struct list_head *list) { WRITE_ONCE(list->next, list); // This went well WRITE_ONCE(list->prev, list); // Crash, @list has been freed. } Issue here is that rt6_uncached_list_del() did not attempt to lock ul->lock, as list_empty(&rt->dst.rt_uncached) returned true because the WRITE_ONCE(list->next, list) happened on the other CPU. We might use list_del_init_careful() and list_empty_careful(), or make sure rt6_uncached_list_del() always grabs the spinlock whenever rt->dst.rt_uncached_list has been set. A similar fix is neeed for IPv4. [1] BUG: KASAN: slab-use-after-free in INIT_LIST_HEAD in...
BDU:2026-01057
Уязвимость функций rt6_uncached_list_del() и rt_del_uncached_list() ядра операционной системы Linux, позволяющая нарушителю вызвать отказ в обслуживании
RLSA-2026:6053
Moderate: kernel security update
ELSA-2026-6053
ELSA-2026-6053: kernel security update (MODERATE)
RLSA-2026:2212
Moderate: kernel security update
ELSA-2026-2212
ELSA-2026-2212: kernel security update (MODERATE)
RLSA-2026:6571
Moderate: kernel security update
RLSA-2026:6570
Moderate: kernel security update
ELSA-2026-6571
ELSA-2026-6571: kernel security update (MODERATE)
ELSA-2026-6570
ELSA-2026-6570: kernel security update (MODERATE)
RLSA-2026:1690
Important: kernel security update
ELSA-2026-1690
ELSA-2026-1690: kernel security update (IMPORTANT)
SUSE-SU-2026:1791-1
Security update for the Linux Kernel (Live Patch 73 for SUSE Linux Enterprise 12 SP5)
SUSE-SU-2026:1786-1
Security update for the Linux Kernel (Live Patch 77 for SUSE Linux Enterprise 12 SP5)
SUSE-SU-2026:1781-1
Security update for the Linux Kernel (Live Patch 74 for SUSE Linux Enterprise 12 SP5)
SUSE-SU-2026:1773-1
Security update for the Linux Kernel (Live Patch 76 for SUSE Linux Enterprise 12 SP5)
Уязвимостей на страницу
Уязвимость | CVSS | EPSS | Опубликовано | |
|---|---|---|---|---|
GHSA-gxm6-px42-mpjc In the Linux kernel, the following vulnerability has been resolved: netfilter: nf_tables: fix use-after-free in nf_tables_addchain() nf_tables_addchain() publishes the chain to table->chains via list_add_tail_rcu() (in nft_chain_add()) before registering hooks. If nf_tables_register_hook() then fails, the error path calls nft_chain_del() (list_del_rcu()) followed by nf_tables_chain_destroy() with no RCU grace period in between. This creates two use-after-free conditions: 1) Control-plane: nf_tables_dump_chains() traverses table->chains under rcu_read_lock(). A concurrent dump can still be walking the chain when the error path frees it. 2) Packet path: for NFPROTO_INET, nf_register_net_hook() briefly installs the IPv4 hook before IPv6 registration fails. Packets entering nft_do_chain() via the transient IPv4 hook can still be dereferencing chain->blob_gen_X when the error path frees the chain. Add synchronize_rcu() between nft_chain_del() and the chai... | CVSS3: 7.8 | 1% Низкий | 5 месяцев назад | |
BDU:2026-09460 Уязвимость компонента net/netfilter/nf_tables_api.c ядра операционной системы Linux, позволяющая нарушителю вызвать отказ в обслуживании | CVSS3: 7.8 | 1% Низкий | 6 месяцев назад | |
RLSA-2026:2264 Moderate: kernel security update | 6 месяцев назад | |||
ELSA-2026-2264 ELSA-2026-2264: kernel security update (IMPORTANT) | 6 месяцев назад | |||
GHSA-w7vv-gw43-hxq2 In the Linux kernel, the following vulnerability has been resolved: dst: fix races in rt6_uncached_list_del() and rt_del_uncached_list() syzbot was able to crash the kernel in rt6_uncached_list_flush_dev() in an interesting way [1] Crash happens in list_del_init()/INIT_LIST_HEAD() while writing list->prev, while the prior write on list->next went well. static inline void INIT_LIST_HEAD(struct list_head *list) { WRITE_ONCE(list->next, list); // This went well WRITE_ONCE(list->prev, list); // Crash, @list has been freed. } Issue here is that rt6_uncached_list_del() did not attempt to lock ul->lock, as list_empty(&rt->dst.rt_uncached) returned true because the WRITE_ONCE(list->next, list) happened on the other CPU. We might use list_del_init_careful() and list_empty_careful(), or make sure rt6_uncached_list_del() always grabs the spinlock whenever rt->dst.rt_uncached_list has been set. A similar fix is neeed for IPv4. [1] BUG: KASAN: slab-use-after-free in INIT_LIST_HEAD in... | CVSS3: 4.7 | 0% Низкий | 6 месяцев назад | |
BDU:2026-01057 Уязвимость функций rt6_uncached_list_del() и rt_del_uncached_list() ядра операционной системы Linux, позволяющая нарушителю вызвать отказ в обслуживании | CVSS3: 4.7 | 0% Низкий | 7 месяцев назад | |
RLSA-2026:6053 Moderate: kernel security update | 4 месяца назад | |||
ELSA-2026-6053 ELSA-2026-6053: kernel security update (MODERATE) | 4 месяца назад | |||
RLSA-2026:2212 Moderate: kernel security update | 6 месяцев назад | |||
ELSA-2026-2212 ELSA-2026-2212: kernel security update (MODERATE) | 6 месяцев назад | |||
RLSA-2026:6571 Moderate: kernel security update | 4 месяца назад | |||
RLSA-2026:6570 Moderate: kernel security update | 4 месяца назад | |||
ELSA-2026-6571 ELSA-2026-6571: kernel security update (MODERATE) | 4 месяца назад | |||
ELSA-2026-6570 ELSA-2026-6570: kernel security update (MODERATE) | 4 месяца назад | |||
RLSA-2026:1690 Important: kernel security update | 6 месяцев назад | |||
ELSA-2026-1690 ELSA-2026-1690: kernel security update (IMPORTANT) | 6 месяцев назад | |||
SUSE-SU-2026:1791-1 Security update for the Linux Kernel (Live Patch 73 for SUSE Linux Enterprise 12 SP5) | 3 месяца назад | |||
SUSE-SU-2026:1786-1 Security update for the Linux Kernel (Live Patch 77 for SUSE Linux Enterprise 12 SP5) | 3 месяца назад | |||
SUSE-SU-2026:1781-1 Security update for the Linux Kernel (Live Patch 74 for SUSE Linux Enterprise 12 SP5) | 3 месяца назад | |||
SUSE-SU-2026:1773-1 Security update for the Linux Kernel (Live Patch 76 for SUSE Linux Enterprise 12 SP5) | 3 месяца назад |
Уязвимостей на страницу