The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-41194

CVE-2026-41194: FreeScout CSRF Vulnerability

CVE-2026-41194 is a CSRF flaw in FreeScout that allows attackers to disconnect OAuth settings via a GET request without CSRF protection. This post covers the technical details, affected versions, and mitigation steps.

Published: April 23, 2026

CVE-2026-41194 Overview

CVE-2026-41194 is a Cross-Site Request Forgery (CSRF) vulnerability affecting FreeScout, a free self-hosted help desk and shared mailbox application. The vulnerability exists in the mailbox OAuth disconnect functionality, which is implemented as a GET endpoint without CSRF token protection. This design flaw allows attackers to craft malicious links that, when clicked by an authenticated mailbox administrator, will disconnect OAuth integrations without proper authorization verification.

Critical Impact

An attacker can trick a logged-in mailbox administrator into clicking a malicious link, resulting in the disconnection of OAuth integrations and removal of stored OAuth metadata from mailboxes, potentially disrupting email service functionality.

Affected Products

  • FreeScout versions prior to 1.8.215
  • Self-hosted FreeScout help desk installations with OAuth integrations
  • FreeScout instances using Microsoft 365/Exchange OAuth connections

Discovery Timeline

  • 2026-04-21 - CVE CVE-2026-41194 published to NVD
  • 2026-04-22 - Last updated in NVD database

Technical Details for CVE-2026-41194

Vulnerability Analysis

This CSRF vulnerability (CWE-352) stems from a fundamental security design issue in how FreeScout handles the OAuth disconnect action. The vulnerable endpoint /mailbox/oauth-disconnect/{id}/{in_out}/{provider} was implemented as a GET route rather than a state-changing POST request with proper CSRF protection. When a user with administrative privileges visits this URL, the application removes OAuth metadata from the specified mailbox and performs a redirect, without verifying the legitimacy of the request origin.

The lack of CSRF token validation means that any external website can embed this URL in an image tag, link, or iframe, triggering the disconnect action when visited by an authenticated administrator. This represents a clear violation of secure design principles where state-changing operations should be protected against cross-site request attacks.

Root Cause

The root cause is the implementation of a state-changing operation (OAuth disconnection) as a GET request without CSRF token validation in the MailboxesController.php file. GET requests are inherently vulnerable to CSRF attacks as they can be trivially triggered through image sources, link prefetching, or any mechanism that causes the browser to issue a GET request.

Attack Vector

An attacker can exploit this vulnerability by crafting a malicious webpage or email containing a link or embedded resource pointing to the vulnerable OAuth disconnect endpoint. When an authenticated FreeScout administrator visits the attacker's page, the browser automatically sends the request with the victim's session cookies, executing the OAuth disconnect action without the user's knowledge or consent.

php
// Vulnerable code in app/Http/Controllers/MailboxesController.php
// Before the fix, no CSRF token verification was performed

         $mailbox = Mailbox::findOrFail($mailbox_id);
         $this->authorize('admin', $mailbox);
         
+        if (csrf_token() != $request->token) {
+            return throw new \Illuminate\Session\TokenMismatchException;
+        }
+
         // oAuth Disconnect.
         $mailbox->removeMetaParam('oauth', true);

Source: GitHub Commit Update

Detection Methods for CVE-2026-41194

Indicators of Compromise

  • Unexpected OAuth disconnection events in mailbox configuration logs
  • User reports of email integration failures without administrator action
  • Referrer logs showing external domains triggering the /mailbox/oauth-disconnect/ endpoint
  • Multiple OAuth disconnection requests occurring in rapid succession

Detection Strategies

  • Monitor web server access logs for GET requests to /mailbox/oauth-disconnect/ with external referrer headers
  • Implement alerting for OAuth configuration changes in FreeScout mailbox settings
  • Review application logs for unexpected TokenMismatchException errors after patching
  • Correlate OAuth disconnect events with user activity to identify unauthorized actions

Monitoring Recommendations

  • Enable detailed access logging for administrative routes in FreeScout
  • Configure alerts for any changes to mailbox OAuth integration status
  • Monitor for unusual patterns in administrative endpoint access from external referrers
  • Implement session activity monitoring for mailbox administrators

How to Mitigate CVE-2026-41194

Immediate Actions Required

  • Upgrade FreeScout to version 1.8.215 or later immediately
  • Review mailbox OAuth configurations to ensure no unauthorized disconnections occurred
  • Audit access logs for any suspicious requests to the OAuth disconnect endpoint
  • Re-establish any OAuth connections that may have been maliciously disconnected

Patch Information

FreeScout has addressed this vulnerability in version 1.8.215. The fix adds CSRF token validation to the OAuth disconnect endpoint, requiring a valid token parameter to be included in the request. The patch modifies both the controller logic in MailboxesController.php and the view template connection.blade.php to generate and validate CSRF tokens for disconnect links.

Patch details are available in the GitHub Commit Update and the official GitHub Release Version 1.8.215.

Workarounds

  • If immediate patching is not possible, consider temporarily disabling OAuth integrations
  • Implement a web application firewall (WAF) rule to block external referrers from accessing the OAuth disconnect endpoint
  • Restrict administrative access to FreeScout through VPN or IP whitelisting
  • Educate administrators about the risks of clicking untrusted links while logged into FreeScout
bash
# Example nginx configuration to block external referrers from OAuth disconnect endpoint
location ~ ^/mailbox/oauth-disconnect/ {
    if ($http_referer !~ "^https?://(www\.)?yourdomain\.com") {
        return 403;
    }
    # Pass to PHP-FPM as usual
    include fastcgi_params;
    fastcgi_pass php-fpm;
}

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechFreescout

  • SeverityMEDIUM

  • CVSS Score5.4

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityLow
  • CWE References
  • CWE-352
  • Technical References
  • GitHub Commit Update

  • GitHub Release Version 1.8.215

  • GitHub Security Advisory GHSA-6rvw-fhqx-cfv5
  • Related CVEs
  • CVE-2026-40496: FreeScout Auth Bypass Vulnerability

  • CVE-2026-40497: FreeScout Privilege Escalation Flaw

  • CVE-2026-40589: FreeScout Information Disclosure Flaw

  • CVE-2026-40591: FreeScout Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English