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

CVE-2026-33469: Frigate NVR Information Disclosure Flaw

CVE-2026-33469 is an information disclosure vulnerability in Frigate network video recorder that exposes sensitive credentials to authenticated non-admin users. This article covers technical details, affected versions, and patches.

Published: March 27, 2026

CVE-2026-33469 Overview

CVE-2026-33469 is a Broken Access Control vulnerability affecting Frigate, a popular open-source network video recorder (NVR) with realtime local object detection for IP cameras. In version 0.17.0, an authenticated non-admin user can retrieve the full raw Frigate configuration through the /api/config/raw endpoint. This exposes sensitive values that are intentionally redacted from the /api/config endpoint, including camera credentials, go2rtc stream credentials, MQTT passwords, proxy secrets, and any other secrets stored in config.yml.

Critical Impact

Authenticated non-admin users can access sensitive credentials and secrets that should only be visible to administrators, potentially leading to unauthorized access to cameras, MQTT brokers, and other integrated systems.

Affected Products

  • Frigate NVR version 0.17.0

Discovery Timeline

  • 2026-03-26 - CVE CVE-2026-33469 published to NVD
  • 2026-03-26 - Last updated in NVD database

Technical Details for CVE-2026-33469

Vulnerability Analysis

This vulnerability represents a classic Broken Access Control (CWE-863) issue introduced during an API refactoring effort. The admin-by-default API refactor intended to restrict sensitive endpoints to administrative users only, but the /api/config/raw endpoint was inadvertently left accessible to any authenticated user. While the /api/config/raw_paths endpoint was correctly restricted to admin-only access, the /api/config/raw endpoint retained its previous permissive access control.

The exposure is particularly concerning because the raw configuration file contains unredacted secrets. The standard /api/config endpoint properly sanitizes sensitive data before returning it to non-admin users, but the raw endpoint bypasses this protection entirely.

Root Cause

The vulnerability stems from an incomplete access control implementation during the admin-by-default API refactoring process. When updating the API to require administrative privileges for sensitive operations, the development team applied the admin-only restriction to /api/config/raw_paths but failed to apply the same restriction to the related /api/config/raw endpoint. This inconsistency created a bypass where authenticated users could access the unfiltered configuration data.

Attack Vector

The attack vector is network-based and requires only low privileges (authenticated user access). An attacker who has obtained valid credentials for any non-admin Frigate user account can exploit this vulnerability by making a simple authenticated GET request to the /api/config/raw endpoint.

The vulnerability does not require any user interaction and can be exploited remotely. Upon successful exploitation, the attacker gains access to sensitive configuration data including camera credentials (usernames/passwords for IP cameras), go2rtc streaming service credentials, MQTT broker passwords, proxy secrets, and any other sensitive values stored in the configuration file.

This information could be leveraged for further attacks such as unauthorized access to surveillance cameras, manipulation of MQTT-based home automation systems, or lateral movement within the network.

Detection Methods for CVE-2026-33469

Indicators of Compromise

  • Unusual access patterns to /api/config/raw endpoint from non-admin user accounts
  • Multiple rapid requests to configuration endpoints from the same session
  • Access logs showing non-admin users querying sensitive API endpoints
  • Unexpected credential usage on camera streams or MQTT brokers from new sources

Detection Strategies

  • Monitor API access logs for requests to /api/config/raw from non-administrative user sessions
  • Implement alerting on configuration endpoint access patterns that deviate from normal admin behavior
  • Review authentication logs for any accounts that have accessed sensitive endpoints inappropriately
  • Deploy application-layer firewall rules to log and alert on raw configuration endpoint access

Monitoring Recommendations

  • Enable detailed logging for all API endpoints in Frigate, particularly configuration-related endpoints
  • Set up alerts for any access to /api/config/raw by non-admin users
  • Monitor for signs of credential misuse on connected systems (cameras, MQTT brokers)
  • Implement periodic review of user access patterns to identify potential exploitation attempts

How to Mitigate CVE-2026-33469

Immediate Actions Required

  • Upgrade Frigate to version 0.17.1 or later immediately
  • Audit user accounts to identify and remove unnecessary non-admin users
  • Rotate all credentials stored in the Frigate configuration file (camera passwords, MQTT passwords, proxy secrets)
  • Review access logs for any suspicious access to the /api/config/raw endpoint

Patch Information

Frigate version 0.17.1 contains the official patch for this vulnerability. The fix properly applies admin-only access restrictions to the /api/config/raw endpoint, aligning it with the intended security model of the admin-by-default API refactor. Users should update to this version or later as soon as possible.

For more details, refer to the GitHub Security Advisory.

Workarounds

  • Restrict network access to the Frigate web interface to trusted administrator-only networks
  • Implement a reverse proxy with additional access controls to block non-admin access to /api/config/raw
  • Remove or disable all non-admin user accounts until the patch can be applied
  • Place Frigate behind a VPN to limit exposure to authenticated users on the trusted network

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechFrigate

  • SeverityMEDIUM

  • CVSS Score6.5

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-863
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33470: Frigate NVR Auth Bypass Vulnerability

  • CVE-2026-33126: Frigate NVR SSRF Vulnerability

  • CVE-2026-33124: Frigate NVR Auth Bypass 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