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

CVE-2026-40590: FreeScout Auth Bypass Vulnerability

CVE-2026-40590 is an authentication bypass flaw in FreeScout that allows attackers to manipulate hidden customer profiles through the Create Customer modal. This article covers technical details, affected versions, and patches.

Published: April 23, 2026

CVE-2026-40590 Overview

FreeScout is a free self-hosted help desk and shared mailbox solution. A vulnerability exists in versions prior to 1.8.214 where the Change Customer modal exposes a "Create a new customer" flow via POST /customers/ajax with action=create. When operating under limited visibility conditions, the endpoint fails to properly enforce unique-email validation. If the supplied email already belongs to a hidden customer, the Customer::create() function reuses that hidden customer object and populates empty profile fields from attacker-controlled input, enabling unauthorized modification of customer records.

Critical Impact

Authenticated attackers with low privileges can manipulate hidden customer profile data through an authorization bypass, potentially compromising customer data integrity within the help desk system.

Affected Products

  • FreeScout versions prior to 1.8.214
  • FreeScout self-hosted help desk installations with customer visibility restrictions enabled
  • Environments utilizing the Change Customer modal functionality

Discovery Timeline

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

Technical Details for CVE-2026-40590

Vulnerability Analysis

This vulnerability is classified as CWE-639: Authorization Bypass Through User-Controlled Key, a type of Insecure Direct Object Reference (IDOR) flaw. The core issue stems from insufficient validation in the customer creation workflow when visibility restrictions are in place.

The vulnerable endpoint /customers/ajax with the action=create parameter is designed to allow authenticated users to create new customer entries. However, when the application operates under limited visibility mode, a logic flaw causes the unique email validation to be bypassed. This creates a condition where an attacker can submit a request with an email address belonging to an existing hidden customer.

When this occurs, rather than rejecting the duplicate email or creating a new customer record, the Customer::create() function retrieves the existing hidden customer object and proceeds to populate any empty profile fields with the attacker-supplied values. This allows an authenticated user with minimal privileges to modify profile data for customers they should not have access to view or edit.

Root Cause

The root cause is improper authorization enforcement in the customer creation endpoint when limited visibility is enabled. The application fails to maintain consistent unique-email validation across different visibility contexts, and the Customer::create() method inappropriately reuses existing hidden customer objects instead of treating them as separate, inaccessible entities. This violates the principle of least privilege by allowing users to indirectly access and modify records that should be hidden from them.

Attack Vector

The attack is network-based and requires low-privilege authenticated access to the FreeScout application. An attacker must:

  1. Obtain valid authentication credentials for the FreeScout instance
  2. Identify or guess email addresses of hidden customers
  3. Submit a crafted POST request to /customers/ajax with action=create and the target email
  4. Include malicious values for profile fields they wish to populate on the hidden customer record

The vulnerability exploits the race condition between visibility checks and email uniqueness validation, allowing the attacker to "hijack" empty fields on hidden customer profiles. No user interaction is required beyond the attacker's own authenticated session.

The attack flow involves sending a malicious POST request to the /customers/ajax endpoint with the action=create parameter. When the supplied email matches a hidden customer, the system reuses that customer object and updates empty profile fields with attacker-controlled data. For complete technical details, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-40590

Indicators of Compromise

  • Unusual POST requests to /customers/ajax endpoint with action=create parameter from users who typically don't create customers
  • Customer profile modifications without corresponding audit trail entries for legitimate user actions
  • Multiple customer creation attempts using the same email address within short timeframes
  • Evidence of profile field changes on hidden customer records

Detection Strategies

  • Monitor application logs for repeated POST /customers/ajax requests with action=create from the same session
  • Implement alerting for customer record modifications that bypass standard edit workflows
  • Review web server access logs for patterns indicating enumeration of customer email addresses
  • Configure SIEM rules to correlate customer creation events with visibility-restricted accounts

Monitoring Recommendations

  • Enable detailed audit logging for all customer creation and modification operations
  • Implement rate limiting on the /customers/ajax endpoint to prevent enumeration attacks
  • Configure alerts for any modifications to hidden customer records
  • Regularly review customer profile change history for anomalous updates

How to Mitigate CVE-2026-40590

Immediate Actions Required

  • Upgrade FreeScout to version 1.8.214 or later immediately
  • Review customer records for unauthorized modifications, particularly hidden customer profiles
  • Audit user access logs for suspicious activity targeting the /customers/ajax endpoint
  • Consider temporarily disabling the "Create a new customer" functionality in the Change Customer modal until patched

Patch Information

The vulnerability has been addressed in FreeScout version 1.8.214. The fix ensures proper unique-email validation is enforced regardless of visibility settings and prevents the Customer::create() function from reusing hidden customer objects.

Patch resources:

  • GitHub Release Tag 1.8.214
  • GitHub Commit Details
  • GitHub Security Advisory

Workarounds

  • Restrict access to customer creation functionality to trusted administrator accounts only
  • Implement additional authentication requirements for the /customers/ajax endpoint
  • Use web application firewall (WAF) rules to monitor and potentially block suspicious requests to the vulnerable endpoint
  • Temporarily disable limited visibility features until the patch can be applied
bash
# Configuration example
# Upgrade FreeScout to patched version
cd /path/to/freescout
git fetch --tags
git checkout 1.8.214
php artisan freescout:after-app-update

# Verify installation version
php artisan freescout:version

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

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.03%

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

  • GitHub Release Tag

  • GitHub Security Advisory
  • 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-40569: 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