Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

Количество 86

Количество 86

github логотип

GHSA-gxm6-px42-mpjc

5 месяцев назад

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
EPSS: Низкий
fstec логотип

BDU:2026-09460

6 месяцев назад

Уязвимость компонента net/netfilter/nf_tables_api.c ядра операционной системы Linux, позволяющая нарушителю вызвать отказ в обслуживании

CVSS3: 7.8
EPSS: Низкий
rocky логотип

RLSA-2026:2264

6 месяцев назад

Moderate: kernel security update

EPSS: Низкий
oracle-oval логотип

ELSA-2026-2264

6 месяцев назад

ELSA-2026-2264: kernel security update (IMPORTANT)

EPSS: Низкий
github логотип

GHSA-w7vv-gw43-hxq2

6 месяцев назад

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
EPSS: Низкий
fstec логотип

BDU:2026-01057

7 месяцев назад

Уязвимость функций rt6_uncached_list_del() и rt_del_uncached_list() ядра операционной системы Linux, позволяющая нарушителю вызвать отказ в обслуживании

CVSS3: 4.7
EPSS: Низкий
rocky логотип

RLSA-2026:6053

4 месяца назад

Moderate: kernel security update

EPSS: Низкий
oracle-oval логотип

ELSA-2026-6053

4 месяца назад

ELSA-2026-6053: kernel security update (MODERATE)

EPSS: Низкий
rocky логотип

RLSA-2026:2212

6 месяцев назад

Moderate: kernel security update

EPSS: Низкий
oracle-oval логотип

ELSA-2026-2212

6 месяцев назад

ELSA-2026-2212: kernel security update (MODERATE)

EPSS: Низкий
rocky логотип

RLSA-2026:6571

4 месяца назад

Moderate: kernel security update

EPSS: Низкий
rocky логотип

RLSA-2026:6570

4 месяца назад

Moderate: kernel security update

EPSS: Низкий
oracle-oval логотип

ELSA-2026-6571

4 месяца назад

ELSA-2026-6571: kernel security update (MODERATE)

EPSS: Низкий
oracle-oval логотип

ELSA-2026-6570

4 месяца назад

ELSA-2026-6570: kernel security update (MODERATE)

EPSS: Низкий
rocky логотип

RLSA-2026:1690

6 месяцев назад

Important: kernel security update

EPSS: Низкий
oracle-oval логотип

ELSA-2026-1690

6 месяцев назад

ELSA-2026-1690: kernel security update (IMPORTANT)

EPSS: Низкий
suse-cvrf логотип

SUSE-SU-2026:1791-1

3 месяца назад

Security update for the Linux Kernel (Live Patch 73 for SUSE Linux Enterprise 12 SP5)

EPSS: Низкий
suse-cvrf логотип

SUSE-SU-2026:1786-1

3 месяца назад

Security update for the Linux Kernel (Live Patch 77 for SUSE Linux Enterprise 12 SP5)

EPSS: Низкий
suse-cvrf логотип

SUSE-SU-2026:1781-1

3 месяца назад

Security update for the Linux Kernel (Live Patch 74 for SUSE Linux Enterprise 12 SP5)

EPSS: Низкий
suse-cvrf логотип

SUSE-SU-2026:1773-1

3 месяца назад

Security update for the Linux Kernel (Live Patch 76 for SUSE Linux Enterprise 12 SP5)

EPSS: Низкий

Уязвимостей на страницу

Уязвимость
CVSS
EPSS
Опубликовано
github логотип
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 месяцев назад
fstec логотип
BDU:2026-09460

Уязвимость компонента net/netfilter/nf_tables_api.c ядра операционной системы Linux, позволяющая нарушителю вызвать отказ в обслуживании

CVSS3: 7.8
1%
Низкий
6 месяцев назад
rocky логотип
RLSA-2026:2264

Moderate: kernel security update

6 месяцев назад
oracle-oval логотип
ELSA-2026-2264

ELSA-2026-2264: kernel security update (IMPORTANT)

6 месяцев назад
github логотип
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 месяцев назад
fstec логотип
BDU:2026-01057

Уязвимость функций rt6_uncached_list_del() и rt_del_uncached_list() ядра операционной системы Linux, позволяющая нарушителю вызвать отказ в обслуживании

CVSS3: 4.7
0%
Низкий
7 месяцев назад
rocky логотип
RLSA-2026:6053

Moderate: kernel security update

4 месяца назад
oracle-oval логотип
ELSA-2026-6053

ELSA-2026-6053: kernel security update (MODERATE)

4 месяца назад
rocky логотип
RLSA-2026:2212

Moderate: kernel security update

6 месяцев назад
oracle-oval логотип
ELSA-2026-2212

ELSA-2026-2212: kernel security update (MODERATE)

6 месяцев назад
rocky логотип
RLSA-2026:6571

Moderate: kernel security update

4 месяца назад
rocky логотип
RLSA-2026:6570

Moderate: kernel security update

4 месяца назад
oracle-oval логотип
ELSA-2026-6571

ELSA-2026-6571: kernel security update (MODERATE)

4 месяца назад
oracle-oval логотип
ELSA-2026-6570

ELSA-2026-6570: kernel security update (MODERATE)

4 месяца назад
rocky логотип
RLSA-2026:1690

Important: kernel security update

6 месяцев назад
oracle-oval логотип
ELSA-2026-1690

ELSA-2026-1690: kernel security update (IMPORTANT)

6 месяцев назад
suse-cvrf логотип
SUSE-SU-2026:1791-1

Security update for the Linux Kernel (Live Patch 73 for SUSE Linux Enterprise 12 SP5)

3 месяца назад
suse-cvrf логотип
SUSE-SU-2026:1786-1

Security update for the Linux Kernel (Live Patch 77 for SUSE Linux Enterprise 12 SP5)

3 месяца назад
suse-cvrf логотип
SUSE-SU-2026:1781-1

Security update for the Linux Kernel (Live Patch 74 for SUSE Linux Enterprise 12 SP5)

3 месяца назад
suse-cvrf логотип
SUSE-SU-2026:1773-1

Security update for the Linux Kernel (Live Patch 76 for SUSE Linux Enterprise 12 SP5)

3 месяца назад

Уязвимостей на страницу