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

CVE-2026-40486: Kimai Auth Bypass Vulnerability

CVE-2026-40486 is an authentication bypass flaw in Kimai time tracking application that allows users to modify billing rates without proper permissions. This post covers technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-40486 Overview

CVE-2026-40486 is an authorization bypass vulnerability in Kimai, an open-source time tracking application. The vulnerability exists in the User Preferences API endpoint (PATCH /api/users/{id}/preferences) which fails to properly validate the isEnabled() flag on preference objects before applying submitted values. This allows authenticated users to modify billing rate fields (hourly_rate and internal_rate) even when they lack the required hourly-rate role permission.

Critical Impact

Authenticated users can manipulate their own billing rates through the vulnerable API endpoint, leading to unauthorized financial tampering that affects invoices and timesheet calculations across the organization.

Affected Products

  • Kimai versions 2.52.0 and below

Discovery Timeline

  • 2026-04-17 - CVE-2026-40486 published to NVD
  • 2026-04-20 - Last updated in NVD database

Technical Details for CVE-2026-40486

Vulnerability Analysis

This vulnerability is classified as CWE-915 (Improperly Controlled Modification of Dynamically-Determined Object Attributes), commonly known as mass assignment. The core issue lies in the User Preferences API endpoint's failure to enforce role-based access controls when processing preference updates.

Although the Kimai application correctly marks the hourly_rate and internal_rate fields as disabled for users without the hourly-rate role permission through the isEnabled() method, the API backend ignores this restriction entirely. When a PATCH request is made to /api/users/{id}/preferences, the endpoint processes and saves all submitted preference values without verifying whether the requesting user has authorization to modify each specific field.

This architectural flaw means that front-end UI restrictions provide no actual security protection, as any authenticated user can craft direct API requests to modify protected billing fields.

Root Cause

The root cause is a missing server-side authorization check in the User Preferences API controller. The application relies on the isEnabled() flag to control UI visibility but fails to enforce this same restriction at the API level when processing PATCH requests. The vulnerable code path applies preference values directly to the database without checking whether the authenticated user possesses the necessary role permissions for each field being modified.

Attack Vector

The vulnerability is exploitable over the network by any authenticated user. An attacker with valid Kimai credentials can send a crafted PATCH request to the /api/users/{id}/preferences endpoint, including unauthorized hourly_rate or internal_rate values. Since the attack requires only basic authentication and involves a straightforward API call, the barrier to exploitation is low.

The attack flow involves an authenticated user identifying the preferences API endpoint, crafting a PATCH request that includes the protected billing rate fields, and submitting the request directly to the API. The server processes the request without validating role permissions, resulting in modified billing rates that affect all future invoice and timesheet calculations.

Detection Methods for CVE-2026-40486

Indicators of Compromise

  • Unexpected changes to user hourly_rate or internal_rate values in the database
  • API access logs showing PATCH requests to /api/users/{id}/preferences from users without hourly-rate role permissions
  • Discrepancies in invoice calculations or timesheet billing that cannot be explained by legitimate rate changes
  • Audit log entries showing preference modifications by users who should not have billing rate access

Detection Strategies

  • Monitor API logs for PATCH requests to the /api/users/{id}/preferences endpoint and correlate with user role permissions
  • Implement database triggers or change auditing on billing rate fields to capture unauthorized modifications
  • Review application logs for preference update operations and cross-reference with role-based access control policies
  • Deploy API gateway rules to flag requests containing hourly_rate or internal_rate fields from users lacking appropriate permissions

Monitoring Recommendations

  • Enable detailed logging for all API preference update operations including request payloads
  • Configure alerts for billing rate changes outside of normal business workflows
  • Implement periodic database audits comparing current billing rates against approved rate schedules
  • Monitor for anomalous invoice amounts that may indicate rate manipulation

How to Mitigate CVE-2026-40486

Immediate Actions Required

  • Upgrade Kimai to version 2.53.0 or later immediately
  • Audit all user billing rates to identify any unauthorized modifications
  • Review API access logs for suspicious preference update activity
  • Temporarily restrict API access to the preferences endpoint if immediate patching is not possible

Patch Information

The Kimai development team has addressed this vulnerability in version 2.53.0. The fix implements proper server-side validation of the isEnabled() flag before applying preference values, ensuring that role-based access controls are enforced at the API level.

For detailed patch information, see the GitHub Release 2.53.0 and the GitHub Security Advisory GHSA-qh43-xrjm-4ggp.

Workarounds

  • Implement a reverse proxy or API gateway rule to block PATCH requests containing hourly_rate or internal_rate fields
  • Restrict API access to trusted administrative users until the patch can be applied
  • Enable database-level constraints or triggers to prevent unauthorized billing rate modifications
  • Review and tighten role assignments to minimize the number of authenticated users in the system
bash
# Example: Block vulnerable API endpoint at reverse proxy (nginx)
location ~ ^/api/users/[0-9]+/preferences$ {
    # Temporarily restrict to admin IPs only until patch is applied
    allow 10.0.0.0/8;
    deny all;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechKimai

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.01%

  • 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-915
  • Technical References
  • GitHub Release 2.53.0

  • GitHub Security Advisory GHSA-qh43-xrjm-4ggp
  • Related CVEs
  • CVE-2026-28685: Kimai Auth Bypass Vulnerability

  • CVE-2026-40479: Kimai Time Tracking XSS Vulnerability

  • CVE-2019-25317: Kimai 2 Persistent XSS Vulnerability

  • CVE-2026-23626: Kimai Information Disclosure 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