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

CVE-2026-25858: Macrozheng Mall Auth Bypass Vulnerability

CVE-2026-25858 is an authentication bypass flaw in macrozheng mall that allows attackers to reset any user's password using only their phone number. This article covers technical details, affected versions, and mitigation.

Published: February 13, 2026

CVE-2026-25858 Overview

CVE-2026-25858 is a critical authentication bypass vulnerability affecting macrozheng mall version 1.0.3 and prior. The vulnerability resides in the mall-portal password reset workflow, which allows an unauthenticated attacker to reset arbitrary user account passwords using only a victim's telephone number. This flaw enables complete remote account takeover of any user with a known or guessable telephone number.

The password reset flow contains two fundamental security failures: it exposes the one-time password (OTP) directly in the API response, and it validates password reset requests solely by comparing the provided OTP to a value stored by telephone number without verifying user identity or ownership of the telephone number.

Critical Impact

Unauthenticated attackers can take over any user account by exploiting the exposed OTP in the password reset API response, requiring only knowledge of the victim's telephone number.

Affected Products

  • macrozheng mall version 1.0.3
  • macrozheng mall versions prior to 1.0.3
  • mall-portal component (password reset workflow)

Discovery Timeline

  • 2026-02-07 - CVE-2026-25858 published to NVD
  • 2026-02-09 - Last updated in NVD database

Technical Details for CVE-2026-25858

Vulnerability Analysis

This vulnerability is classified under CWE-640 (Weak Password Recovery Mechanism for Forgotten Password). The flaw stems from insecure implementation of the password reset functionality in the mall-portal component.

When a user initiates a password reset request, the application generates a one-time password (OTP) and stores it server-side, associated with the provided telephone number. The critical security failure occurs because the API returns this OTP directly in the response body, making it trivially accessible to anyone who can initiate a password reset request.

The subsequent password reset validation only checks whether the submitted OTP matches the stored value for the given telephone number. There is no additional verification step to confirm that the requestor actually owns or has access to the telephone number in question.

Root Cause

The root cause of this vulnerability is a broken authentication design in the password reset mechanism. The implementation violates fundamental security principles by:

  1. Returning sensitive authentication tokens (OTP) in plaintext API responses instead of transmitting them through a secure out-of-band channel (SMS, email)
  2. Failing to implement proper identity verification before allowing password changes
  3. Trusting client-provided data (telephone number) without validation of ownership

This represents a classic example of a weak password recovery mechanism where the security of the entire authentication system can be bypassed through the password reset flow.

Attack Vector

The attack can be executed remotely over the network without requiring any prior authentication or user interaction. An attacker follows this sequence:

  1. The attacker identifies a target user's telephone number (which may be publicly available or guessable)
  2. The attacker initiates a password reset request to the mall-portal API, providing the victim's telephone number
  3. The API responds with the generated OTP embedded in the response body
  4. The attacker extracts the OTP from the API response
  5. The attacker submits a password reset completion request with the victim's telephone number, the captured OTP, and a new attacker-controlled password
  6. The application validates only that the OTP matches the stored value and resets the password
  7. The attacker now has full access to the victim's account

This attack requires no special tools or techniques—only the ability to make HTTP requests to the vulnerable API endpoint. For additional technical details, see the VulnCheck Advisory on Macrozheng Mall and the related GitHub Issue #946.

Detection Methods for CVE-2026-25858

Indicators of Compromise

  • Unusual volume of password reset requests originating from single IP addresses or targeting multiple accounts
  • Password reset completion requests where the reset initiation and completion occur from different IP addresses or geographical locations
  • Rapid succession of password reset requests for the same telephone number
  • User reports of unauthorized password changes or account access

Detection Strategies

  • Implement logging and alerting on password reset API endpoints to detect abnormal request patterns
  • Monitor for password reset completions that occur within seconds of initiation, indicating automated exploitation
  • Deploy web application firewall (WAF) rules to rate-limit password reset requests by IP address and telephone number
  • Analyze API response payloads in security logs to detect OTP exposure if detailed logging is enabled

Monitoring Recommendations

  • Enable detailed access logging on all authentication-related API endpoints
  • Set up real-time alerts for multiple failed or successful password resets targeting different accounts from the same source
  • Implement user notification systems that alert account holders when password reset requests are initiated
  • Review access logs for patterns consistent with credential harvesting or account enumeration

How to Mitigate CVE-2026-25858

Immediate Actions Required

  • Disable the vulnerable password reset functionality until a patch is applied or workaround is implemented
  • Audit recent password reset activity for signs of exploitation
  • Force password resets for accounts that may have been compromised through this vulnerability
  • Implement network-level controls to restrict access to the password reset API endpoints

Patch Information

At the time of publication, no official vendor patch has been released. Organizations should monitor the Macrozheng Official Website and the GitHub Issue #946 for updates on security fixes.

Organizations running affected versions should implement the workarounds below and upgrade to a patched version as soon as one becomes available.

Workarounds

  • Remove or disable the OTP from API responses entirely—OTPs should only be transmitted via secure out-of-band channels (SMS or email to the registered number/address)
  • Implement additional identity verification steps such as security questions or email confirmation before allowing password changes
  • Add rate limiting on password reset endpoints to prevent automated exploitation
  • Consider implementing CAPTCHA or similar challenge-response mechanisms on password reset forms
  • Deploy application-layer firewall rules to block requests to vulnerable endpoints from untrusted sources

For custom deployments, modify the password reset API implementation to ensure OTPs are never included in HTTP responses. The OTP should be sent exclusively through the registered communication channel (SMS/email) and the API should return only a success/failure status.

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechMacrozheng

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.15%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/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-640
  • Technical References
  • GitHub Issue #946

  • Macrozheng Official Website

  • VulnCheck Advisory on Macrozheng Mall
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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