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

CVE-2026-33286: Graphiti Framework RCE Vulnerability

CVE-2026-33286 is a remote code execution vulnerability in Graphiti Framework that enables arbitrary method execution via malicious JSONAPI payloads. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-33286 Overview

CVE-2026-33286 is an arbitrary method execution vulnerability affecting the Graphiti framework, a Ruby-based JSON:API-compliant interface layer for models. This vulnerability allows attackers to craft malicious JSONAPI payloads with arbitrary relationship names to invoke any public method on underlying model instances, classes, or their associations. Applications exposing Graphiti write endpoints (create/update/delete) to untrusted users are at significant risk of exploitation.

Critical Impact

Attackers can execute arbitrary public methods on model instances and classes, potentially enabling destructive operations, data manipulation, or complete application compromise through malicious JSONAPI payloads.

Affected Products

  • Graphiti versions prior to 1.10.2
  • Ruby applications using Graphiti for JSON:API endpoints
  • Any application exposing Graphiti write endpoints to untrusted users

Discovery Timeline

  • 2026-03-24 - CVE CVE-2026-33286 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-33286

Vulnerability Analysis

The vulnerability resides in Graphiti's JSONAPI write functionality, specifically within the Graphiti::Util::ValidationResponse#all_valid? method. This method recursively processes relationship names from user-supplied JSONAPI payloads without proper validation against the resource's configured sideloads.

When processing relationships, the method directly passes user-controlled relationship names to Ruby's model.send(name) function. Since the input is not validated against the legitimate sideloads defined in the Graphiti resource configuration, an attacker can specify arbitrary method names in the relationships portion of a JSONAPI payload. This effectively grants the attacker the ability to invoke any public method available on the model instance, its class, or associated objects.

The attack surface includes all write operations—create, update, and delete endpoints—making this vulnerability particularly dangerous for applications that allow untrusted user input through these endpoints.

Root Cause

The root cause is improper input validation (CWE-913: Improper Control of Dynamically-Managed Code Resources). The Graphiti::Util::ValidationResponse#all_valid? method fails to validate that relationship names provided in JSONAPI payloads correspond to actually configured sideloads on the resource. Instead, it blindly trusts user input and passes these names directly to model.send(), which invokes the method with the given name on the model object.

Attack Vector

The attack is network-based and requires no authentication or user interaction in vulnerable configurations. An attacker can exploit this vulnerability by:

  1. Identifying an application with exposed Graphiti write endpoints
  2. Crafting a malicious JSONAPI payload containing arbitrary method names in the relationships section
  3. Sending the payload to a create or update endpoint
  4. The vulnerable code processes the relationship names and executes the specified methods on the model

The following patch demonstrates the fix implemented in version 1.10.2:

ruby
       private
 
       def process_relationships(resource, relationships, payload_path)
+        relationships.each_key do |name|
+          unless resource.class.sideload(name.to_sym)
+            full_key = fully_qualified_key(name, payload_path, :relationships)
+            @errors.add(full_key, :invalid_relationship, message: "is not a valid relationship")
+          end
+        end
+
         opts = {
           resource: resource,
           relationships: relationships

Source: GitHub Commit ddb5ad2b

The fix validates each relationship name against the resource's configured sideloads before processing, rejecting any names that are not legitimate relationships.

Detection Methods for CVE-2026-33286

Indicators of Compromise

  • Unusual JSONAPI payloads containing unexpected or suspicious relationship names in write requests
  • Error logs showing attempts to call non-existent or unusual methods on model objects
  • Unexpected data modifications or deletions that cannot be attributed to normal application usage
  • Web application firewall or API gateway logs showing malformed JSONAPI relationship structures

Detection Strategies

  • Implement application-level logging to capture all relationship names processed in JSONAPI write operations
  • Monitor for JSONAPI payloads containing relationship names that do not match defined resource sideloads
  • Deploy web application firewalls with rules to detect anomalous JSONAPI payload structures
  • Review application logs for Ruby NoMethodError exceptions that may indicate probing attempts

Monitoring Recommendations

  • Enable verbose logging on Graphiti write endpoints to capture incoming payload structures
  • Set up alerts for requests containing unusual relationship names or high volumes of failed relationship validations
  • Monitor for patterns of requests testing various method names in the relationships field
  • Implement rate limiting on write endpoints to slow down enumeration attempts

How to Mitigate CVE-2026-33286

Immediate Actions Required

  • Upgrade Graphiti to version 1.10.2 or later immediately
  • Audit all applications using Graphiti to identify exposed write endpoints
  • Implement authentication and authorization checks on all Graphiti write endpoints
  • Consider temporarily disabling write endpoints if immediate patching is not possible

Patch Information

The vulnerability has been fixed in Graphiti version 1.10.2. The patch adds validation to ensure that relationship names in JSONAPI payloads are checked against the resource's configured sideloads before being processed. Users should upgrade to this version or later as soon as possible.

For detailed information about the security fix, see the GitHub Security Advisory GHSA-3m5v-4xp5-gjg2 and the GitHub Release v1.10.2.

Workarounds

  • Ensure Graphiti write endpoints (create/update/delete) are not accessible to untrusted users
  • Apply strong authentication and authorization checks before any write operation is processed
  • Use Rails strong parameters to ensure only valid parameters are processed
  • Implement request validation middleware to sanitize JSONAPI payloads before they reach Graphiti
bash
# Update Graphiti to the patched version
bundle update graphiti

# Or specify the minimum version in your Gemfile
# gem 'graphiti', '>= 1.10.2'

# Then run bundle install
bundle install

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechGraphiti

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-913
  • Technical References
  • GitHub Release v1.10.2
  • Vendor Resources
  • GitHub Commit Details

  • GitHub Security Advisory GHSA-3m5v-4xp5-gjg2
  • Related CVEs
  • CVE-2026-32247: Graphiti Framework SQLi 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