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

exploitDog

Количество 88

Количество 88

github логотип

GHSA-7p99-gmjx-2f7r

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

In the Linux kernel, the following vulnerability has been resolved: Buffer overflow in drivers/xen/sys-hypervisor.c The build id returned by HYPERVISOR_xen_version(XENVER_build_id) is neither NUL terminated nor a string. The first causes a buffer overflow as sprintf in buildid_show will read and copy till it finds a NUL. 00000000 f4 91 51 f4 dd 38 9e 9d 65 47 52 eb 10 71 db 50 |..Q..8..eGR..q.P| 00000010 b9 a8 01 42 6f 2e 32 |...Bo.2| 00000017 So use a memcpy instead of sprintf to have the correct value: 00000000 f4 91 51 f4 dd 00 9e 9d 65 47 52 eb 10 71 db 50 |..Q.....eGR..q.P| 00000010 b9 a8 01 42 |...B| 00000014 (the above have a hack to embed a zero inside and check it's returned correctly). This is XSA-485 / CVE-2026-31786

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

GHSA-3mg7-pfmq-9qfv

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

In the Linux kernel, the following vulnerability has been resolved: smb: client: reject userspace cifs.spnego descriptions cifs.spnego key descriptions contain authority-bearing fields such as pid, uid, creduid, and upcall_target that cifs.upcall treats as kernel-originating inputs. However, userspace can also create keys of this type through request_key(2) or add_key(2), allowing those fields to be supplied without CIFS origin. Only accept cifs.spnego descriptions while CIFS is using its private spnego_cred to request the key.

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

ELSA-2026-23258

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

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

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

BDU:2026-07574

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

Уязвимость функции cifs_get_spnego_key() инструмента cifs.upcall пакета cifs-utils ядра операционных систем Linux, позволяющая нарушителю повысить свои привилегии до уровня root и выполнить произвольный код

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

SUSE-SU-2026:2482-1

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

Security update for the Linux Kernel

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

RLSA-2026:25121

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

Critical: kernel security update

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

ELSA-2026-25121

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

ELSA-2026-25121: kernel security update (CRITICAL)

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

ROS-20260608-80-0001

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

Уязвимость kernel-lt

CVSS3: 8.8
EPSS: Низкий
redos логотип

ROS-20260608-73-0001

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

Уязвимость kernel-lt

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

SUSE-SU-2026:2638-1

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

Security update for the Linux Kernel

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

SUSE-SU-2026:3067-1

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

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

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

SUSE-SU-2026:2658-1

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

Security update for the Linux Kernel

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

RLSA-2026:26427

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

Important: kernel security update

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

ELSA-2026-26427

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

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

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

SUSE-SU-2026:3066-1

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

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

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

SUSE-SU-2026:3065-1

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

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

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

SUSE-SU-2026:3011-1

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

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

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

SUSE-SU-2026:2995-1

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

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

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

SUSE-SU-2026:2994-1

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

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

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

SUSE-SU-2026:2992-1

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

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

EPSS: Низкий

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

Уязвимость
CVSS
EPSS
Опубликовано
github логотип
GHSA-7p99-gmjx-2f7r

In the Linux kernel, the following vulnerability has been resolved: Buffer overflow in drivers/xen/sys-hypervisor.c The build id returned by HYPERVISOR_xen_version(XENVER_build_id) is neither NUL terminated nor a string. The first causes a buffer overflow as sprintf in buildid_show will read and copy till it finds a NUL. 00000000 f4 91 51 f4 dd 38 9e 9d 65 47 52 eb 10 71 db 50 |..Q..8..eGR..q.P| 00000010 b9 a8 01 42 6f 2e 32 |...Bo.2| 00000017 So use a memcpy instead of sprintf to have the correct value: 00000000 f4 91 51 f4 dd 00 9e 9d 65 47 52 eb 10 71 db 50 |..Q.....eGR..q.P| 00000010 b9 a8 01 42 |...B| 00000014 (the above have a hack to embed a zero inside and check it's returned correctly). This is XSA-485 / CVE-2026-31786

CVSS3: 7.8
0%
Низкий
4 месяца назад
github логотип
GHSA-3mg7-pfmq-9qfv

In the Linux kernel, the following vulnerability has been resolved: smb: client: reject userspace cifs.spnego descriptions cifs.spnego key descriptions contain authority-bearing fields such as pid, uid, creduid, and upcall_target that cifs.upcall treats as kernel-originating inputs. However, userspace can also create keys of this type through request_key(2) or add_key(2), allowing those fields to be supplied without CIFS origin. Only accept cifs.spnego descriptions while CIFS is using its private spnego_cred to request the key.

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

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

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

Уязвимость функции cifs_get_spnego_key() инструмента cifs.upcall пакета cifs-utils ядра операционных систем Linux, позволяющая нарушителю повысить свои привилегии до уровня root и выполнить произвольный код

CVSS3: 8.8
0%
Низкий
4 месяца назад
suse-cvrf логотип
SUSE-SU-2026:2482-1

Security update for the Linux Kernel

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

Critical: kernel security update

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

ELSA-2026-25121: kernel security update (CRITICAL)

3 месяца назад
redos логотип
ROS-20260608-80-0001

Уязвимость kernel-lt

CVSS3: 8.8
0%
Низкий
3 месяца назад
redos логотип
ROS-20260608-73-0001

Уязвимость kernel-lt

CVSS3: 8.8
0%
Низкий
3 месяца назад
suse-cvrf логотип
SUSE-SU-2026:2638-1

Security update for the Linux Kernel

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

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

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

Security update for the Linux Kernel

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

Important: kernel security update

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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