The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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
    • 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-2076

CVE-2026-2076: Yeqifu Warehouse Auth Bypass Vulnerability

CVE-2026-2076 is an authentication bypass vulnerability in Yeqifu Warehouse's User Management endpoint that enables unauthorized access. This article covers the technical details, affected components, and mitigation strategies.

Published: February 13, 2026

CVE-2026-2076 Overview

A significant improper authorization vulnerability has been identified in the Yeqifu Warehouse application, affecting the User Management Endpoint. The vulnerability exists within the addUser, updateUser, and deleteUser functions located in UserController.java. This weakness allows remote attackers to manipulate user management operations without proper authorization checks, potentially leading to unauthorized access and privilege abuse within the warehouse management system.

Critical Impact

Remote attackers can exploit improper authorization in user management functions to add, update, or delete users without proper authorization, compromising the integrity of the warehouse system's access control.

Affected Products

  • Yeqifu Warehouse (all versions up to commit aaf29962ba407d22d991781de28796ee7b4670e4)
  • Yeqifu Warehouse User Management Endpoint component
  • Java-based warehouse management deployments using affected source code

Discovery Timeline

  • 2026-02-07 - CVE-2026-2076 published to NVD
  • 2026-02-10 - Last updated in NVD database

Technical Details for CVE-2026-2076

Vulnerability Analysis

This vulnerability is classified as CWE-266 (Incorrect Privilege Assignment), which occurs when the application fails to properly enforce authorization controls on sensitive user management operations. The affected component is the User Management Endpoint within the Yeqifu Warehouse application, specifically the UserController.java file located at dataset\repos\warehouse\src\main\java\com\yeqifu\sys\controller\UserController.java.

The vulnerability allows authenticated users with insufficient privileges to perform administrative user management operations, including creating new users, modifying existing user accounts, and deleting user records. This represents a broken access control scenario where the application does not adequately verify that the requesting user has the appropriate permissions to execute these sensitive operations.

Root Cause

The root cause lies in the improper implementation of authorization checks within the addUser, updateUser, and deleteUser functions. The controller methods likely either:

  1. Lack role-based access control (RBAC) validation before executing user management operations
  2. Contain flawed authorization logic that can be bypassed
  3. Rely solely on authentication without verifying the authenticated user's privileges to perform administrative actions

This is a common architectural flaw in web applications where developers implement authentication but neglect to properly implement and enforce authorization controls on sensitive endpoints.

Attack Vector

The attack can be initiated remotely over the network. An attacker with basic authentication credentials (low-privilege user) can send crafted HTTP requests directly to the User Management Endpoint. By invoking the vulnerable functions (addUser, updateUser, deleteUser) without possessing administrative privileges, the attacker can:

  • Create new user accounts, potentially with elevated privileges
  • Modify existing user accounts, including changing passwords or escalating privileges
  • Delete legitimate user accounts, causing denial of service or disrupting operations

The attack requires no user interaction and can be executed with low complexity once the attacker has network access to the application and basic authentication credentials. The exploit has been publicly disclosed, increasing the risk of active exploitation.

Detection Methods for CVE-2026-2076

Indicators of Compromise

  • Unexpected user account creations, modifications, or deletions in the warehouse system
  • Authentication logs showing user management API calls from non-administrative accounts
  • HTTP requests to /sys/controller/UserController endpoints from unauthorized sources
  • Audit trail anomalies in user management operations without corresponding administrative sessions

Detection Strategies

  • Monitor HTTP traffic for requests to the User Management Endpoint (/addUser, /updateUser, /deleteUser paths) and correlate with the requester's privilege level
  • Implement application-level logging that captures both the action performed and the authenticated user's role for user management operations
  • Configure web application firewall (WAF) rules to alert on rapid or suspicious patterns of user management API calls
  • Deploy endpoint detection and response (EDR) solutions to monitor for suspicious Java process behaviors associated with the warehouse application

Monitoring Recommendations

  • Enable verbose logging on the Yeqifu Warehouse application to capture all user management operations with full request context
  • Set up SIEM rules to correlate authentication events with subsequent user management actions to identify privilege violations
  • Perform regular user account audits to detect unauthorized accounts or privilege changes
  • Monitor for access patterns that deviate from normal administrative workflows

How to Mitigate CVE-2026-2076

Immediate Actions Required

  • Review and restrict access to the User Management Endpoint to only verified administrative users
  • Implement network-level controls to limit access to the warehouse application from trusted sources only
  • Audit existing user accounts for any unauthorized modifications or suspicious account creations
  • Consider temporarily disabling user management functionality until a proper fix is applied

Patch Information

The Yeqifu Warehouse project uses continuous delivery with rolling releases, meaning no specific version numbers are assigned. The vulnerability was reported through GitHub Issue #53, but the project has not yet responded to the disclosure. Organizations should monitor the Yeqifu Warehouse GitHub repository for updates and apply patches as they become available.

Since no official patch has been released, organizations must implement workarounds to mitigate the risk.

Workarounds

  • Implement custom authorization middleware or filters in the Spring framework to enforce role-based access control on user management endpoints
  • Deploy an API gateway or reverse proxy with strict authorization rules to filter unauthorized requests before they reach the application
  • Modify the affected UserController.java source code locally to add proper @PreAuthorize or similar security annotations requiring administrative roles
  • Apply the principle of least privilege by ensuring all user accounts have minimal necessary permissions
bash
# Example: Adding Spring Security annotation to require ADMIN role
# In UserController.java, add before each vulnerable method:
# @PreAuthorize("hasRole('ADMIN')")
# public ResponseEntity addUser(@RequestBody User user) { ... }

# Alternatively, configure method-level security in SecurityConfig.java
# @EnableGlobalMethodSecurity(prePostEnabled = true)

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechYeqifu Warehouse

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N/E:P/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
  • AvailabilityLow
  • CWE References
  • CWE-266
  • Technical References
  • GitHub Repository

  • VulDB CTI Incident

  • VulDB #344642

  • VulDB Submission
  • Vendor Resources
  • GitHub Issue Tracker

  • GitHub Issue Discussion
  • Related CVEs
  • CVE-2026-2852: Yeqifu Warehouse Auth Bypass Vulnerability

  • CVE-2026-2849: Yeqifu Warehouse Auth Bypass Vulnerability

  • CVE-2026-2850: Yeqifu Warehouse Auth Bypass Vulnerability

  • CVE-2026-2851: Yeqifu Warehouse 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