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

exploitDog

Количество 42

Количество 42

github логотип

GHSA-5f39-wjpq-xrrj

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

In the Linux kernel, the following vulnerability has been resolved: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock When FUTEX_CMP_REQUEUE_PI requeues a non-top waiter that already owns the target PI futex, task_blocks_on_rt_mutex() returns -EDEADLK before setting waiter->task. The subsequent remove_waiter() in rt_mutex_start_proxy_lock() dereferences the NULL waiter->task, causing a kernel crash. Add a self-deadlock check for non-top waiters before calling rt_mutex_start_proxy_lock(), analogous to the top-waiter check in futex_lock_pi_atomic().

CVSS3: 5.5
EPSS: Низкий
fstec логотип

BDU:2026-14014

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

Уязвимость функции futex_requeue() модуля kernel/futex/requeue.c ядра операционной системы Linux, позволяющая нарушителю вызвать отказ в обслуживании

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

GHSA-cqc6-9f34-295v

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

In the Linux kernel, the following vulnerability has been resolved: rtmutex: Use waiter::task instead of current in remove_waiter() remove_waiter() is used by the slowlock paths, but it is also used for proxy-lock rollback in rt_mutex_start_proxy_lock() when invoked from futex_requeue(). In the latter case waiter::task is not current, but remove_waiter() operates on current for the dequeue operation. That results in several problems: 1) the rbtree dequeue happens without waiter::task::pi_lock being held 2) the waiter task's pi_blocked_on state is not cleared, which leaves a dangling pointer primed for UAF around. 3) rt_mutex_adjust_prio_chain() operates on the wrong top priority waiter task Use waiter::task instead of current in all related operations in remove_waiter() to cure those problems. [ tglx: Fixup rt_mutex_adjust_prio_chain(), add a comment and amend the changelog ]

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

ELSA-2026-50388

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

ELSA-2026-50388: Unbreakable Enterprise kernel security update (IMPORTANT)

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

ELSA-2026-50387

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

ELSA-2026-50387: Unbreakable Enterprise kernel security update (IMPORTANT)

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

BDU:2026-08889

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

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

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

RLSA-2026:19568

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

Important: kernel security update

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

ELSA-2026-19568

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

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

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

RLSA-2026:21706

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

Important: kernel security update

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

ELSA-2026-21706

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

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

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

ELSA-2026-500121

около 1 месяца назад

ELSA-2026-500121: Unbreakable Enterprise kernel security update (IMPORTANT)

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

SUSE-SU-2026:2421-1

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

Security update for the Linux Kernel

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

SUSE-SU-2026:2317-1

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

Security update for the Linux Kernel

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

ELSA-2026-50319

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

ELSA-2026-50319: Unbreakable Enterprise kernel security update (IMPORTANT)

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

SUSE-SU-2026:2383-1

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

Security update for the Linux Kernel

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

ELSA-2026-50372

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

ELSA-2026-50372: Unbreakable Enterprise kernel security update (IMPORTANT)

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

SUSE-SU-2026:2310-1

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

Security update for the Linux Kernel

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

openSUSE-SU-2026:20912-1

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

Security update for the Linux Kernel

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

SUSE-SU-2026:2450-1

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

Security update for the Linux Kernel

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

SUSE-SU-2026:2591-1

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

Security update for the Linux Kernel

EPSS: Низкий

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

Уязвимость
CVSS
EPSS
Опубликовано
github логотип
GHSA-5f39-wjpq-xrrj

In the Linux kernel, the following vulnerability has been resolved: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock When FUTEX_CMP_REQUEUE_PI requeues a non-top waiter that already owns the target PI futex, task_blocks_on_rt_mutex() returns -EDEADLK before setting waiter->task. The subsequent remove_waiter() in rt_mutex_start_proxy_lock() dereferences the NULL waiter->task, causing a kernel crash. Add a self-deadlock check for non-top waiters before calling rt_mutex_start_proxy_lock(), analogous to the top-waiter check in futex_lock_pi_atomic().

CVSS3: 5.5
3 месяца назад
fstec логотип
BDU:2026-14014

Уязвимость функции futex_requeue() модуля kernel/futex/requeue.c ядра операционной системы Linux, позволяющая нарушителю вызвать отказ в обслуживании

CVSS3: 5.5
3 месяца назад
github логотип
GHSA-cqc6-9f34-295v

In the Linux kernel, the following vulnerability has been resolved: rtmutex: Use waiter::task instead of current in remove_waiter() remove_waiter() is used by the slowlock paths, but it is also used for proxy-lock rollback in rt_mutex_start_proxy_lock() when invoked from futex_requeue(). In the latter case waiter::task is not current, but remove_waiter() operates on current for the dequeue operation. That results in several problems: 1) the rbtree dequeue happens without waiter::task::pi_lock being held 2) the waiter task's pi_blocked_on state is not cleared, which leaves a dangling pointer primed for UAF around. 3) rt_mutex_adjust_prio_chain() operates on the wrong top priority waiter task Use waiter::task instead of current in all related operations in remove_waiter() to cure those problems. [ tglx: Fixup rt_mutex_adjust_prio_chain(), add a comment and amend the changelog ]

CVSS3: 7.8
1%
Низкий
4 месяца назад
oracle-oval логотип
ELSA-2026-50388

ELSA-2026-50388: Unbreakable Enterprise kernel security update (IMPORTANT)

1%
Низкий
2 месяца назад
oracle-oval логотип
ELSA-2026-50387

ELSA-2026-50387: Unbreakable Enterprise kernel security update (IMPORTANT)

1%
Низкий
2 месяца назад
fstec логотип
BDU:2026-08889

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

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

Important: kernel security update

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

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

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

Important: kernel security update

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

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

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

ELSA-2026-500121: Unbreakable Enterprise kernel security update (IMPORTANT)

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

Security update for the Linux Kernel

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

Security update for the Linux Kernel

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

ELSA-2026-50319: Unbreakable Enterprise kernel security update (IMPORTANT)

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

Security update for the Linux Kernel

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

ELSA-2026-50372: Unbreakable Enterprise kernel security update (IMPORTANT)

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

Security update for the Linux Kernel

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

Security update for the Linux Kernel

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

Security update for the Linux Kernel

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

Security update for the Linux Kernel

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

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