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-2025-32012

CVE-2025-32012: Jellyfin Media Server DoS Vulnerability

CVE-2025-32012 is a denial-of-service flaw in Jellyfin media server that allows unauthenticated attackers to repeatedly restart the server by spoofing their IP. This article covers technical details, affected versions, and mitigation.

Published: May 4, 2026

CVE-2025-32012 Overview

Jellyfin is an open source self-hosted media server. Versions 10.9.0 through 10.10.6 expose the /System/Restart administrative endpoint to unauthenticated attackers through an IP spoofing flaw. The endpoint authorizes any request originating from a local area network (LAN) IP address, but Jellyfin determines the source IP using forwarded HTTP headers. An unauthenticated attacker can forge X-Forwarded-For headers to impersonate a LAN client and trigger server restarts. Repeated spoofed requests cause a sustained denial-of-service condition. The flaw is tracked under [CWE-290: Authentication Bypass by Spoofing] and patched in version 10.10.7.

Critical Impact

An unauthenticated remote attacker can spoof a LAN source IP to repeatedly invoke the admin-only restart endpoint, producing a denial-of-service condition on default-configured Jellyfin servers.

Affected Products

  • Jellyfin 10.9.0 through 10.10.6
  • Jellyfin default-configured deployments without trusted reverse proxy settings
  • Jellyfin instances exposed to untrusted networks

Discovery Timeline

  • 2025-04-15 - CVE-2025-32012 published to NVD
  • 2025-10-06 - Last updated in NVD database

Technical Details for CVE-2025-32012

Vulnerability Analysis

The flaw resides in how Jellyfin resolves the source IP address of incoming HTTP requests. The application uses ASP.NET Core's ForwardedHeadersMiddleware with XForwardedFor, XForwardedProto, and XForwardedHost enabled by default, even when no trusted proxies are configured. This allows any client to inject an X-Forwarded-For header that the framework then treats as the authoritative remote address.

The /System/Restart endpoint enforces an authorization policy that admits requests either from authenticated administrators or from clients on the local network. Because the LAN check evaluates the spoofable forwarded address, an attacker on the public internet can present a private RFC 1918 IP and satisfy the LAN condition without credentials.

Root Cause

The root cause is misplaced trust in client-supplied HTTP headers combined with network-based authorization. When KnownProxies and KnownNetworks are empty, ASP.NET Core's middleware should not honor forwarded headers, yet Jellyfin enabled them unconditionally. The endpoint also conflates network locality with administrative identity, treating LAN membership as a sufficient authorization signal [CWE-290].

Attack Vector

An attacker sends an HTTP POST request to /System/Restart containing an X-Forwarded-For: 192.168.1.10 header. Jellyfin's middleware overwrites the connection's remote address with the spoofed value, the policy handler classifies the caller as a LAN client, and the server reboots. Repeating the request every few seconds keeps the server in a perpetual restart loop. The same primitive can bypass other LAN-gated controls and amplify the impact of any chained remote code execution flaw.

text
// Patch diff: Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs
                     // https://github.com/dotnet/aspnetcore/blob/master/src/Middleware/HttpOverrides/src/ForwardedHeadersMiddleware.cs
                     // Enable debug logging on Microsoft.AspNetCore.HttpOverrides.ForwardedHeadersMiddleware to help investigate issues.

-                    options.ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto | ForwardedHeaders.XForwardedHost;
-
                     if (config.KnownProxies.Length == 0)
                     {
+                        options.ForwardedHeaders = ForwardedHeaders.None;
                         options.KnownNetworks.Clear();
                         options.KnownProxies.Clear();
                     }
                     else
                     {
+                        options.ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto | ForwardedHeaders.XForwardedHost;
                         AddProxyAddresses(config, config.KnownProxies, options);
                     }

Source: Jellyfin patch commit f625665. The fix disables forwarded header processing when no known proxies are configured, eliminating the spoofing primitive in default deployments.

Detection Methods for CVE-2025-32012

Indicators of Compromise

  • Unexpected POST /System/Restart entries in Jellyfin access logs originating from external clients carrying private-range X-Forwarded-For values.
  • Repeated Jellyfin process restarts recorded by the host service manager (systemd, Windows Service Control Manager) without administrator action.
  • Service availability gaps and client reconnection storms occurring at regular short intervals.

Detection Strategies

  • Inspect HTTP request logs for X-Forwarded-For headers containing RFC 1918 addresses arriving on a public network interface.
  • Correlate Jellyfin application restart events with inbound requests to /System/Restart and flag any without a preceding authenticated admin session.
  • Run authenticated version checks against managed Jellyfin instances to identify hosts still on 10.9.0 through 10.10.6.

Monitoring Recommendations

  • Forward Jellyfin and reverse proxy access logs to a centralized SIEM and alert on bursts of /System/Restart requests.
  • Monitor service uptime metrics; alert when the Jellyfin process restarts more than once within a short window.
  • Track and alert on any HTTP request where the TCP source IP is public but the forwarded IP is private.

How to Mitigate CVE-2025-32012

Immediate Actions Required

  • Upgrade Jellyfin to version 10.10.7 or later, which disables forwarded header trust by default when no proxies are configured.
  • Audit KnownProxies and KnownNetworks settings to ensure only legitimate reverse proxies are listed.
  • Restrict inbound access to the Jellyfin HTTP/HTTPS ports using firewall rules or VPN-only exposure until patching is complete.

Patch Information

The vulnerability is fixed in Jellyfin 10.10.7. Review the GitHub Security Advisory GHSA-qcmf-gmhm-rfv9 and the upstream patch commit for full remediation details. The patch sets ForwardedHeaders = ForwardedHeaders.None when KnownProxies is empty, preventing untrusted clients from rewriting the remote address.

Workarounds

  • Place Jellyfin behind a reverse proxy that strips inbound X-Forwarded-For headers and configure KnownProxies to the proxy address only.
  • Block external access to /System/Restart at the reverse proxy or web application firewall layer.
  • Enforce network-layer access control so that only authenticated VPN clients can reach the Jellyfin web interface.
bash
# Example NGINX reverse proxy hardening to strip client-supplied forwarded headers
location / {
    proxy_pass         http://127.0.0.1:8096;
    proxy_set_header   Host              $host;
    proxy_set_header   X-Real-IP         $remote_addr;
    proxy_set_header   X-Forwarded-For   $remote_addr;   # overwrite, do not append
    proxy_set_header   X-Forwarded-Proto $scheme;

    # Deny external access to the restart endpoint
    location = /System/Restart {
        allow 10.0.0.0/8;
        deny  all;
        proxy_pass http://127.0.0.1:8096;
    }
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechJellyfin

  • SeverityMEDIUM

  • CVSS Score4.6

  • EPSS Probability1.74%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:U/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
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-290
  • Vendor Resources
  • GitHub Commit Changes

  • GitHub Security Advisory GHSA-qcmf-gmhm-rfv9
  • Related CVEs
  • CVE-2026-35034: Jellyfin SyncPlay DoS Vulnerability

  • CVE-2026-35033: Jellyfin Information Disclosure Flaw

  • CVE-2026-35032: Jellyfin Media Server SSRF Vulnerability

  • CVE-2026-35031: Jellyfin Media Server RCE 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