A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-33877

CVE-2026-33877: ApostropheCMS Information Disclosure Flaw

CVE-2026-33877 is an information disclosure vulnerability in ApostropheCMS that enables unauthenticated username and email enumeration via timing side-channel attacks. This post covers technical details, affected versions, and mitigation.

Published: April 17, 2026

CVE-2026-33877 Overview

ApostropheCMS, an open-source Node.js content management system, contains a timing side-channel vulnerability in the password reset endpoint (/api/v1/@apostrophecms/login/reset-request) that allows unauthenticated attackers to enumerate valid usernames and email addresses. The vulnerability exists in versions 4.28.0 and prior, where measurable response time differences can be exploited to distinguish between valid and invalid user accounts.

Critical Impact

This timing side-channel vulnerability enables automated enumeration of valid user accounts, which can be leveraged for credential stuffing attacks or targeted phishing campaigns against ApostropheCMS installations with password reset functionality enabled.

Affected Products

  • ApostropheCMS versions 4.28.0 and prior
  • Only instances with passwordReset option explicitly enabled (defaults to false)
  • Node.js deployments running vulnerable ApostropheCMS versions

Discovery Timeline

  • 2026-04-15 - CVE CVE-2026-33877 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2026-33877

Vulnerability Analysis

This vulnerability represents a classic timing side-channel attack (CWE-208) in the password reset flow. The core issue lies in the asymmetric timing behavior of the resetRequest handler. When a user is not found in the database, the handler returns after a fixed 2-second artificial delay. However, when a valid user is found, the system performs additional operations—including a MongoDB update and SMTP email transmission—without equivalent delay normalization, resulting in measurably different response times.

The endpoint accepts both username and email parameters via an $or MongoDB query, expanding the attack surface. Additionally, the existing checkLoginAttempts throttling mechanism only applies to the login flow, leaving the password reset endpoint without rate limiting protection.

Root Cause

The root cause is the inconsistent application of timing delays in the password reset flow. The original implementation introduced a fixed delay for error cases but failed to normalize response times when valid users are found and email operations are performed. This creates an observable timing oracle that leaks information about account validity.

Attack Vector

An unauthenticated attacker with network access can exploit this vulnerability by sending multiple password reset requests with different email addresses or usernames and measuring the response times. Valid accounts will exhibit different response timing patterns compared to invalid accounts. The lack of rate limiting on this endpoint enables automated high-volume enumeration attacks.

javascript
         },
         ...self.isPasswordResetEnabled() && {
           async resetRequest(req) {
-            const wait = (t = 2000) => Promise.delay(t);
+            const MIN_RESPONSE_TIME = 2000;
+            const startTime = Date.now();
             const site = (req.headers.host || '').replace(/:\d+$/, '');
             const email = self.apos.launder.string(req.body.email);
             if (!email.length) {
               throw self.apos.error('invalid', req.t('apostrophe:loginResetEmailRequired'));
             }
             let user;
-            // error not reported to browser for security reasons
             try {
               user = await self.getPasswordResetUser(req.body.email);
             } catch (e) {
               self.apos.util.error(e);
             }
             if (!user) {
-              await wait();
               self.apos.util.error(
                 `Reset password request error - the user ${email} doesn\`t exist.`
               );
-              return;
-            }
-            if (!user.email) {
-              await wait();
+            } else if (!user.email) {
               self.apos.util.error(
                 `Reset password request error - the user ${user.username} doesn\`t have an email.`

Source: GitHub Commit Update

Detection Methods for CVE-2026-33877

Indicators of Compromise

  • High volume of requests to /api/v1/@apostrophecms/login/reset-request endpoint from single IP addresses or IP ranges
  • Sequential or pattern-based email/username attempts in password reset requests
  • Unusual response time analysis patterns in web server logs indicating timing measurement activity
  • Burst traffic to password reset endpoints outside normal user behavior patterns

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and alert on high-frequency password reset requests
  • Monitor for statistical anomalies in request rates to the password reset endpoint
  • Deploy log analysis to identify sequential enumeration patterns (alphabetical, dictionary-based, or leaked credential lists)
  • Enable application-level logging to track password reset request failures and success patterns

Monitoring Recommendations

  • Set up alerting thresholds for password reset request volumes exceeding baseline patterns
  • Correlate password reset enumeration attempts with subsequent authentication failures or successful logins
  • Monitor for requests from known malicious IP addresses or Tor exit nodes targeting the password reset endpoint
  • Track response time distributions for the password reset endpoint to detect ongoing exploitation attempts

How to Mitigate CVE-2026-33877

Immediate Actions Required

  • Upgrade ApostropheCMS to version 4.29.0 or later, which contains the security fix
  • If upgrade is not immediately possible, consider temporarily disabling the passwordReset option if not critical to operations
  • Implement rate limiting at the reverse proxy or WAF level for the /api/v1/@apostrophecms/login/reset-request endpoint
  • Review logs for signs of prior exploitation or enumeration attempts

Patch Information

The vulnerability has been fixed in ApostropheCMS version 4.29.0. The fix normalizes response times by tracking elapsed time and ensuring all responses take a minimum consistent duration, eliminating the timing oracle. The patch can be reviewed in the GitHub commit. Additional details are available in the GitHub Security Advisory GHSA-mj7r-x3h3-7rmr.

Workarounds

  • Disable the passwordReset option in ApostropheCMS configuration if the feature is not required
  • Implement network-level rate limiting on the password reset endpoint using reverse proxy or WAF
  • Add CAPTCHA or proof-of-work challenges to the password reset flow to slow automated enumeration
  • Deploy IP-based throttling rules to limit requests per IP address to the affected endpoint
bash
# Example nginx rate limiting configuration for password reset endpoint
limit_req_zone $binary_remote_addr zone=reset_limit:10m rate=5r/m;

location /api/v1/@apostrophecms/login/reset-request {
    limit_req zone=reset_limit burst=2 nodelay;
    limit_req_status 429;
    proxy_pass http://apostrophe_backend;
}

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechApostrophecms

  • SeverityLOW

  • CVSS Score3.7

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-208
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-mj7r-x3h3-7rmr
  • Related CVEs
  • CVE-2026-39857: ApostropheCMS Auth Bypass Vulnerability

  • CVE-2026-33889: ApostropheCMS Stored XSS Vulnerability

  • CVE-2026-40186: ApostropheCMS sanitize-html XSS Vulnerability

  • CVE-2026-35569: ApostropheCMS Stored XSS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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