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

CVE-2026-35584: FreeScout Auth Bypass Vulnerability

CVE-2026-35584 is an authentication bypass flaw in FreeScout help desk software that allows unauthenticated attackers to manipulate thread statuses and enumerate valid IDs. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: April 10, 2026

CVE-2026-35584 Overview

FreeScout, a free open-source help desk and shared inbox built with PHP's Laravel framework, contains an Insecure Direct Object Reference (IDOR) vulnerability combined with missing authentication in versions prior to 1.8.212. The vulnerable endpoint GET /thread/read/{conversation_id}/{thread_id} lacks authentication requirements and fails to validate whether the provided thread_id belongs to the specified conversation_id. This flaw enables unauthenticated attackers to manipulate thread states and enumerate valid identifiers within the help desk system.

Critical Impact

Unauthenticated attackers can mark any thread as read, enumerate valid thread IDs through HTTP response code analysis (200 vs 404), and manipulate opened_at timestamps across conversations, potentially disrupting help desk operations and exposing internal conversation metadata.

Affected Products

  • FreeScout Help Desk versions prior to 1.8.212
  • Self-hosted FreeScout installations with exposed /thread/read/ endpoints
  • Laravel-based deployments with default routing configurations

Discovery Timeline

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

Technical Details for CVE-2026-35584

Vulnerability Analysis

This vulnerability stems from Missing Authentication for Critical Function (CWE-306) in FreeScout's thread management endpoint. The application fails to implement proper authentication checks on the /thread/read/{conversation_id}/{thread_id} endpoint, allowing any external actor to interact with the API without credentials. Furthermore, the endpoint does not validate the relationship between the conversation_id and thread_id parameters, creating a classic IDOR condition.

The vulnerability is exploitable over the network without any user interaction or prior authentication required. An attacker can leverage this flaw to systematically enumerate valid thread identifiers by observing HTTP response codes—receiving a 200 status for valid IDs and 404 for invalid ones. This enumeration capability could reveal the volume and activity patterns of a help desk system, potentially aiding in further targeted attacks.

Root Cause

The root cause lies in the missing authentication middleware on the thread read endpoint combined with insufficient authorization checks. The Laravel controller handling this route does not verify user session or API token authentication before processing requests. Additionally, the business logic fails to confirm that the requested thread_id actually belongs to the specified conversation_id, violating the principle of proper object-level authorization.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can craft HTTP GET requests directly to the vulnerable endpoint with arbitrary conversation and thread IDs. By iterating through numeric identifiers, the attacker can discover valid thread IDs through response code differentiation. Once valid IDs are identified, the attacker can mark threads as read, potentially disrupting workflow indicators that help desk agents rely on to prioritize support tickets.

The exploitation process involves sending unauthenticated GET requests to /thread/read/{conversation_id}/{thread_id} with varying parameter values. A 200 response indicates a valid thread that has been marked as read, while a 404 indicates an invalid identifier. This binary response pattern facilitates efficient enumeration attacks against the help desk infrastructure.

Detection Methods for CVE-2026-35584

Indicators of Compromise

  • Unusual volumes of HTTP GET requests to /thread/read/ endpoints from external IP addresses
  • Sequential or pattern-based enumeration of conversation_id and thread_id parameters in access logs
  • Threads marked as read without corresponding authenticated user sessions
  • Anomalous opened_at timestamp modifications without legitimate user activity

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block sequential ID enumeration patterns on the /thread/read/ endpoint
  • Monitor access logs for unauthenticated requests to sensitive thread management endpoints
  • Configure intrusion detection systems (IDS) to alert on high-frequency requests to the vulnerable URL pattern
  • Deploy rate limiting on the /thread/read/ endpoint to throttle enumeration attempts

Monitoring Recommendations

  • Enable detailed access logging for all FreeScout thread management endpoints
  • Set up alerts for requests to /thread/read/ without valid authentication cookies or tokens
  • Monitor for statistically significant changes in thread read patterns that don't correlate with support agent activity
  • Review server logs regularly for evidence of ID enumeration attack patterns

How to Mitigate CVE-2026-35584

Immediate Actions Required

  • Upgrade FreeScout to version 1.8.212 or later immediately to apply the security patch
  • Implement network-level access controls to restrict access to FreeScout endpoints from untrusted networks
  • Deploy a web application firewall with rules to block unauthenticated access to /thread/read/ endpoints
  • Review access logs for evidence of prior exploitation and investigate any suspicious activity

Patch Information

The vulnerability has been addressed in FreeScout version 1.8.212. Organizations should update to this version or later to remediate the vulnerability. The fix implements proper authentication checks on the vulnerable endpoint and validates the relationship between conversation_id and thread_id parameters before processing requests. For detailed patch information, refer to the GitHub Security Advisory.

Workarounds

  • Configure web server rules (Apache/Nginx) to require authentication for all requests to /thread/read/ paths as a temporary measure
  • Implement IP-based access restrictions to limit FreeScout access to trusted networks only
  • Deploy a reverse proxy with authentication requirements in front of FreeScout until the patch can be applied
  • Consider disabling the vulnerable endpoint entirely if thread read functionality is not critical to operations
bash
# Nginx configuration to require authentication for vulnerable endpoint
location ~* ^/thread/read/ {
    auth_basic "Restricted Access";
    auth_basic_user_file /etc/nginx/.htpasswd;
    proxy_pass http://freescout_backend;
}

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 Score6.9

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-306
  • Technical References
  • 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-40590: 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