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

CVE-2025-64178: Jellysweep SSRF Vulnerability

CVE-2025-64178 is an SSRF vulnerability in Jellysweep that allows authenticated users to make the server download arbitrary content via the /api/images/cache endpoint. This article covers technical details, affected versions, and mitigation.

Published: May 11, 2026

CVE-2025-64178 Overview

CVE-2025-64178 is a Server-Side Request Forgery (SSRF) vulnerability in Jellysweep, a cleanup tool for the Jellyfin media server. In versions 0.12.1 and below, the /api/images/cache endpoint accepts a user-supplied url parameter that is passed directly to the cache package, which downloads content from the supplied URL. Authenticated users can abuse this endpoint to force the Jellysweep server to issue HTTP requests to arbitrary destinations. The issue is tracked as [CWE-918] and is fixed in version 0.13.0.

Critical Impact

Authenticated users can coerce the Jellysweep server into downloading arbitrary content from attacker-chosen URLs, enabling reconnaissance of internal networks and resource abuse.

Affected Products

  • Jellysweep versions 0.12.1 and below
  • Jellysweep deployments exposing /api/images/cache
  • Fixed in Jellysweep version 0.13.0

Discovery Timeline

  • 2025-11-06 - CVE-2025-64178 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-64178

Vulnerability Analysis

The vulnerability resides in the ImageCache handler within internal/api/handler/handler.go. The handler reads the url query parameter directly from the HTTP request and forwards it to the image cache's ServeImage function. The cache package then performs an outbound HTTP request to fetch the resource at that URL. No allowlist, hostname validation, or scheme restriction is applied before the fetch.

Because Jellysweep performs the network request from its own context, an attacker can target internal IP ranges, loopback addresses, cloud metadata services, or non-HTTP services reachable from the server. The endpoint requires authentication, which limits exposure to users who already hold valid credentials, but does not prevent abuse by low-privileged accounts.

Root Cause

The root cause is missing input validation on the url query parameter. The handler treated client-supplied URLs as trusted identifiers for poster images rather than as untrusted user input. Combined with PosterURL being exposed through the API response models, attackers could enumerate or supply arbitrary URLs to the cache fetch routine.

Attack Vector

An authenticated user issues a GET request to /api/images/cache?url=<attacker_url>. The Jellysweep server fetches the supplied URL and returns the response body to the caller. This pattern enables internal port scanning, exfiltration of internal HTTP responses, and abuse of the server's outbound network position.

go
// Patched ImageCache handler in internal/api/handler/handler.go
// ImageCache serves cached images or downloads them if not cached.
func (h *Handler) ImageCache(c *gin.Context) {
-	imageURL := c.Query("url")
-	if imageURL == "" {
-		c.JSON(http.StatusBadRequest, gin.H{"error": "url parameter is required"})
+	mediaID, err := parseUintParam(c.Query("id"))
+	if err != nil {
+		c.JSON(http.StatusBadRequest, gin.H{"error": "invalid or missing id parameter"})
 		return
 	}

 	// Serve the cached image
-	err := h.engine.GetImageCache().ServeImage(c.Request.Context(), imageURL, c.Writer, c.Request)
+	err = h.engine.GetImageCache().ServeImage(c.Request.Context(), mediaID, c.Writer, c.Request)
 	if err != nil {
 		// Error is already handled in ServeImage
 		return

Source: GitHub Commit 17466312510966418aea941e4944229856d55101

The patch replaces the attacker-controllable url parameter with a server-side id lookup. The corresponding PosterURL field is also removed from the API response model in internal/api/models/converter.go, preventing clients from influencing the URL fetched by the cache.

Detection Methods for CVE-2025-64178

Indicators of Compromise

  • Requests to /api/images/cache with a url query parameter referencing internal IP ranges (RFC1918), 127.0.0.1, 169.254.169.254, or non-HTTP schemes.
  • Outbound HTTP connections from the Jellysweep host to unexpected internal hosts or cloud metadata endpoints.
  • Abnormally high request volume to /api/images/cache from a single authenticated session.

Detection Strategies

  • Inspect reverse proxy and application logs for GET /api/images/cache?url= requests containing host components other than expected media-poster domains.
  • Correlate authenticated user identifiers with outbound network connections originating from the Jellysweep process to flag SSRF probing.
  • Alert on responses from /api/images/cache that return non-image content types or unusually large payloads.

Monitoring Recommendations

  • Enable egress logging on the Jellysweep host and forward records to a central log platform for review.
  • Track the installed Jellysweep version across deployments and alert on instances still running 0.12.1 or earlier.
  • Monitor for repeated 4xx and 5xx responses from /api/images/cache, which can indicate enumeration of internal services.

How to Mitigate CVE-2025-64178

Immediate Actions Required

  • Upgrade Jellysweep to version 0.13.0 or later, which replaces the URL parameter with a server-side media id lookup.
  • Audit existing accounts and revoke credentials for users who do not require Jellysweep access.
  • Review recent application and proxy logs for prior abuse of /api/images/cache.

Patch Information

The fix is delivered in Jellysweep 0.13.0. Reference the GitHub Security Advisory GHSA-xc93-q32j-cpcg and the upstream commit for full patch details.

Workarounds

  • Restrict network egress from the Jellysweep host to the specific external poster sources required by the application.
  • Place Jellysweep behind a reverse proxy that blocks requests to /api/images/cache containing url parameters pointing to internal or metadata addresses.
  • Limit Jellysweep access to trusted authenticated users until the upgrade to 0.13.0 is complete.
bash
# Example nginx rule to block SSRF-style url parameters until upgrade
location = /api/images/cache {
    if ($arg_url ~* "(127\.|10\.|192\.168\.|172\.(1[6-9]|2[0-9]|3[0-1])\.|169\.254\.|localhost|file://|gopher://)") {
        return 403;
    }
    proxy_pass http://jellysweep_upstream;
}

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechJellyfin

  • SeverityHIGH

  • CVSS Score8.9

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-918
  • Technical References
  • GitHub Commit Change

  • GitHub Security Advisory GHSA-xc93-q32j-cpcg
  • Related CVEs
  • CVE-2026-35032: Jellyfin Media Server SSRF Vulnerability

  • CVE-2021-29490: Jellyfin SSRF Vulnerability

  • CVE-2026-35034: Jellyfin SyncPlay DoS Vulnerability

  • CVE-2026-35033: Jellyfin Information Disclosure 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