Вход на сайт

Просмотр новости

Найдите то, что Вас интересует

Specially Crafted NTFS File-System Image Allows Root Access On Linux With NTFS3 Driver

Дата публикации: 22-08-2026 12:42:26

A reported security vulnerability for the NTFS3 driver has gone unaddressed since being reported earlier this summer. The vulnerability allows a pre-crafted NTFS image on a USB flash drive or similar to allow the user to gain root access to the running Linux system...

Основное содержимое страницы с новостью.

LINUX STORAGE

A reported security vulnerability for the NTFS3 driver has gone unaddressed since being reported earlier this summer. The vulnerability allows a pre-crafted NTFS image on a USB flash drive or similar to allow the user to gain root access to the running Linux system.

After being reported privately two months ago and going unresolved, a SUID injection leading to local privilege escalation was made public. A Phoronix reader noted the disclosure via the NTFS3 mailing list.

Vova Tokarev who discovered the issue noted:

"A pre-crafted NTFS image (e.g. USB drive) with $LXUID=0, $LXGID=0, $LXMOD=0104755 already in the MFT produces a setuid-root binary the moment the volume is mounted. No setxattr() is involved -- the EAs are on disk. The -EPERM check doesn't help.

The root cause is still at fs/ntfs3/xattr.c:1022:

inode->i_mode = le32_to_cpu(value[2]);

This loads S_ISUID/S_ISGID directly from untrusted on-disk data. Desktop automounters (udisks) mount NTFS with suid by default, so plugging in a crafted USB gives any local user euid=0.

Suggested one-line fix:

- inode->i_mode = le32_to_cpu(value[2]);
+ inode->i_mode = le32_to_cpu(value[2]) & ~(S_ISUID | S_ISGID);

I have a full PoC and working demo."

Those interested can find the proof of concept and demo along with more information via this mailing list post.

USB flash drive connected

As of writing the vulnerability has yet to be addressed by the mainline NTFS3 kernel driver. This doesn't appear to impact the newer NTFS driver alternative that also continues maturing within the mainline kernel tree.

Схожие новости

#Наименование новостиТональностьИнформативностьДата публикации
1Yet Another Linux Kernel Vulnerability Discovered08.3427-07-2026
2Атакована недоисправленная уязвимость в Windows-2609-07-2026
3New Vulnerability Discovered in Linux Kernel017.1717-07-2026
4KDE Plasma Affected By Arbitrary Code Execution To Break Sandboxes With "Open New Window"-2702-07-2026
5Linux Prepares For New USB-C Security Feature On Lenovo ThinkPads0509-07-2026
6CVE-2026-46333: Local Root Privilege Escalation and Credential Disclosure in the Linux Kernel ptrace Path07.5420-05-2026
7432 отчёта об уязвимостях в ядре Linux. Локальная root-уязвимость Frag Gap013.8422-07-2026
8Уязвимости в XFS, snapd и Exim, позволяющие поднять свои привилегии-18.7924-07-2026
9New U-Boot flaws could enable stealthy firmware attacks-2710-07-2026
10OpenZFS 2.4.4 Released With Linux 7.2 Support, Dozens Of Fixes018.8222-08-2026

Классификация: Наука. Схожих патентов: 0. Схожих новостей: 10. Тональность: 0. Информативность: 9.48. Источник: www.phoronix.com.