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
    • 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-35490

CVE-2026-35490: changedetection.io Auth Bypass Flaw

CVE-2026-35490 is an authentication bypass vulnerability in changedetection.io caused by incorrect decorator ordering that silently disables auth on certain routes. This article covers technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-35490 Overview

CVE-2026-35490 is an Authentication Bypass vulnerability in changedetection.io, a free open source web page change detection tool. Prior to version 0.54.8, the @login_optionally_required decorator is incorrectly placed before (outer to) the @blueprint.route() decorator instead of after it. This decorator ordering issue causes Flask to register the original undecorated function, completely bypassing the authentication wrapper and silently disabling authentication on affected routes.

Critical Impact

Unauthenticated attackers can access protected routes that should require authentication, potentially exposing sensitive change detection data, configurations, and allowing unauthorized modifications to monitored pages.

Affected Products

  • changedetection.io versions prior to 0.54.8

Discovery Timeline

  • 2026-04-07 - CVE CVE-2026-35490 published to NVD
  • 2026-04-09 - Last updated in NVD database

Technical Details for CVE-2026-35490

Vulnerability Analysis

This vulnerability stems from a fundamental misunderstanding of Flask's decorator execution order. In Flask applications, the @route() decorator must always be the outermost decorator because it registers the function it receives with the application's URL routing system. When the @login_optionally_required decorator is placed outside of @blueprint.route(), the route decorator registers the raw, unprotected function directly with Flask's routing table, while the authentication wrapper is never included in the actual call chain.

The vulnerability is classified under CWE-863 (Incorrect Authorization), as the application fails to properly enforce authorization checks on protected endpoints. This allows unauthenticated users to access routes that were intended to require authentication, effectively granting them unauthorized access to sensitive functionality.

Root Cause

The root cause is improper decorator ordering in the Flask application code. Python decorators are applied from bottom to top (innermost to outermost), meaning the decorator closest to the function definition is applied first. When @login_optionally_required is placed above @blueprint.route(), Flask's routing mechanism receives and registers the original function before the authentication wrapper can be applied. This results in the authentication logic being completely bypassed for all affected routes.

Attack Vector

The attack vector is network-based, requiring no authentication, no user interaction, and involving low complexity. An attacker can exploit this vulnerability by simply accessing the affected routes directly without providing any authentication credentials. Since the authentication wrapper is never executed, the application treats all requests to these routes as if they were properly authenticated.

Exploitation is straightforward: an attacker identifies the protected endpoints in the changedetection.io application and sends HTTP requests directly to them. The server processes these requests without any authentication challenge, providing full access to the intended functionality.

For technical details on the specific affected routes and decorator patterns, see the GitHub Security Advisory.

Detection Methods for CVE-2026-35490

Indicators of Compromise

  • Unexpected access to changedetection.io administrative or protected routes from unauthenticated sessions
  • Web server logs showing successful responses (HTTP 200) to protected endpoints without associated authentication events
  • Unusual modifications to monitored page configurations without corresponding authenticated user activity
  • Access patterns showing direct requests to protected API endpoints bypassing normal authentication flow

Detection Strategies

  • Review web server access logs for requests to protected changedetection.io routes that lack authentication headers or session tokens
  • Implement network monitoring to detect anomalous access patterns to the changedetection.io application
  • Audit Flask application decorator ordering in deployed code to identify the vulnerable pattern
  • Compare installed changedetection.io version against the fixed version 0.54.8

Monitoring Recommendations

  • Enable detailed access logging for all changedetection.io routes to track authentication status per request
  • Set up alerts for access to administrative endpoints from unexpected IP addresses or without valid sessions
  • Monitor for bulk or automated access patterns that may indicate reconnaissance or exploitation attempts
  • Implement application-level logging to capture authentication bypass attempts

How to Mitigate CVE-2026-35490

Immediate Actions Required

  • Upgrade changedetection.io to version 0.54.8 or later immediately
  • Review access logs to identify any potential unauthorized access that may have occurred before patching
  • If upgrade is not immediately possible, restrict network access to the changedetection.io application to trusted IP addresses only
  • Audit any configuration changes or monitored page modifications for signs of tampering

Patch Information

The vulnerability has been fixed in changedetection.io version 0.54.8. The fix corrects the decorator ordering to ensure @blueprint.route() is the outermost decorator, allowing the @login_optionally_required authentication wrapper to be properly included in the request handling chain.

Users should upgrade to the latest version available. For detailed information about the fix, refer to the GitHub Security Advisory.

Workarounds

  • Place the changedetection.io instance behind a reverse proxy with authentication requirements
  • Implement network-level access controls (firewall rules, VPN requirements) to restrict access to trusted users only
  • Use HTTP Basic Authentication at the web server level as an additional authentication layer
  • Temporarily disable public network access to the application until the patch can be applied
bash
# Example: Restricting access via iptables to trusted IP only
iptables -A INPUT -p tcp --dport 5000 -s TRUSTED_IP_ADDRESS -j ACCEPT
iptables -A INPUT -p tcp --dport 5000 -j DROP

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechChangedetection Io

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-863
  • Technical References
  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43331: Linux Kernel DOS 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