Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-39384

CVE-2026-39384: FreeScout Privilege Escalation Vulnerability

CVE-2026-39384 is a privilege escalation vulnerability in FreeScout help desk software that bypasses customer visibility limits during merge operations. This article covers technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-39384 Overview

FreeScout, a free help desk and shared inbox built with PHP's Laravel framework, contains an authorization bypass vulnerability in versions prior to 1.8.212. The application fails to properly enforce the limit_user_customer_visibility parameter when merging customers, allowing authenticated users to bypass access controls and potentially access or modify customer data they should not have visibility into.

Critical Impact

Authenticated users can bypass customer visibility restrictions during customer merge operations, potentially exposing sensitive customer information and enabling unauthorized data modifications.

Affected Products

  • FreeScout versions prior to 1.8.212
  • FreeScout help desk installations with limit_user_customer_visibility enabled
  • Self-hosted FreeScout deployments using customer segmentation features

Discovery Timeline

  • 2026-04-07 - CVE CVE-2026-39384 published to NVD
  • 2026-04-09 - Last updated in NVD database

Technical Details for CVE-2026-39384

Vulnerability Analysis

This vulnerability is classified as CWE-639: Authorization Bypass Through User-Controlled Key. The core issue lies in the customer merge functionality within FreeScout's CustomersController.php. When a user initiates a customer merge operation, the application validates visibility permissions for the primary customer but fails to validate the same permissions for the secondary customer being merged.

The vulnerability allows an authenticated user with limited customer visibility to merge customers outside their authorized scope by manipulating the customer2_id parameter. This effectively bypasses the multi-tenant security controls that organizations rely on to segment customer data between different support agents or teams.

Root Cause

The root cause is improper authorization enforcement in the customer merge endpoint. The controller method retrieves the second customer record using Customer::find() without subsequently validating whether the current user has visibility permissions for that customer record. The checkLimitVisibility() method was only being called on the primary customer, leaving the secondary customer parameter unchecked.

Attack Vector

The attack is network-based and requires low-privileged authentication. An attacker with valid credentials to a FreeScout instance can exploit this vulnerability by sending a crafted merge request specifying a customer2_id that belongs to a customer outside their authorized visibility scope. Since the application uses find() instead of findOrFail() and lacks visibility checks, the merge operation proceeds without proper authorization validation.

The following patch addresses the vulnerability by adding visibility checks for both customers involved in a merge operation:

php
         ]);\n \n         $customer = Customer::findOrFail($id);
-        $customer2 = Customer::find($request->customer2_id);
+        $customer2 = Customer::findOrFail($request->customer2_id);
 
         $this->checkLimitVisibility($customer);
         $this->checkLimitVisibility($customer2);

Source: GitHub Commit Changes

Detection Methods for CVE-2026-39384

Indicators of Compromise

  • Unusual customer merge activity in audit logs, particularly involving customers from different visibility segments
  • Merge operations where the initiating user does not have visibility permissions to one or both customer records
  • Elevated API requests to the customer merge endpoint from users with restricted visibility settings
  • Unexplained consolidation of customer records across segmented data boundaries

Detection Strategies

  • Monitor FreeScout application logs for customer merge operations and cross-reference with user visibility permissions
  • Implement alerting for merge operations where customer2_id resolves to a customer outside the user's configured visibility scope
  • Review web server access logs for POST requests to the customer merge controller endpoint
  • Audit customer record modifications for unauthorized cross-segment data access patterns

Monitoring Recommendations

  • Enable verbose application logging for all customer management operations in FreeScout
  • Configure SIEM rules to detect anomalous customer merge patterns or high-frequency merge operations
  • Implement database-level auditing on the customers table to track merge-related modifications
  • Regularly review user activity reports focusing on customer record interactions

How to Mitigate CVE-2026-39384

Immediate Actions Required

  • Upgrade FreeScout to version 1.8.212 or later immediately
  • Review customer merge audit logs for any suspicious activity prior to patching
  • Temporarily disable customer merge functionality if immediate patching is not possible
  • Audit existing customer records for unauthorized merges that may have occurred

Patch Information

The vulnerability is fixed in FreeScout version 1.8.212. The patch adds the checkLimitVisibility() call for the second customer in merge operations and changes Customer::find() to Customer::findOrFail() to ensure proper error handling. Organizations should update their FreeScout installations through the standard update process. The fix can be reviewed in the GitHub Commit and additional details are available in the GitHub Security Advisory.

Workarounds

  • Disable customer merge functionality at the application level until the patch can be applied
  • Implement network-level access controls to restrict access to the customer merge endpoint
  • Configure web application firewall rules to monitor and potentially block customer merge requests
  • Enforce strict role-based access controls limiting which users can perform customer merge operations
bash
# Verify FreeScout version after upgrade
cd /path/to/freescout
php artisan freescout:version

# Review recent customer merge activity in logs
grep -i "customer.*merge" storage/logs/laravel.log

# Check for unauthorized access patterns
tail -f storage/logs/laravel.log | grep -i "checkLimitVisibility"

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechFreescout

  • SeverityHIGH

  • CVSS Score7.6

  • 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:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-639
  • Technical References
  • GitHub Commit Changes

  • GitHub Security Advisory GHSA-j6v9-22vq-53vh
  • Related CVEs
  • CVE-2026-40497: FreeScout Privilege Escalation Flaw

  • CVE-2026-40496: FreeScout Auth Bypass Vulnerability

  • 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 World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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