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-41192

CVE-2026-41192: FreeScout Auth Bypass Vulnerability

CVE-2026-41192 is an authentication bypass flaw in FreeScout that allows mailbox peers to delete attachments by replaying encrypted IDs. This article covers technical details, affected versions, and mitigations.

Published: April 23, 2026

CVE-2026-41192 Overview

CVE-2026-41192 is a Missing Authorization vulnerability (CWE-862) affecting FreeScout, a free self-hosted help desk and shared mailbox application. Prior to version 1.8.215, the reply and draft flows trust client-supplied encrypted attachment IDs without proper authorization verification. Any IDs present in attachments_all[] but omitted from retained lists are decrypted and passed directly to Attachment::deleteByIds(). Because load_attachments returns encrypted IDs for attachments on a visible conversation, a mailbox peer can replay those IDs through save_draft and delete the original attachment row and file, leading to unauthorized data modification and potential data loss.

Critical Impact

Authenticated users with mailbox access can delete attachments belonging to other conversations, causing data integrity issues and potential loss of critical support ticket documentation.

Affected Products

  • FreeScout versions prior to 1.8.215
  • Self-hosted FreeScout help desk installations
  • FreeScout shared mailbox deployments

Discovery Timeline

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

Technical Details for CVE-2026-41192

Vulnerability Analysis

This vulnerability stems from a Missing Authorization flaw in how FreeScout handles attachment management during reply and draft operations. The application fails to properly verify that a user has authorization to perform deletion operations on specific attachments before processing the request.

When a user saves a draft or replies to a conversation, the application processes attachment IDs provided by the client. The vulnerable code path accepts encrypted attachment IDs through the attachments_all[] parameter. When certain IDs are omitted from the retained attachment lists, FreeScout decrypts these IDs and passes them directly to Attachment::deleteByIds() without verifying that the requesting user owns or has permission to delete those attachments.

The load_attachments function returns encrypted IDs for attachments associated with any visible conversation within the mailbox. This design allows an attacker with mailbox access to observe attachment IDs from other conversations and replay them through the save_draft endpoint, effectively deleting attachments they should not have access to modify.

Root Cause

The root cause is a broken access control implementation where the application trusts client-supplied attachment identifiers without performing proper authorization checks. The encryption of attachment IDs provides only obscurity, not actual security, since any authenticated user with mailbox access can obtain valid encrypted IDs through the load_attachments function. The deletion logic fails to verify attachment ownership or conversation association before executing the delete operation.

Attack Vector

The attack is network-based and requires low-privileged authenticated access to a FreeScout mailbox. An attacker who is a legitimate mailbox peer can exploit this vulnerability through the following process:

  1. Access a conversation within their mailbox to trigger load_attachments, which returns encrypted attachment IDs for visible conversations
  2. Capture the encrypted attachment IDs from conversations belonging to other users or different threads
  3. Craft a malicious save_draft request that includes the target attachment IDs in attachments_all[] but deliberately omits them from the retained attachments list
  4. Submit the request, causing the application to decrypt the IDs and delete the targeted attachments without authorization verification

No user interaction is required beyond the attacker having authenticated access to a shared mailbox. The attack can result in permanent deletion of attachment files and database records.

Detection Methods for CVE-2026-41192

Indicators of Compromise

  • Unexpected deletion of attachments from conversations where the associated user did not perform the action
  • Audit log entries showing attachment deletions initiated through save_draft endpoints by users without conversation ownership
  • Discrepancies between conversation attachment counts and actual stored files
  • User complaints about missing attachments in support tickets they did not modify

Detection Strategies

  • Monitor application logs for save_draft requests that result in attachment deletions, particularly where the attachment belongs to a different conversation than the draft
  • Implement anomaly detection for users deleting attachments at unusual rates or from conversations they haven't previously accessed
  • Review database audit trails for Attachment::deleteByIds() operations where the calling user lacks ownership of the attachment's parent conversation
  • Deploy web application firewall rules to flag suspicious patterns in attachments_all[] parameter manipulation

Monitoring Recommendations

  • Enable detailed logging for all attachment-related operations including creation, modification, and deletion with full user context
  • Configure alerts for attachment deletions that occur outside normal user workflow patterns
  • Implement integrity monitoring for attachment storage directories to detect unexpected file deletions
  • Establish baseline metrics for attachment deletion rates per user and alert on anomalies

How to Mitigate CVE-2026-41192

Immediate Actions Required

  • Upgrade FreeScout to version 1.8.215 or later immediately
  • Review attachment deletion logs for any suspicious activity prior to patching
  • Restore any critical attachments from backup if unauthorized deletions are detected
  • Temporarily restrict mailbox access to trusted users until the patch is applied if immediate upgrade is not possible

Patch Information

FreeScout has addressed this vulnerability in version 1.8.215. The fix implements proper authorization checks before processing attachment deletion requests. Organizations running affected versions should upgrade immediately by obtaining the patched release from the official FreeScout GitHub repository.

The specific security fix can be reviewed in the GitHub commit. Additional details are available in the GitHub Security Advisory GHSA-cv36-2j23-x6g3.

Workarounds

  • Implement network-level access controls to limit FreeScout access to trusted IP ranges until patching is complete
  • Review and restrict mailbox membership to only essential personnel to reduce the attack surface
  • Configure web application firewall rules to inspect and potentially block suspicious save_draft requests with unusual attachment ID patterns
  • Enable comprehensive logging and monitoring to detect exploitation attempts while awaiting patch deployment
bash
# Upgrade FreeScout to patched version
cd /var/www/freescout
git fetch --all
git checkout tags/1.8.215
php artisan freescout:after-app-update

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:N/I:H/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-862
  • Technical References
  • GitHub Commit Update

  • GitHub Release 1.8.215

  • GitHub Security Advisory GHSA-cv36-2j23-x6g3
  • 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