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

CVE-2026-40348: Movary Self-Hosted Web App SSRF Vulnerability

CVE-2026-40348 is a server-side request forgery flaw in Movary that allows authenticated users to trigger arbitrary internal requests. This article covers the technical details, affected versions, and mitigations.

Published: April 23, 2026

CVE-2026-40348 Overview

CVE-2026-40348 is a Server-Side Request Forgery (SSRF) vulnerability in Movary, a self-hosted web application designed for tracking and rating watched movies. The vulnerability exists in the Jellyfin server URL verification endpoint, allowing authenticated users to trigger arbitrary server-side HTTP requests to internal network targets.

Prior to version 0.71.1, an ordinary authenticated user can exploit the POST /settings/jellyfin/server-url-verify endpoint to perform SSRF attacks. The endpoint accepts a user-controlled URL, appends /system/info/public, and issues a server-side HTTP request using the Guzzle HTTP client without any validation against internal hosts, loopback addresses, or private network ranges.

Critical Impact

Authenticated attackers can perform internal network reconnaissance, probe internal services, and potentially access cloud metadata endpoints or internal administrative interfaces not directly accessible from external networks.

Affected Products

  • Movary versions prior to 0.71.1
  • Self-hosted Movary deployments with Jellyfin integration enabled
  • Deployments in cloud environments with accessible metadata services

Discovery Timeline

  • April 18, 2026 - CVE-2026-40348 published to NVD
  • April 20, 2026 - Last updated in NVD database

Technical Details for CVE-2026-40348

Vulnerability Analysis

This SSRF vulnerability (CWE-918) allows authenticated users to abuse the Jellyfin server URL verification functionality to make the Movary server perform HTTP requests to arbitrary destinations. The vulnerability occurs because the application fails to implement proper URL validation before issuing server-side requests.

When a user submits a URL through the vulnerable endpoint, the server-side code appends /system/info/public to the provided URL and makes an HTTP request using the Guzzle HTTP client library. The lack of input validation allows attackers to target internal network resources, cloud metadata services (such as 169.254.169.254 on AWS/GCP/Azure), and other services accessible only from the server's network position.

The scope change indicated in the vulnerability assessment means that successful exploitation can impact resources beyond the vulnerable component itself, potentially compromising internal infrastructure security.

Root Cause

The root cause of this vulnerability is insufficient input validation on the URL parameter submitted to the /settings/jellyfin/server-url-verify endpoint. The application does not implement any of the following critical security controls:

  • Validation against private IP address ranges (RFC 1918)
  • Blocking of loopback addresses (127.0.0.0/8, ::1)
  • DNS rebinding protection
  • URL scheme restrictions (allowing http:// and https:// to internal targets)
  • Blocklist or allowlist for permitted destination hosts

Attack Vector

The attack vector is network-based and requires low-privileged authentication. An attacker with a standard user account can exploit this vulnerability by sending crafted POST requests to the Jellyfin server URL verification endpoint.

The attack flow involves submitting internal network addresses or cloud metadata endpoint URLs to the verification endpoint, which causes the server to make HTTP requests to those targets and return response information that reveals network topology, service availability, and potentially sensitive configuration data.

For technical details on the vulnerability and its remediation, see the GitHub Security Advisory GHSA-2m2v-v563-qqvj and the associated pull request.

Detection Methods for CVE-2026-40348

Indicators of Compromise

  • Unusual POST requests to /settings/jellyfin/server-url-verify containing internal IP addresses or cloud metadata endpoints
  • HTTP requests from the Movary server to internal network ranges (10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16)
  • Server-side requests to cloud metadata services (169.254.169.254)
  • Multiple rapid requests to the verification endpoint from a single user session

Detection Strategies

  • Monitor web application logs for requests to /settings/jellyfin/server-url-verify with suspicious URL parameters
  • Implement network monitoring to detect outbound HTTP connections from the Movary server to internal addresses
  • Deploy web application firewall (WAF) rules to detect SSRF patterns in request bodies
  • Configure egress filtering alerts for connections to metadata service IPs and internal network ranges

Monitoring Recommendations

  • Enable detailed logging for all requests to settings-related endpoints
  • Set up alerts for any server-initiated connections to RFC 1918 private address ranges
  • Monitor for DNS queries from the application server to internal hostnames
  • Track authentication events correlated with settings endpoint access patterns

How to Mitigate CVE-2026-40348

Immediate Actions Required

  • Upgrade Movary to version 0.71.1 or later immediately
  • Restrict network egress from the Movary server to only necessary external services
  • Review logs for evidence of exploitation attempts
  • Audit user accounts for unauthorized access or suspicious activity

Patch Information

The vulnerability is fixed in Movary version 0.71.1. The fix implements proper URL validation to prevent requests to internal network targets. Administrators should upgrade to this version or later to remediate the vulnerability.

Relevant resources:

  • GitHub Release 0.71.1
  • Security Fix Commit
  • Pull Request #751

Workarounds

  • Implement network-level egress filtering to block outbound connections from the Movary server to internal IP ranges
  • Deploy a reverse proxy with URL validation to filter requests containing internal addresses before they reach the application
  • Restrict access to the settings endpoints using web server configuration or authentication controls
  • Disable or restrict Jellyfin integration functionality if not required in your deployment
bash
# Example iptables rules to restrict egress to private networks
# Apply on the host running Movary

# Block outbound to private IPv4 ranges from the Movary application
iptables -A OUTPUT -d 10.0.0.0/8 -m owner --uid-owner www-data -j DROP
iptables -A OUTPUT -d 172.16.0.0/12 -m owner --uid-owner www-data -j DROP
iptables -A OUTPUT -d 192.168.0.0/16 -m owner --uid-owner www-data -j DROP
iptables -A OUTPUT -d 169.254.169.254 -m owner --uid-owner www-data -j DROP
iptables -A OUTPUT -d 127.0.0.0/8 -m owner --uid-owner www-data -j DROP

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechMovary

  • SeverityHIGH

  • CVSS Score7.7

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • GitHub Commit Details

  • GitHub Pull Request

  • GitHub Release 0.71.1

  • GitHub Security Advisory GHSA-2m2v-v563-qqvj
  • Related CVEs
  • CVE-2026-40349: Movary Privilege Escalation Vulnerability

  • CVE-2026-40350: Movary Authentication Bypass Vulnerability

  • CVE-2026-23841: Movary XSS Vulnerability

  • CVE-2026-23840: Movary XSS Vulnerability
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