SEPTEMBER 17, 2026
Live Feed
Back to database
Case File

CVE-2026-82911

MEDIUM · CVSS 5.1 EPSS 0.16% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-09-04 · Last synced 2026-09-17

CyberRota Analysis

AI-Generated

The vulnerability allows unauthenticated attackers to confirm any order on behalf of an authenticated user by exploiting a Cross-Site Request Forgery (CSRF) flaw in the OrderConfirmController of Roskus Prospero Flow CRM prior to version 5.15.11. This issue arises from the lack of CSRF protection on GET requests, enabling attackers to automate the confirmation of orders by simply directing users to a malicious link. Organizations using affected versions of the CRM should prioritize patching this vulnerability to prevent unauthorized order confirmations and potential financial losses.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

GitHub PoC Links

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-82911
Severity
MEDIUM
CVSS
5.1
EPSS
0.16%

Original NVD Description

Cross-Site Request Forgery (CSRF) in the OrderConfirmController at GET /order/confirm/{order_number} in Roskus Prospero Flow CRM before 5.15.11 allows an unauthenticated attacker to confirm any order on behalf of an authenticated user by directing them to a crafted page. Laravel's VerifyCsrfToken middleware enforces CSRF tokens only on POST, PUT, PATCH, and DELETE requests; the Route::get declaration leaves this state-changing action unprotected. Session cookies configured with SameSite=Lax are automatically included in top-level cross-site navigation, so a single link click triggers OrderConfirmController::confirm() and transitions the target order from pending to confirmed without user authorization. Because order numbers are sequential integers, an attacker can enumerate and confirm all existing orders in a single automated sweep.