Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
Am-I-affected-by-Meltdown — Meltdown Exploit / Proof-of-concept / 检查系统是否受变种3影响:恶意数据缓存加载 (CVE-2017-5754),又名MELTDOWN。 | Kitploit
工具/GitHubGitHub/raphaelsc/am-i-affected-by-meltdown
漏洞分析漏洞利用硬件安全二进制分析
GitHubraphaelsc/am-i-affected-by-meltdown

Am-I-affected-by-Meltdown

Meltdown Exploit / Proof-of-concept / 检查系统是否受变种3影响:恶意数据缓存加载 (CVE-2017-5754),又名MELTDOWN。

查看仓库

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
网站
5396848年前Kitploit 审核通过
分享

我受到 Meltdown 影响了吗?!Meltdown (CVE-2017-5754) 检查器

Alt text

我是什么?

概念验证 /

漏洞利用 /

检查系统是否受到变种3的影响:恶意数据缓存加载 (CVE-2017-5754),又称MELTDOWN。

基本思想是用户将知道正在运行的系统是否已正确修补了类似KAISER补丁集(https://lkml.org/lkml/2017/10/31/884)的东西。

查看我的博客文章,它指导读者了解Meltdown概念验证:http://funwithbits.net/blog/programmers-guide-to-meltdown/

*** 目前仅适用于Linux ***

它是如何工作的?

它通过使用 /proc/kallsyms 查找系统调用表,并检查通过利用MELTDOWN找到的系统调用地址是否与 /proc/kallsyms 中相应的地址匹配。

开始使用

克隆,然后运行 make 编译项目,再运行 meltdown-checker:

root@kitploit:~
git clone https://github.com/raphaelsc/Am-I-affected-by-Meltdown.git
cd ./Am-I-affected-by-Meltdown
make
taskset 0x1 ./meltdown-checker

遇到以下情况时的处理:

  • Unable to read /proc/kallsyms...

    那是因为您的系统可能由于 /proc/sys/kernel/kptr_restrict 设置为 1 而阻止程序读取 /proc/kallsyms 中的内核符号。 以下命令可以解决问题:

    root@kitploit:~
    sudo sh -c "echo 0  > /proc/sys/kernel/kptr_restrict"
    
  • Unable to read /boot/System.map-.

    这很可能是因为您的系统没有挂载 /boot。该程序依赖该分区,因此您需要先挂载 /boot 分区。

如果您有关于如何在这种场景下回退到其他方法的想法,请提出一个issue。

受Meltdown影响的系统输出示例:

Alt text

root@kitploit:~
Checking whether system is affected by Variant 3: rogue data cache load (CVE-2017-5754), a.k.a MELTDOWN ...
Checking syscall table (sys_call_table) found at address 0xffffffffaea001c0 ...
0xc4c4c4c4c4c4c4c4 -> That's unknown
0xffffffffae251e10 -> That's SyS_write

System affected! Please consider upgrading your kernel to one that is patched with KAISER
Check https://security.googleblog.com/2018/01/todays-cpu-vulnerability-what-you-need.html for more details
下载工具