First published: Sun Jan 19 2025(Updated: )
In the Linux kernel, the following vulnerability has been resolved: sctp: sysctl: auth_enable: avoid using current->nsproxy As mentioned in a previous commit of this series, using the 'net' structure via 'current' is not recommended for different reasons: - Inconsistency: getting info from the reader's/writer's netns vs only from the opener's netns. - current->nsproxy can be NULL in some cases, resulting in an 'Oops' (null-ptr-deref), e.g. when the current task is exiting, as spotted by syzbot [1] using acct(2). The 'net' structure can be obtained from the table->data using container_of(). Note that table->data could also be used directly, but that would increase the size of this fix, while 'sctp.ctl_sock' still needs to be retrieved from 'net' structure.
Credit: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Affected Software | Affected Version | How to fix |
---|---|---|
Linux Kernel | ||
Linux Kernel | >=3.10.41<3.11 | |
Linux Kernel | >=3.12.20<3.13 | |
Linux Kernel | >=3.14.5<5.4.290 | |
Linux Kernel | >=5.5<5.10.234 | |
Linux Kernel | >=5.11<5.15.177 | |
Linux Kernel | >=5.16<6.1.125 | |
Linux Kernel | >=6.2<6.6.72 | |
Linux Kernel | >=6.7<6.12.10 | |
Linux Kernel | =6.13-rc1 | |
Linux Kernel | =6.13-rc2 | |
Linux Kernel | =6.13-rc3 | |
Linux Kernel | =6.13-rc4 | |
Linux Kernel | =6.13-rc5 | |
Linux Kernel | =6.13-rc6 |
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.
CVE-2025-21638 is considered a medium severity vulnerability in the Linux kernel.
To fix CVE-2025-21638, ensure your Linux kernel is updated to the latest patched version provided by your distribution.
CVE-2025-21638 may lead to inconsistencies in network processing due to improper use of the current context in the SCTP protocol.
CVE-2025-21638 affects multiple versions of the Linux kernel prior to the fix being applied.
Yes, CVE-2025-21638 is related to network security as it involves the SCTP protocol management within the Linux kernel.