A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-41190

CVE-2026-41190: FreeScout Auth Bypass Vulnerability

CVE-2026-41190 is an authentication bypass flaw in FreeScout that allows unauthorized users to create drafts in restricted conversations via AJAX. This article covers technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-41190 Overview

CVE-2026-41190 is an authorization bypass vulnerability in FreeScout, a free self-hosted help desk and shared mailbox application. The vulnerability exists in the save_draft AJAX endpoint, which fails to properly enforce access controls when the APP_SHOW_ONLY_ASSIGNED_CONVERSATIONS configuration setting is enabled. While the direct conversation view correctly blocks unauthorized users who are neither the assignee nor the creator of a conversation, the save_draft endpoint implements weaker authorization checks, allowing authenticated attackers to create drafts inside conversations they should not have access to.

Critical Impact

Authenticated users can bypass conversation access restrictions and inject draft content into conversations they are not assigned to, potentially leading to unauthorized information disclosure or manipulation of customer communications.

Affected Products

  • FreeScout versions prior to 1.8.215
  • Self-hosted FreeScout installations with APP_SHOW_ONLY_ASSIGNED_CONVERSATIONS enabled
  • FreeScout deployments using conversation assignment restrictions

Discovery Timeline

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

Technical Details for CVE-2026-41190

Vulnerability Analysis

This vulnerability falls under CWE-863 (Incorrect Authorization), where the application fails to consistently enforce access control policies across all endpoints. When APP_SHOW_ONLY_ASSIGNED_CONVERSATIONS is enabled in FreeScout, the application is designed to restrict conversation visibility so that users can only see conversations they are assigned to or have created. The direct conversation view endpoint properly enforces this restriction by blocking unauthorized access attempts.

However, the save_draft AJAX endpoint in the ConversationsController.php file contains weaker authorization logic. The original implementation included an additional permission check using hasManageMailboxPermission() with ACCESS_PERM_ASSIGNED, which inadvertently allowed users with general mailbox permissions to bypass the conversation-level access controls. This inconsistency means an attacker with valid application credentials could send a direct POST request to the save_draft endpoint and successfully create a draft within a conversation that would otherwise be hidden from them in the UI.

Root Cause

The root cause of this vulnerability is inconsistent authorization enforcement between the conversation view functionality and the draft saving functionality. The save_draft endpoint included an overly permissive fallback check that allowed users with ACCESS_PERM_ASSIGNED mailbox-level permissions to bypass conversation-specific access controls. This created a gap where the UI properly hid conversations from unauthorized users, but the backend API still accepted draft submissions for those same restricted conversations.

Attack Vector

This vulnerability is exploitable over the network by any authenticated user. The attacker requires low-level privileges (a valid FreeScout account) to exploit the vulnerability. The attack flow involves:

  1. Authenticating to the FreeScout application with valid credentials
  2. Identifying a target conversation ID (potentially through enumeration or social engineering)
  3. Sending a crafted POST request directly to the save_draft AJAX endpoint
  4. Including the target conversation_id and mailbox_id parameters with malicious draft content
  5. The draft is created in the target conversation, bypassing UI-level access restrictions
php
// Security patch in app/Http/Controllers/ConversationsController.php
// Source: https://github.com/freescout-help-desk/freescout/commit/414878eb79be7cb01a3ae124df6efcd23729275f

                 $new = true;
                 if (!$response['msg'] && !empty($request->conversation_id)) {
                     $conversation = Conversation::find($request->conversation_id);
-                    if ($conversation && !$user->can('view', $conversation) && !$user->hasManageMailboxPermission($request->mailbox_id, Mailbox::ACCESS_PERM_ASSIGNED)) {
+                    if ($conversation && !$user->can('view', $conversation) /*&& !$user->hasManageMailboxPermission($request->mailbox_id, Mailbox::ACCESS_PERM_ASSIGNED)*/) {
                         $response['msg'] = __('Not enough permissions');
                     } else {
                         $new = false;

Source: GitHub Commit Details

The patch removes the secondary permission check hasManageMailboxPermission(), ensuring that the can('view', $conversation) policy check is the sole authorization gate for draft operations.

Detection Methods for CVE-2026-41190

Indicators of Compromise

  • Unexpected draft entries appearing in conversations where the draft creator is not the assigned user or conversation creator
  • POST requests to the save_draft AJAX endpoint with conversation_id parameters referencing restricted conversations
  • Authentication logs showing users accessing conversation IDs outside their assigned scope

Detection Strategies

  • Monitor web application logs for POST requests to draft endpoints containing conversation IDs the requesting user should not have access to
  • Implement application-level audit logging for draft creation events, including the user ID, conversation ID, and assignment status
  • Cross-reference draft creation events against conversation assignment records to identify unauthorized access patterns

Monitoring Recommendations

  • Enable detailed access logging in FreeScout to track all conversation and draft operations
  • Configure web application firewall (WAF) rules to flag suspicious patterns of conversation ID enumeration
  • Establish baseline behavior for draft creation patterns and alert on anomalies such as users creating drafts across multiple unrelated conversations

How to Mitigate CVE-2026-41190

Immediate Actions Required

  • Upgrade FreeScout to version 1.8.215 or later immediately
  • Audit existing draft entries for any unauthorized content created by users who were not assigned to the respective conversations
  • Review application logs for signs of exploitation attempts targeting the save_draft endpoint
  • Consider temporarily disabling the APP_SHOW_ONLY_ASSIGNED_CONVERSATIONS feature if immediate patching is not possible

Patch Information

FreeScout version 1.8.215 addresses this vulnerability by removing the overly permissive hasManageMailboxPermission() check from the draft saving authorization logic. The fix ensures that only users who can legitimately view a conversation are permitted to create drafts within it.

  • GitHub Release 1.8.215 - Official release containing the security fix
  • GitHub Security Advisory GHSA-vj2p-2789-3747 - Vendor security advisory with additional details
  • GitHub Commit Details - Specific commit implementing the fix

Workarounds

  • If patching is not immediately possible, disable the APP_SHOW_ONLY_ASSIGNED_CONVERSATIONS setting to remove the bypass condition (note: this removes the feature entirely)
  • Implement network-level access controls to restrict access to the FreeScout application to trusted users only
  • Apply web application firewall rules to validate that draft creation requests only target conversations the authenticated user is assigned to
bash
# Configuration example
# Disable the affected feature as a temporary workaround
# Edit your .env file and set:
APP_SHOW_ONLY_ASSIGNED_CONVERSATIONS=false

# Restart the application to apply changes
php artisan config:cache

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechFreescout

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-863
  • Technical References
  • GitHub Commit Details

  • GitHub Release 1.8.215

  • GitHub Security Advisory GHSA-vj2p-2789-3747
  • Related CVEs
  • CVE-2026-40496: FreeScout Auth Bypass Vulnerability

  • CVE-2026-40591: FreeScout Auth Bypass Vulnerability

  • CVE-2026-41191: FreeScout Auth Bypass Vulnerability

  • CVE-2026-40590: 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