In the Linux kernel, the following vulnerability has been resolved: ptrace: slightly saner 'get_dumpable()' logic The 'dumpability' of a task is fundamentally about the memory image of the task - the concept comes from whether it can core dump or not - and makes no sense when you don't have an associated mm. And almost all users do in fact use it only for the case where the task has a mm pointer. But we have one odd special case: ptrace_may_access() uses 'dumpable' to check various other things entirely independently of the MM (typically explicitly using flags like PTRACE_MODE_READ_FSCREDS). Including for threads that no longer have a VM (and maybe never did, like most kernel threads). It's not what this flag was designed for, but it is what it is. The ptrace code does check that the uid/gid matches, so you do have to be uid-0 to see kernel thread details, but this means that the traditional "drop capabilities" model doesn't make any difference for this all. Make it all make a *bit* more sense by saying that if you don't have a MM pointer, we'll use a cached "last dumpability" flag if the thread ever had a MM (it will be zero for kernel threads since it is never set), and require a proper CAP_SYS_PTRACE capability to override.
| Vendor | Product | Versions |
|---|---|---|
| linux | linux_kernel | bfedb589252c01fa505ac9f6f2a3d5d68d707ef4, bfedb589252c01fa505ac9f6f2a3d5d68d707ef4, bfedb589252c01fa505ac9f6f2a3d5d68d707ef4, bfedb589252c01fa505ac9f6f2a3d5d68d707ef4, bfedb589252c01fa505ac9f6f2a3d5d68d707ef4, bfedb589252c01fa505ac9f6f2a3d5d68d707ef4, bfedb589252c01fa505ac9f6f2a3d5d68d707ef4, bfedb589252c01fa505ac9f6f2a3d5d68d707ef4, d5b3e840dbf6dd2c0f30b5982b6f5ecd49e46b12, 03eed7afbc09e061f66b448daf7863174c3dc3f3, e45692fa1aea06676449b63ef3c2b6e1e72b7578, 694a95fa6dae4991f16cda333d897ea063021fed, 3.16.52, 4.4.40, 4.8.16, 4.9.1, 4.10 |
Downstream vendors/products affected by this vulnerability
| Vendor | Product | Source | Confidence |
|---|---|---|---|
| debian | debian_linux | cve_cpe | 95% |
| linux | linux | mitre_affected | 90% |
| open source | linux kernel | cert_advisory | 90% |
Added CWE-362, updated tags to include 'race condition' and 'file disclosure', and confirmed no new patch version available.
Updated description with detailed technical information and added new affected version v5.6-rc1 and new tags.
Updated description to include a logic bug in __ptrace_may_access() and added a new patch version along with new relevant tags.
Updated description with detailed technical information about CVE-2026-46333, changed severity to HIGH, and added relevant tags and IOC.
Updated severity to HIGH and marked the vulnerability as exploit available and actively exploited.
Updated description with details about CVE-2026-46333, added affected version 7.0.7, and changed severity to HIGH.
Initial creation