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

CVE-2025-69032

Published: 2025-12-30 11:16:02
Last Modified: 2026-04-27 20:16:26

Description

Authorization Bypass Through User-Controlled Key vulnerability in Mikado-Themes FiveStar fivestar allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects FiveStar: from n/a through <= 1.7.

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)

cpe:2.3:a:qodeinteractive:fivestar:*:*:*:*:*:wordpress:*:* - VULNERABLE
FiveStar Theme <= 1.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69032 PoC - FiveStar Theme IDOR Vulnerability # Target: WordPress with FiveStar Theme <= 1.7 import requests import argparse def check_vulnerability(target_url): """Check if target is vulnerable to CVE-2025-69032""" # Note: Specific endpoints depend on theme configuration # Common vulnerable patterns in FiveStar theme vulnerable_endpoints = [ '/wp-json/fivestar/v1/rating', '/wp-admin/admin-ajax.php', '/wp-content/themes/fivestar/' ] print(f"[*] Scanning target: {target_url}") print(f"[*] CVE-2025-69032 - FiveStar IDOR Vulnerability") # Basic check - verify WordPress installation wp_check = requests.get(f"{target_url}/wp-login.php", timeout=10) if wp_check.status_code != 200: print("[-] Target does not appear to be a WordPress site") return False print("[+] WordPress installation detected") print("[!] Manual verification required for IDOR exploitation") print("[*] Check if resource IDs can be manipulated to access other users' data") return True if __name__ == "__main__": parser = argparse.ArgumentParser(description='CVE-2025-69032 PoC') parser.add_argument('-u', '--url', required=True, help='Target URL') args = parser.parse_args() check_vulnerability(args.url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69032", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:16:01.827", "lastModified": "2026-04-27T20:16:26.207", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization Bypass Through User-Controlled Key vulnerability in Mikado-Themes FiveStar fivestar allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects FiveStar: from n/a through <= 1.7."}], "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-639"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:qodeinteractive:fivestar:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "1.7", "matchCriteriaId": "505F74EC-84C0-45A4-AAF2-E3EAC2D95F4D"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/fivestar/vulnerability/wordpress-fivestar-theme-1-7-insecure-direct-object-references-idor-vulnerability?_s_id=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}