CyberRota Analysis
AI-GeneratedThe 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.
Note: these links are listed for security research and verification purposes only.
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.