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

CVE-2026-27793: Seerr Information Disclosure Vulnerability

CVE-2026-27793 is an information disclosure vulnerability in Seerr that exposes user credentials including Pushover, Pushbullet, and Telegram API keys. This post covers technical details, affected versions, and fixes.

Published: March 6, 2026

CVE-2026-27793 Overview

CVE-2026-27793 is an Insecure Direct Object Reference (IDOR) vulnerability in Seerr, an open-source media request and discovery manager for Jellyfin, Plex, and Emby. The vulnerability exists in the GET /api/v1/user/:id endpoint, which returns the full settings object for any user—including sensitive third-party API credentials for Pushover, Pushbullet, and Telegram—to any authenticated requester regardless of their privilege level.

This vulnerability is particularly dangerous when combined with CVE-2026-27707, an unauthenticated account creation vulnerability. Together, these vulnerabilities create a zero-prior-access attack chain that enables complete exfiltration of third-party API credentials for all users, including administrators.

Critical Impact

Any authenticated user can retrieve sensitive third-party API credentials (Pushover, Pushbullet, Telegram) for all users including administrators, enabling account takeover on connected notification services.

Affected Products

  • Seerr versions prior to 3.1.0

Discovery Timeline

  • 2026-02-27 - CVE-2026-27793 published to NVD
  • 2026-03-04 - Last updated in NVD database

Technical Details for CVE-2026-27793

Vulnerability Analysis

This vulnerability is classified as CWE-639: Authorization Bypass Through User-Controlled Key, commonly known as Insecure Direct Object Reference (IDOR). The root issue lies in the user retrieval endpoint's insufficient access control implementation.

The GET /api/v1/user/:id endpoint accepts a user ID parameter and returns user data without properly validating whether the requesting user has authorization to view the target user's sensitive information. The endpoint's filtering logic only checked if the requester had MANAGE_USERS permission, but failed to consider whether non-administrative users should be restricted from viewing other users' private settings.

The exposed settings object contains sensitive third-party notification service credentials including Pushover user keys, Pushbullet API tokens, and Telegram bot credentials. An attacker with basic authenticated access can enumerate user IDs and extract these credentials systematically.

Root Cause

The vulnerability stems from an insufficient field filtering implementation in the User entity class. The original filteredFields array only excluded email and plexId from API responses, leaving sensitive authentication tokens and settings exposed. The endpoint logic also failed to implement proper ownership checks—it would return unfiltered data to any authenticated user rather than restricting sensitive fields to the profile owner or administrators.

Attack Vector

An attacker can exploit this vulnerability through the network by making authenticated HTTP requests to the vulnerable endpoint. The attack requires low complexity and no user interaction:

  1. The attacker creates an account (legitimately or via CVE-2026-27707)
  2. Authenticates to obtain a valid session
  3. Enumerates user IDs by incrementing the :id parameter
  4. Extracts third-party API credentials from each user's settings object

The following patch demonstrates how the vulnerability was addressed by expanding the filtered fields list and implementing proper ownership validation:

Entity-level filtering expansion (server/entity/User.ts):

typescript
     return users.map((u) => u.filter(showFiltered));
   }
 
-  static readonly filteredFields: string[] = ['email', 'plexId'];
+  static readonly filteredFields: string[] = [
+    'email',
+    'plexId',
+    'password',
+    'resetPasswordGuid',
+    'jellyfinDeviceId',
+    'jellyfinAuthToken',
+    'plexToken',
+    'settings',
+  ];
 
   public displayName: string;
 

Source: GitHub Commit 4f089b2

Endpoint access control fix (server/routes/user/index.ts):

typescript
 router.get<{ id: string }>('/:id', async (req, res, next) => {
   try {
     const userRepository = getRepository(User);
-
     const user = await userRepository.findOneOrFail({
       where: { id: Number(req.params.id) },
     });
 
-    return res
-      .status(200)
-      .json(user.filter(req.user?.hasPermission(Permission.MANAGE_USERS)));
+    const isOwnProfile = req.user?.id === user.id;
+    const isAdmin = req.user?.hasPermission(Permission.MANAGE_USERS);
+
+    return res.status(200).json(user.filter(isOwnProfile || isAdmin));
   } catch (e) {
     next({ status: 404, message: 'User not found.' });
   }

Source: GitHub Commit 4f089b2

Detection Methods for CVE-2026-27793

Indicators of Compromise

  • Unusual volume of GET /api/v1/user/:id requests from a single authenticated session
  • Sequential enumeration patterns in user ID parameters (e.g., requests for IDs 1, 2, 3, 4...)
  • Authenticated users accessing user profiles other than their own without administrative privileges
  • Anomalous API activity from newly created accounts targeting user endpoints

Detection Strategies

  • Implement API rate limiting and anomaly detection for the /api/v1/user/ endpoint to identify enumeration attempts
  • Monitor authentication logs for accounts created via CVE-2026-27707 followed by user enumeration activity
  • Review web server access logs for patterns indicating systematic user ID enumeration
  • Deploy Web Application Firewall (WAF) rules to detect and block IDOR attack patterns

Monitoring Recommendations

  • Enable detailed API access logging including authenticated user identity, target user IDs, and response sizes
  • Set up alerts for high-frequency requests to user profile endpoints from non-administrative accounts
  • Monitor for unauthorized access to third-party notification services using credentials that may have been exfiltrated
  • Review Pushover, Pushbullet, and Telegram account activity for suspicious API usage

How to Mitigate CVE-2026-27793

Immediate Actions Required

  • Upgrade Seerr to version 3.1.0 or later immediately
  • Rotate all third-party notification service credentials (Pushover, Pushbullet, Telegram) for all users
  • Review API access logs to determine if the vulnerability was exploited prior to patching
  • If CVE-2026-27707 is also present, audit for unauthorized account creation and remove suspicious accounts

Patch Information

The vulnerability has been addressed in Seerr version 3.1.0. The fix implements two key changes:

  1. Expanded field filtering: The filteredFields array now includes password, resetPasswordGuid, jellyfinDeviceId, jellyfinAuthToken, plexToken, and settings to prevent exposure of sensitive data.

  2. Ownership-based access control: The endpoint now checks whether the requesting user is either viewing their own profile (isOwnProfile) or has administrative privileges (isAdmin) before returning unfiltered data.

For detailed patch information, see the GitHub Security Advisory GHSA-f7xw-jcqr-57hp and the v3.1.0 release notes.

Workarounds

  • If immediate patching is not possible, implement a reverse proxy rule to block or restrict access to /api/v1/user/:id endpoints for non-administrative users
  • Temporarily disable third-party notification integrations until the patch can be applied
  • Implement network-level access controls to limit API access to trusted IP addresses
  • Consider placing Seerr behind authentication middleware that enforces stricter access controls
bash
# Example nginx configuration to restrict user endpoint access
location ~ ^/api/v1/user/[0-9]+$ {
    # Only allow requests from trusted admin IPs
    allow 192.168.1.0/24;
    deny all;
    proxy_pass http://seerr_backend;
}

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechSeerr

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.03%

  • 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-639
  • Technical References
  • GitHub Release v3.1.0
  • Vendor Resources
  • GitHub Commit 4f089b2

  • GitHub Security Advisory GHSA-f7xw-jcqr-57hp
  • Related CVEs
  • CVE-2026-27707: Seerr Authentication Bypass Vulnerability

  • CVE-2026-27792: Seerr Auth Bypass Vulnerability
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