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

CVE-2026-33124: Frigate NVR Auth Bypass Vulnerability

CVE-2026-33124 is an authentication bypass flaw in Frigate network video recorder allowing password changes without current password verification. This post covers the security impact, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-33124 Overview

CVE-2026-33124 is a high-severity authentication bypass vulnerability affecting Frigate, a popular open-source network video recorder (NVR) with realtime local object detection for IP cameras. The vulnerability allows any authenticated user to change their own password without verifying the current password through the /users/{username}/password endpoint. This design flaw, combined with inadequate session management and missing password strength validation, creates multiple attack vectors for account takeover.

Critical Impact

Attackers who obtain a valid session token can permanently take control of user accounts by changing passwords without verification, with session hijacking persisting even after password resets due to non-invalidated JWT tokens.

Affected Products

  • Frigate NVR versions prior to 0.17.0-beta1
  • All installations using the vulnerable /users/{username}/password endpoint
  • Deployments accessible over HTTP without TLS encryption

Discovery Timeline

  • March 20, 2026 - CVE-2026-33124 published to NVD
  • March 23, 2026 - Last updated in NVD database

Technical Details for CVE-2026-33124

Vulnerability Analysis

This vulnerability stems from improper authentication (CWE-287) in Frigate's user password management functionality. The core issue is that the password change endpoint does not require users to provide their current password as verification before setting a new one. This fundamentally breaks the security model that should prevent unauthorized password modifications.

The vulnerability is compounded by two additional security weaknesses. First, when a password is changed, existing JWT tokens remain valid rather than being invalidated. This means that even if a legitimate user changes their password after detecting suspicious activity, an attacker who has already obtained a session token retains access. Second, the absence of password strength validation allows attackers to set weak passwords, making accounts vulnerable to subsequent brute-force attacks.

Root Cause

The root cause is a missing authentication check in the password change workflow. The /users/{username}/password endpoint accepts password change requests from any authenticated session without validating that the requester knows the current password. This violates the security principle that sensitive account modifications should require re-authentication.

Attack Vector

This vulnerability is exploitable over the network by any attacker who obtains a valid JWT session token. Token acquisition can occur through multiple vectors including:

  • Accidental exposure of JWT tokens in logs or URLs
  • Stolen cookies from compromised browsers or devices
  • Cross-site scripting (XSS) attacks that exfiltrate tokens
  • Network sniffing when Frigate is deployed over HTTP without TLS
  • Compromised devices with active Frigate sessions

Once an attacker obtains a valid session token, they can invoke the password change endpoint to set a new password of their choosing. The victim loses access to their account while the attacker gains permanent control. Because JWT tokens are not invalidated upon password change, even if the victim regains access through an administrator and changes their password again, any previously compromised tokens remain valid for the attacker.

The attack is particularly dangerous in home surveillance and security camera deployments where Frigate is commonly used, as account takeover could provide attackers with access to live video feeds and recorded footage.

Detection Methods for CVE-2026-33124

Indicators of Compromise

  • Unexpected password change events in application logs without corresponding user activity
  • Multiple password changes for the same account in a short time period
  • Password modification requests originating from unusual IP addresses or geographic locations
  • Active sessions persisting after password resets
  • User reports of being locked out of accounts without initiating password changes

Detection Strategies

  • Monitor the /users/{username}/password endpoint for unusual request patterns or frequencies
  • Implement alerting for password change events, especially those occurring outside normal user activity windows
  • Track and correlate session token usage across multiple IP addresses that may indicate token theft
  • Review web server access logs for direct API calls to password change endpoints without preceding authentication flows

Monitoring Recommendations

  • Enable detailed logging for all authentication and account modification events in Frigate
  • Deploy network monitoring to detect HTTP traffic to Frigate instances that should be using HTTPS
  • Implement session activity tracking to identify tokens being used from multiple disparate locations
  • Configure alerts for bulk or automated requests to user management endpoints

How to Mitigate CVE-2026-33124

Immediate Actions Required

  • Upgrade Frigate to version 0.17.0-beta1 or later immediately
  • Force password resets for all user accounts after upgrading to ensure any compromised tokens are invalidated
  • Review access logs for signs of unauthorized password changes or suspicious session activity
  • Ensure Frigate is deployed behind HTTPS to prevent session token interception via network sniffing

Patch Information

This vulnerability has been resolved in Frigate version 0.17.0-beta1. The fix is available through the official GitHub commit. Additional details are provided in the GitHub Security Advisory GHSA-24p8-r573-vwr2. Organizations should update to the patched version as soon as possible.

Workarounds

  • Restrict network access to Frigate instances using firewall rules or VPN requirements until patching is complete
  • Implement a reverse proxy with additional authentication layers in front of Frigate
  • Disable or restrict access to the /users/{username}/password endpoint at the network level if the application cannot be immediately updated
  • Monitor all user accounts for suspicious activity and revoke sessions if compromise is suspected
bash
# Example: Restrict Frigate access to local network only using iptables
iptables -A INPUT -p tcp --dport 5000 -s 192.168.1.0/24 -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/TechFrigate

  • SeverityHIGH

  • CVSS Score8.6

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/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-287
  • Vendor Resources
  • GitHub Commit Details

  • GitHub Security Advisory GHSA-24p8-r573-vwr2
  • Related CVEs
  • CVE-2026-33470: Frigate NVR Auth Bypass Vulnerability

  • CVE-2026-33469: Frigate NVR Information Disclosure Flaw

  • CVE-2026-33126: Frigate NVR SSRF Vulnerability

  • CVE-2026-33125: Frigate NVR Privilege Escalation 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