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

CVE-2026-33345: Solidtime Auth Bypass Vulnerability

CVE-2026-33345 is an authorization bypass vulnerability in Solidtime that allows authenticated employees to access private projects without proper permissions. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: March 27, 2026

CVE-2026-33345 Overview

solidtime is an open-source time-tracking application that contains an Insecure Direct Object Reference (IDOR) vulnerability in its project detail API endpoint. Prior to version 0.11.6, the GET /api/v1/organizations/{org}/projects/{project} endpoint allows any authenticated Employee to access any project in the organization by UUID, including private projects they are not a member of. This broken access control flaw enables unauthorized information disclosure of sensitive project data.

Critical Impact

Authenticated employees can bypass authorization controls to access confidential project information belonging to other teams or departments within the same organization, potentially exposing sensitive business data, client information, and proprietary work details.

Affected Products

  • solidtime versions prior to 0.11.6
  • solidtime API endpoint GET /api/v1/organizations/{org}/projects/{project}
  • Self-hosted and cloud deployments of solidtime

Discovery Timeline

  • 2026-03-24 - CVE CVE-2026-33345 published to NVD
  • 2026-03-26 - Last updated in NVD database

Technical Details for CVE-2026-33345

Vulnerability Analysis

This vulnerability stems from an inconsistent application of authorization scopes between two related API endpoints in the solidtime application. While the index() endpoint correctly applies the visibleByEmployee() scope to filter results based on user permissions, the show() endpoint does not implement equivalent access control checks. This discrepancy allows authenticated users to directly access project resources by UUID without verifying whether they have appropriate permissions to view those resources.

The vulnerability is classified under CWE-639 (Authorization Bypass Through User-Controlled Key), which occurs when the application uses a user-controllable key (in this case, the project UUID) to determine access to a resource without properly validating that the user has authorization to access that resource.

Root Cause

The root cause is a missing authorization check in the show() method of the project controller. When a request is made to retrieve project details, the application retrieves the project based on the provided UUID without verifying that the requesting user has the necessary permissions to view that project. The visibleByEmployee() scope that enforces proper access controls in the listing endpoint was not applied to the individual project retrieval endpoint.

Attack Vector

An attacker with valid employee credentials can exploit this vulnerability through network access to the API. The exploitation is straightforward: an authenticated employee simply needs to enumerate or guess valid project UUIDs, then directly request those projects via the vulnerable endpoint. Since no user interaction is required and the attack complexity is low, any authenticated user can potentially access all projects within their organization, regardless of their assigned project memberships or access levels.

The attack flow involves the authenticated user obtaining or guessing valid project UUIDs (which may be leaked through other endpoints or logs), then making direct API requests to GET /api/v1/organizations/{org}/projects/{project} with target project UUIDs to retrieve unauthorized project details.

Detection Methods for CVE-2026-33345

Indicators of Compromise

  • Unusual access patterns where employees are querying projects they are not members of
  • API audit logs showing requests to /api/v1/organizations/{org}/projects/{project} endpoints with project UUIDs outside the user's normal scope
  • High volume of project detail requests from a single user account, potentially indicating enumeration attempts

Detection Strategies

  • Implement API logging and monitoring to track access to the project detail endpoint, correlating requestor identity with project membership
  • Deploy anomaly detection to identify employees accessing an unusually high number of distinct projects
  • Review application logs for patterns of sequential UUID requests that may indicate enumeration attempts
  • Configure web application firewall rules to alert on rapid successive requests to project endpoints

Monitoring Recommendations

  • Enable verbose API audit logging for all project-related endpoints
  • Set up alerts for access attempts to projects where the requesting user is not a member
  • Monitor authentication logs for accounts making excessive API requests to sensitive endpoints
  • Periodically audit access patterns to ensure users are only accessing resources within their authorized scope

How to Mitigate CVE-2026-33345

Immediate Actions Required

  • Upgrade solidtime to version 0.11.6 or later immediately
  • Review access logs for any suspicious project access patterns prior to patching
  • Audit which projects may have been accessed by unauthorized users
  • Consider temporarily restricting API access to critical projects until the patch is applied

Patch Information

The vulnerability has been addressed in solidtime version 0.11.6. The fix ensures that the show() endpoint now properly applies the visibleByEmployee() scope, consistent with the index() endpoint behavior. The specific commit addressing this issue can be found in the GitHub Commit Details. Users should upgrade to version 0.11.6 or later, which is available from the GitHub Release v0.11.6. For additional details, refer to the GitHub Security Advisory GHSA-354j-rx28-jjxm.

Workarounds

  • If immediate patching is not possible, implement network-level access controls to restrict API access to trusted sources
  • Deploy a reverse proxy or API gateway to add additional authorization checks before requests reach the solidtime application
  • Review and restrict employee accounts to minimize the number of authenticated users who could potentially exploit this vulnerability
  • Manually apply the authorization scope fix from commit 192c8c3b887aab34117b983c687934ca7c305209 if running a custom deployment
bash
# Upgrade solidtime to patched version
cd /path/to/solidtime
git fetch origin
git checkout v0.11.6
composer install --no-dev
php artisan migrate
php artisan cache:clear

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechSolidtime

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.01%

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

  • GitHub Security Advisory GHSA-354j-rx28-jjxm
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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