目标达成 感谢每一位支持者 — 我们达成了 100% 目标!

目标: 1000 元 · 已筹: 1325

100%

CVE-2025-68211— Linux kernel 安全漏洞

AI 预测 5.9 利用难度: 中等 EPSS 0.12% · P2

可能的 ATT&CK 技术 1AI

T1496 · Resource Hijacking

影响版本矩阵 16

厂商产品版本范围状态
LinuxLinux31dbd01f314364b70c2e026a5793a29a4da8a9dc< 220cb3e425e17587f560335924cba9f16a842c64affected
31dbd01f314364b70c2e026a5793a29a4da8a9dc< 10644e8839544dd5699c03c8fb1aeeefc41602fdaffected
31dbd01f314364b70c2e026a5793a29a4da8a9dc< 67137b715b7db28d82e4ed07a7092c2fa6ba7adbaffected
31dbd01f314364b70c2e026a5793a29a4da8a9dc< 9c2f8a9b68024e5ebb4813665845ec0a95f2eac3affected
31dbd01f314364b70c2e026a5793a29a4da8a9dc< 74f78421c925b6d17695566f0c5941de57fd44b3affected
31dbd01f314364b70c2e026a5793a29a4da8a9dc< f62973e0767e4fcd6799087787fca08ca2a85b8caffected
31dbd01f314364b70c2e026a5793a29a4da8a9dc< f5548c318d6520d4fa3c5ed6003eeb710763cbc5affected
2.6.32affected
… +8 条更多
获取后续新漏洞提醒登录后订阅

一、 漏洞 CVE-2025-68211 基础信息

漏洞信息

对漏洞内容有疑问?看看神龙的深度分析是否有帮助!
查看神龙十问 ↗

尽管我们使用了先进的大模型技术,但其输出仍可能包含不准确或过时的信息。神龙努力确保数据的准确性,但请您根据实际情况进行核实和判断。

Vulnerability Title
ksm: use range-walk function to jump over holes in scan_get_next_rmap_item
来源: 美国国家漏洞数据库 NVD
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: ksm: use range-walk function to jump over holes in scan_get_next_rmap_item Currently, scan_get_next_rmap_item() walks every page address in a VMA to locate mergeable pages. This becomes highly inefficient when scanning large virtual memory areas that contain mostly unmapped regions, causing ksmd to use large amount of cpu without deduplicating much pages. This patch replaces the per-address lookup with a range walk using walk_page_range(). The range walker allows KSM to skip over entire unmapped holes in a VMA, avoiding unnecessary lookups. This problem was previously discussed in [1]. Consider the following test program which creates a 32 TiB mapping in the virtual address space but only populates a single page: #include <unistd.h> #include <stdio.h> #include <sys/mman.h> /* 32 TiB */ const size_t size = 32ul * 1024 * 1024 * 1024 * 1024; int main() { char *area = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_NORESERVE | MAP_PRIVATE | MAP_ANON, -1, 0); if (area == MAP_FAILED) { perror("mmap() failed\n"); return -1; } /* Populate a single page such that we get an anon_vma. */ *area = 0; /* Enable KSM. */ madvise(area, size, MADV_MERGEABLE); pause(); return 0; } $ ./ksm-sparse & $ echo 1 > /sys/kernel/mm/ksm/run Without this patch ksmd uses 100% of the cpu for a long time (more then 1 hour in my test machine) scanning all the 32 TiB virtual address space that contain only one mapped page. This makes ksmd essentially deadlocked not able to deduplicate anything of value. With this patch ksmd walks only the one mapped page and skips the rest of the 32 TiB virtual address space, making the scan fast using little cpu.
来源: 美国国家漏洞数据库 NVD
CVSS Information
N/A
来源: 美国国家漏洞数据库 NVD
Vulnerability Type
N/A
来源: 美国国家漏洞数据库 NVD
Vulnerability Title
Linux kernel 安全漏洞
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Description
Linux kernel是美国Linux基金会的开源操作系统Linux所使用的内核。 Linux kernel存在安全漏洞,该漏洞源于ksm扫描VMA时未跳过未映射区域,可能导致CPU资源浪费。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商产品影响版本CPE订阅
LinuxLinux 31dbd01f314364b70c2e026a5793a29a4da8a9dc ~ 220cb3e425e17587f560335924cba9f16a842c64 -
LinuxLinux 2.6.32 -

二、漏洞 CVE-2025-68211 的公开POC

#POC 描述源链接神龙链接
AI 生成 POC高级

未找到公开 POC。

登录以生成 AI POC

三、漏洞 CVE-2025-68211 的情报信息

登录查看更多情报信息。

CVE-2025-68211 其他参考 (3)

同批安全公告 · Linux · 2025-12-16 · 共 157 条

CVE-2025-682639.8 CRITICALLinux kernel 安全漏洞
CVE-2025-68260Linux kernel 安全漏洞
CVE-2025-68251Linux kernel 安全漏洞
CVE-2025-68252Linux kernel 安全漏洞
CVE-2025-68253Linux kernel 安全漏洞
CVE-2025-68254Linux kernel 安全漏洞
CVE-2025-68255Linux kernel 安全漏洞
CVE-2025-68256Linux kernel 安全漏洞
CVE-2025-68257Linux kernel 安全漏洞
CVE-2025-68258Linux kernel 安全漏洞
CVE-2025-68259Linux kernel 安全漏洞
CVE-2025-68265Linux kernel 安全漏洞
CVE-2025-68283Linux kernel 安全漏洞
CVE-2025-68282Linux kernel 安全漏洞
CVE-2025-68281Linux kernel 安全漏洞
CVE-2025-68266Linux kernel 安全漏洞
CVE-2025-68262Linux kernel 安全漏洞
CVE-2025-68261Linux kernel 安全漏洞
CVE-2025-68250Linux kernel 安全漏洞
CVE-2025-68264Linux kernel 安全漏洞

显示前 20 条,共 157 条。 查看全部 &rarr; →

IV. Related Vulnerabilities

V. Comments for CVE-2025-68211

暂无评论


发表评论