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

CVE-2026-29789: Vito Auth Bypass Vulnerability

CVE-2026-29789 is an authentication bypass flaw in Vito that allows attackers to create and manage sites across projects. This article covers the technical details, affected versions, impact, and mitigation.

Published: March 13, 2026

CVE-2026-29789 Overview

CVE-2026-29789 is a critical missing authorization vulnerability (CWE-862) in Vito, a self-hosted web application designed to help manage servers and deploy PHP applications into production environments. Prior to version 3.20.3, a missing authorization check in workflow site-creation actions allows an authenticated attacker with workflow write access in one project to create and manage sites on servers belonging to other projects by supplying a foreign server_id. This represents a severe broken access control flaw that enables cross-project unauthorized access.

Critical Impact

Authenticated attackers can bypass project isolation boundaries to create and manage sites on servers they should not have access to, potentially compromising multi-tenant deployments and enabling unauthorized code deployment to production servers.

Affected Products

  • Vito (self-hosted web application) versions prior to 3.20.3
  • Vito workflow site-creation module
  • Vito server management components

Discovery Timeline

  • 2026-03-06 - CVE CVE-2026-29789 published to NVD
  • 2026-03-09 - Last updated in NVD database

Technical Details for CVE-2026-29789

Vulnerability Analysis

This vulnerability stems from insufficient authorization checks within Vito's workflow site-creation functionality. The application fails to verify that a user performing site creation operations has appropriate permissions for the target server specified by server_id. This allows authenticated users who possess workflow write access within their own project to manipulate requests and target servers belonging to entirely different projects.

The flaw represents a classic horizontal privilege escalation scenario where project isolation boundaries are not properly enforced at the server level. When a user submits a site creation request, the application processes the provided server_id parameter without validating that the server belongs to a project where the user has legitimate access.

Root Cause

The root cause is a missing authorization check (CWE-862: Missing Authorization) in the workflow site-creation actions. The vulnerable code path accepts and processes server_id parameters without validating project ownership or membership. The application assumes that if a user has workflow write access in any project, they should be able to specify any server ID, rather than restricting operations to servers within their authorized project scope.

Attack Vector

The attack vector is network-based and requires low privileges (authenticated access with workflow write permissions). An attacker can exploit this vulnerability by:

  1. Authenticating to the Vito application with an account that has workflow write access to at least one project
  2. Identifying or enumerating server IDs belonging to other projects (through API responses, error messages, or sequential ID guessing)
  3. Crafting a site creation request that includes a foreign server_id parameter pointing to a target server in another project
  4. Submitting the malicious request to create or manage sites on the unauthorized server

The vulnerability allows attackers to deploy potentially malicious PHP applications to production servers they should not have access to, effectively bypassing the multi-project isolation model that Vito provides.

Detection Methods for CVE-2026-29789

Indicators of Compromise

  • Unexpected site creation logs showing server_id values that do not belong to the initiating user's project
  • Audit logs revealing cross-project server access patterns
  • New sites appearing on servers without corresponding authorized user activity
  • Workflow execution logs showing mismatched project and server associations

Detection Strategies

  • Implement monitoring for site creation API requests where the server_id does not match servers within the authenticated user's project scope
  • Review application logs for patterns of sequential server_id enumeration attempts
  • Correlate user authentication tokens with server ownership to identify unauthorized cross-project access
  • Deploy web application firewall rules to flag anomalous server targeting patterns

Monitoring Recommendations

  • Enable detailed audit logging for all site creation and server management operations
  • Monitor for unusual patterns of API calls attempting to reference servers across project boundaries
  • Set up alerts for failed authorization checks that may indicate exploitation attempts
  • Review access logs for authenticated users accessing resources outside their normal project scope

How to Mitigate CVE-2026-29789

Immediate Actions Required

  • Upgrade Vito to version 3.20.3 or later immediately
  • Audit existing sites on all servers to identify any unauthorized deployments created through exploitation
  • Review server configurations for unauthorized changes or malicious code deployments
  • Temporarily restrict workflow write access to trusted administrators until the patch is applied

Patch Information

The vulnerability has been patched in Vito version 3.20.3. The fix adds proper authorization checks to validate that users can only perform site-creation operations on servers belonging to projects where they have legitimate access.

Patch details are available in the following resources:

  • GitHub Commit 0fdcfe5
  • GitHub Pull Request #1036
  • GitHub Release v3.20.3
  • GitHub Security Advisory GHSA-3m6w-8qh4-qr76

Workarounds

  • If immediate patching is not possible, restrict workflow write permissions to only essential personnel
  • Implement network segmentation to limit cross-project server access at the infrastructure level
  • Deploy application-level firewall rules to validate server ownership on incoming requests
  • Consider temporarily disabling the workflow site-creation feature until the patch can be applied
bash
# Update Vito to patched version
cd /path/to/vito
git fetch origin
git checkout tags/3.20.3
composer install --no-dev
php artisan migrate
php artisan config:cache

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechVito

  • SeverityCRITICAL

  • CVSS Score9.9

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-862
  • Technical References
  • GitHub Commit 0fdcfe5

  • GitHub Pull Request #1036

  • GitHub Release v3.20.3

  • GitHub Security Advisory GHSA-3m6w-8qh4-qr76
  • Latest CVEs
  • CVE-2026-25874: LeRobot RCE Vulnerability

  • CVE-2026-41272: Flowise LLM Builder SSRF Vulnerability

  • CVE-2026-41268: Flowise RCE Vulnerability

  • CVE-2026-41265: Flowise Airtable Agent RCE 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