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

CVE-2026-28787: Oneuptime WebAuthn Auth Bypass Flaw

CVE-2026-28787 is an authentication bypass flaw in Oneuptime's WebAuthn implementation that allows attackers to replay valid assertions indefinitely. This article covers technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-28787 Overview

CVE-2026-28787 is a critical authentication bypass vulnerability affecting OneUptime, an open-source solution for monitoring and managing online services. The vulnerability exists in the WebAuthn authentication implementation where the challenge is not stored server-side but instead returned to the client and accepted back during verification. This implementation flaw violates the W3C Web Authentication Level 2 specification (§13.4.3) and enables attackers to replay valid WebAuthn assertions indefinitely, completely bypassing second-factor authentication.

Critical Impact

Attackers who obtain a valid WebAuthn assertion through XSS, Man-in-the-Middle attacks, or log exposure can replay it indefinitely to bypass multi-factor authentication, gaining unauthorized access to protected accounts.

Affected Products

  • Hackerbay OneUptime version 10.0.11 and prior
  • All OneUptime deployments using WebAuthn authentication

Discovery Timeline

  • 2026-03-06 - CVE-2026-28787 published to NVD
  • 2026-03-10 - Last updated in NVD database

Technical Details for CVE-2026-28787

Vulnerability Analysis

This vulnerability represents a fundamental implementation flaw in the WebAuthn authentication flow. According to the W3C Web Authentication specification, the server must generate and store a cryptographically random challenge during the authentication ceremony. This challenge must be verified server-side to ensure that each authentication attempt is unique and cannot be replayed.

In the affected versions of OneUptime, the authentication system fails to persist the challenge on the server. Instead, the challenge is sent to the client and then accepted back from the client's request body during the verification phase. This creates a critical security gap where the server has no way to distinguish between a fresh authentication attempt and a replayed one.

The vulnerability is classified under CWE-287 (Improper Authentication), as it allows attackers to circumvent the authentication mechanism entirely once they obtain a valid assertion.

Root Cause

The root cause of this vulnerability is the improper implementation of the WebAuthn authentication protocol. The server-side code fails to maintain session state for the authentication challenge, instead trusting client-provided data for challenge verification. This violates the fundamental security principle that authentication challenges must be generated, stored, and validated exclusively on the server side to prevent replay attacks.

Attack Vector

The attack can be executed remotely over the network. An attacker must first obtain a valid WebAuthn assertion through one of several vectors:

  1. Cross-Site Scripting (XSS): Injecting malicious scripts to capture WebAuthn responses during legitimate authentication
  2. Man-in-the-Middle (MitM): Intercepting network traffic between the client and server to capture authentication data
  3. Log Exposure: Accessing server logs or debugging output that may contain authentication payloads

Once a valid assertion is captured, the attacker can replay it indefinitely since the server accepts the challenge from the request body rather than comparing it against a server-stored value. This completely negates the replay protection that WebAuthn is designed to provide.

The vulnerability requires high attack complexity as the attacker must first obtain a valid assertion through secondary means, but once obtained, exploitation is trivial and repeatable.

Detection Methods for CVE-2026-28787

Indicators of Compromise

  • Multiple successful WebAuthn authentications from different IP addresses using identical assertion data
  • Authentication attempts with challenges that were not generated in active server sessions
  • Unusual patterns of successful 2FA completions without corresponding challenge generation events
  • Log entries showing WebAuthn verification with client-provided challenges

Detection Strategies

  • Implement logging to track challenge generation and consumption, flagging any challenge reuse
  • Monitor for authentication patterns where the same user authenticates from geographically disparate locations in short timeframes
  • Deploy network-level monitoring to detect potential MitM attacks targeting authentication endpoints
  • Review application logs for signs of XSS exploitation that could lead to credential capture

Monitoring Recommendations

  • Enable detailed audit logging for all WebAuthn authentication events including challenge generation
  • Set up alerts for multiple successful authentications from the same user with identical assertion signatures
  • Monitor for abnormal authentication success rates that could indicate automated replay attacks
  • Implement real-time correlation of authentication events across security monitoring platforms

How to Mitigate CVE-2026-28787

Immediate Actions Required

  • Evaluate the risk exposure of your OneUptime deployment and consider temporarily disabling WebAuthn authentication
  • Implement alternative multi-factor authentication mechanisms until a patch is available
  • Review access logs for signs of potential exploitation or suspicious authentication patterns
  • Consider deploying additional network security controls to reduce XSS and MitM attack surface

Patch Information

No official patches are currently available for this vulnerability. According to the GitHub Security Advisory, users should monitor the OneUptime repository for security updates. Organizations using OneUptime version 10.0.11 or prior should implement workarounds until a fix is released.

Workarounds

  • Disable WebAuthn-based authentication and switch to alternative 2FA methods such as TOTP or SMS verification
  • Implement additional session validation controls at the application or network layer
  • Deploy Web Application Firewall (WAF) rules to detect and block potential XSS attacks targeting authentication flows
  • Restrict network access to the OneUptime application to trusted IP ranges where feasible
  • Consider implementing additional authentication logging and anomaly detection to identify potential replay attempts

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechHackerbay Oneuptime

  • SeverityCRITICAL

  • CVSS Score9.0

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-287
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33143: Oneuptime Auth Bypass Vulnerability

  • CVE-2026-30956: OneUptime Auth Bypass Vulnerability

  • CVE-2026-30959: Hackerbay Oneuptime Auth Bypass Flaw

  • CVE-2026-30920: Oneuptime 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