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

CVE-2026-28217: Hoppscotch Auth Bypass Vulnerability

CVE-2026-28217 is an authentication bypass flaw in Hoppscotch that allows unauthorized access to user collections via IDOR. This article covers the technical details, affected versions, security impact, and mitigation.

Published: February 27, 2026

CVE-2026-28217 Overview

Hoppscotch, an open source API development ecosystem, contains an Insecure Direct Object Reference (IDOR) vulnerability in its GraphQL API prior to version 2026.2.0. The userCollection GraphQL query accepts an arbitrary collection ID and returns full collection data — including title, type, and the serialized data field containing HTTP requests with headers and potentially secrets — to any authenticated user without verifying that the requesting user owns the collection.

Critical Impact

Any authenticated user can access sensitive API collections belonging to other users, potentially exposing authentication tokens, API keys, and other secrets stored in HTTP request headers.

Affected Products

  • Hoppscotch versions prior to 2026.2.0

Discovery Timeline

  • 2026-02-26 - CVE-2026-28217 published to NVD
  • 2026-02-26 - Last updated in NVD database

Technical Details for CVE-2026-28217

Vulnerability Analysis

This vulnerability represents a classic Insecure Direct Object Reference (IDOR) pattern in Hoppscotch's GraphQL implementation. The userCollection query endpoint fails to implement proper authorization checks, allowing any authenticated user to retrieve collection data belonging to other users simply by supplying their collection IDs.

The flaw is particularly notable because the security advisory indicates that authorization checks exist on every other operation in the same resolver — this specific query was the sole exception. The exposed collection data includes the full serialized data field, which typically contains HTTP request configurations including headers that may store sensitive authentication credentials, API keys, bearer tokens, and other secrets.

Root Cause

The root cause is a missing authorization check (CWE-862) in the userCollection GraphQL query resolver. While other operations in the same resolver properly validate that the requesting user owns the requested resource, this particular query only requires the user to be authenticated — it does not verify ownership of the collection being accessed. This gap in the authorization logic creates a horizontal privilege escalation scenario where authenticated users can access data belonging to other users at the same privilege level.

Attack Vector

The attack is network-based and requires only low-level authentication. An attacker would need valid credentials to authenticate with the Hoppscotch instance, but would not require any special privileges beyond basic user access.

The exploitation path involves the following sequence:

  1. The attacker authenticates to the Hoppscotch application with a valid user account
  2. The attacker enumerates or guesses collection IDs (which may be predictable or sequential)
  3. The attacker sends GraphQL queries to the userCollection endpoint with target collection IDs
  4. The server returns full collection data without validating ownership
  5. The attacker extracts sensitive information from the returned data field, including HTTP headers containing authentication secrets

This attack is particularly effective because the response includes complete request configurations that users have saved, which commonly contain API keys, bearer tokens, and other authentication mechanisms for third-party services.

Detection Methods for CVE-2026-28217

Indicators of Compromise

  • Unusual volume of userCollection GraphQL queries from a single authenticated user
  • Sequential or enumerated collection ID patterns in query parameters from non-administrative users
  • Access logs showing users querying collection IDs they do not own
  • Anomalous data access patterns where users retrieve many collections in rapid succession

Detection Strategies

  • Implement GraphQL query logging to capture all userCollection requests with associated user context
  • Monitor for users accessing collection IDs outside their normal usage patterns
  • Alert on bulk collection queries that exceed typical user behavior thresholds
  • Review authentication logs for accounts that may have been compromised and used for data harvesting

Monitoring Recommendations

  • Enable detailed audit logging for all GraphQL API operations
  • Configure alerts for anomalous access patterns to collection resources
  • Implement rate limiting on GraphQL queries to slow potential enumeration attacks
  • Establish baseline metrics for normal userCollection query patterns to detect deviations

How to Mitigate CVE-2026-28217

Immediate Actions Required

  • Upgrade Hoppscotch to version 2026.2.0 or later immediately
  • Audit access logs for any signs of exploitation prior to patching
  • Rotate any API keys, tokens, or secrets that may have been stored in Hoppscotch collections
  • Review user account activity for signs of unauthorized data access

Patch Information

Hoppscotch version 2026.2.0 addresses this vulnerability by implementing proper authorization checks on the userCollection GraphQL query. The fix ensures that the resolver validates collection ownership before returning data, aligning this query with the authorization model used by other operations in the same resolver.

For more details, see the Hoppscotch Release 2026.2.0 and the GitHub Security Advisory GHSA-m5pg-r4jp-qq75.

Workarounds

  • Restrict network access to Hoppscotch instances to trusted users only until patching is complete
  • Implement additional authentication layers (VPN, network segmentation) to limit potential attackers
  • Disable or restrict access to the GraphQL API if not operationally required
  • Consider temporarily removing sensitive data from collections until the patch is applied
  • Monitor GraphQL query logs closely for any suspicious activity targeting userCollection

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechHoppscotch

  • 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-862
  • Technical References
  • Hoppscotch Release 2026.2.0

  • GitHub Security Advisory GHSA-m5pg-r4jp-qq75
  • Related CVEs
  • CVE-2026-34931: Hoppscotch Auth Bypass Vulnerability

  • CVE-2026-30825: Hoppscotch Auth Bypass Vulnerability

  • CVE-2026-28216: Hoppscotch Auth Bypass Vulnerability

  • CVE-2026-28215: Hoppscotch Auth Bypass 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