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

CVE-2026-33935: Franklioxygen Mytube DOS Vulnerability

CVE-2026-33935 is a denial of service flaw in Franklioxygen Mytube that allows attackers to lock out users by triggering failed login attempts. This article covers the technical details, affected versions, and mitigation.

Published: April 3, 2026

CVE-2026-33935 Overview

CVE-2026-33935 is a Denial of Service vulnerability affecting MyTube, a self-hosted downloader and player for video websites. The vulnerability exists in versions prior to 1.8.72 and allows unauthenticated attackers to lock out administrator and visitor accounts from password-based authentication by triggering failed login attempts. The application exposes three password verification endpoints that are publicly accessible and share a single file-backed login attempt state, enabling attackers to progressively increase lockout durations until reaching a 24-hour maximum that can be maintained indefinitely.

Critical Impact

Unauthenticated attackers can completely deny legitimate users access to the MyTube application by manipulating the shared login attempt counter across all authentication endpoints, effectively creating a permanent denial of service condition.

Affected Products

  • Franklioxygen MyTube versions prior to 1.8.72
  • Self-hosted MyTube instances with password authentication enabled
  • All three password verification endpoints sharing login-attempts.json state

Discovery Timeline

  • 2026-03-27 - CVE-2026-33935 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-33935

Vulnerability Analysis

This vulnerability represents a classic Improper Restriction of Excessive Authentication Attempts (CWE-307) flaw in the MyTube application's login handling mechanism. The core issue stems from a flawed architectural decision where all three password verification endpoints share a single global state for tracking failed login attempts.

The application stores authentication attempt data in a file called login-attempts.json, which maintains a failedAttempts counter along with associated timestamps and cooldown values. When any of the three publicly accessible endpoints records a failed authentication attempt via the recordFailedAttempt() function, this shared state is updated globally rather than on a per-user or per-endpoint basis.

Before validating any password, each endpoint invokes canAttemptLogin(), which checks the shared JSON file to determine whether a cooldown period is active. If the cooldown has not expired, the request is rejected before any password validation occurs. This creates a scenario where an attacker can affect the authentication availability for all users by targeting any single endpoint.

Root Cause

The root cause of this vulnerability lies in the design of the login attempt tracking system within the loginAttemptService.ts file. The implementation uses a globally shared file-backed state (login-attempts.json) across all authentication endpoints without any form of per-user, per-IP, or per-session isolation. This architectural flaw means that failed authentication attempts from any source against any endpoint will increment a single counter that affects all subsequent authentication requests.

The absence of proper rate limiting isolation allows an attacker to weaponize the built-in lockout mechanism against legitimate users. The progressive cooldown system, which was intended as a security feature to prevent brute-force attacks, becomes the attack vector itself.

Attack Vector

The attack leverages the network-accessible password verification endpoints to trigger the shared lockout mechanism. An attacker can exploit this vulnerability through the following process:

  1. The attacker sends invalid authentication requests to any of the three publicly accessible password verification endpoints
  2. Each failed attempt triggers recordFailedAttempt(), incrementing the shared counter in login-attempts.json
  3. The attacker waits for the cooldown period to expire between attempts
  4. By progressively increasing the failedAttempts counter, the lockout duration escalates until reaching the maximum of 24 hours
  5. Once the maximum lockout is reached, the attacker maintains the denial of service by waiting for the cooldown to expire and sending another failed attempt, which immediately triggers another 24-hour lockout if no successful login occurred in the meantime

This attack requires no authentication and can be performed entirely over the network, making it trivial to execute against any exposed MyTube instance. The vulnerability can be found in the loginAttemptService.ts source code.

Detection Methods for CVE-2026-33935

Indicators of Compromise

  • Unusual volume of failed authentication requests from single or distributed IP addresses
  • Frequent modifications to the login-attempts.json file with escalating failedAttempts counter values
  • Legitimate administrators and users reporting inability to authenticate despite using correct credentials
  • HTTP 429 or authentication lockout responses occurring when no legitimate login attempts were made

Detection Strategies

  • Monitor web server access logs for repeated requests to password verification endpoints from external IPs
  • Implement alerting on rapid increases in the failedAttempts counter within login-attempts.json
  • Set up anomaly detection for authentication endpoint traffic patterns that deviate from baseline user behavior
  • Configure intrusion detection systems to flag sequential failed authentication attempts with timing patterns matching cooldown intervals

Monitoring Recommendations

  • Deploy network-level monitoring to track authentication endpoint request rates and source IP diversity
  • Implement file integrity monitoring on login-attempts.json to detect unauthorized modifications
  • Create dashboards tracking authentication success/failure ratios and lockout trigger frequencies
  • Establish baseline metrics for normal authentication patterns to identify anomalous lockout-inducing activity

How to Mitigate CVE-2026-33935

Immediate Actions Required

  • Upgrade MyTube to version 1.8.72 or later immediately to address this vulnerability
  • Review authentication logs for evidence of exploitation attempts prior to patching
  • Consider temporarily implementing IP-based access controls on authentication endpoints if immediate upgrade is not possible
  • Notify users if authentication lockouts occurred that may have been exploitation-related

Patch Information

Version 1.8.72 of MyTube addresses this vulnerability. The fix has been implemented through multiple commits available in the GitHub Security Advisory. The relevant patches include:

  • Commit 4d89b14
  • Commit 752bc7f
  • Commit dd7b4a6

Organizations should update to version 1.8.72 or later as soon as possible.

Workarounds

  • Place a reverse proxy with rate limiting in front of the MyTube application to limit authentication requests per IP
  • Implement firewall rules to restrict access to authentication endpoints to known trusted networks
  • Configure web application firewall (WAF) rules to detect and block repeated failed authentication patterns
  • Consider temporarily disabling public access to the application until the patch can be applied
bash
# Example nginx rate limiting configuration for authentication endpoints
# Add to nginx server block to limit authentication requests
limit_req_zone $binary_remote_addr zone=auth_limit:10m rate=5r/m;

location ~ ^/(api/auth|login|verify) {
    limit_req zone=auth_limit burst=3 nodelay;
    proxy_pass http://mytube_backend;
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechFranklioxygen Mytube

  • SeverityHIGH

  • CVSS Score7.7

  • EPSS Probability0.39%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-307
  • Technical References
  • GitHub Source Code File
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Commit Update

  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33890: Franklioxygen Mytube Auth Bypass Flaw

  • CVE-2026-33735: Franklioxygen Mytube Auth Bypass Flaw
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