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-2025-15550

CVE-2025-15550: Birkir Prime CSRF Vulnerability

CVE-2025-15550 is a cross-site request forgery flaw in Birkir Prime that exploits GET-based GraphQL queries to trigger unauthorized actions. This post covers technical details, affected versions, impact, and mitigation.

Published: January 29, 2026

CVE-2025-15550 Overview

CVE-2025-15550 is a Cross-Site Request Forgery (CSRF) vulnerability affecting birkir prime versions up to and including 0.4.0.beta.0. The vulnerability exists in the application's GraphQL endpoint, which improperly handles GET-based query requests without adequate CSRF protection. Attackers can craft malicious GET requests to trigger unauthorized actions against privileged users by manipulating GraphQL query parameters.

Critical Impact

Attackers can exploit this CSRF vulnerability to execute unauthorized GraphQL queries on behalf of authenticated users, potentially leading to data manipulation or unauthorized access to sensitive information.

Affected Products

  • birkir prime versions <= 0.4.0.beta.0

Discovery Timeline

  • 2026-01-29 - CVE CVE-2025-15550 published to NVD
  • 2026-01-29 - Last updated in NVD database

Technical Details for CVE-2025-15550

Vulnerability Analysis

This Cross-Site Request Forgery vulnerability stems from the GraphQL endpoint's acceptance of query operations via HTTP GET requests without implementing proper CSRF protections. GraphQL APIs that allow GET requests for queries are particularly susceptible to CSRF attacks because browsers automatically include cookies and authentication headers when loading resources from external sites.

When a privileged user visits a malicious website while authenticated to the vulnerable birkir prime instance, the attacker's page can trigger GET requests to the GraphQL endpoint. These requests carry the user's session credentials automatically, allowing the attacker to execute arbitrary GraphQL queries with the victim's privileges.

The vulnerability is classified under CWE-352: Cross-Site Request Forgery (CSRF), which describes scenarios where web applications fail to verify that requests originate from legitimate user interactions.

Root Cause

The root cause of this vulnerability is the absence of CSRF token validation on GraphQL GET requests. The application accepts and processes GraphQL queries submitted via GET parameters without verifying that the request originated from a trusted source or was initiated by the user intentionally. This design allows cross-origin requests to execute queries using the victim's authenticated session.

Attack Vector

The attack is network-based and requires user interaction. An attacker must convince an authenticated user to visit a malicious webpage or click on a crafted link. Once the victim navigates to the attacker-controlled page, the malicious site can embed image tags, script references, or other resources that point to the vulnerable GraphQL endpoint with attacker-specified query parameters.

The attack exploits the fact that browsers automatically attach credentials (cookies, HTTP authentication) to cross-origin GET requests. Since the GraphQL endpoint processes these requests without CSRF validation, the malicious queries execute with the victim's privileges.

For technical details about this vulnerability, refer to the GitHub Issue #547 and the VulnCheck Advisory on GraphQL CSRF.

Detection Methods for CVE-2025-15550

Indicators of Compromise

  • Unexpected GraphQL query activity originating from external referrer URLs
  • GET requests to GraphQL endpoints with unusual or suspicious query parameters
  • Authentication logs showing query execution from users who did not initiate the requests
  • Cross-origin requests to GraphQL endpoints detected in web server logs

Detection Strategies

  • Monitor web application firewall (WAF) logs for cross-origin requests targeting GraphQL endpoints
  • Implement logging for all GraphQL operations and correlate with user activity patterns
  • Review server access logs for GET-based GraphQL requests with external or missing referrer headers
  • Deploy anomaly detection to identify GraphQL queries executed outside normal user workflows

Monitoring Recommendations

  • Enable detailed logging for all GraphQL endpoint access including HTTP method, referrer, and query content
  • Configure alerts for GraphQL operations from sessions with suspicious referrer patterns
  • Implement request origin validation monitoring to track potential CSRF exploitation attempts
  • Periodically audit GraphQL query logs for unauthorized data access patterns

How to Mitigate CVE-2025-15550

Immediate Actions Required

  • Upgrade birkir prime to a patched version if available
  • Disable GET-based GraphQL queries and require POST-only for all GraphQL operations
  • Implement CSRF token validation for all GraphQL requests
  • Review application logs for evidence of exploitation attempts

Patch Information

Users should monitor the birkir prime GitHub repository for security updates addressing this vulnerability. Until an official patch is released, implement the workarounds described below to reduce exposure.

Workarounds

  • Configure the GraphQL endpoint to reject GET requests and accept only POST requests with appropriate Content-Type headers
  • Implement CSRF tokens for all authenticated GraphQL operations
  • Deploy a web application firewall (WAF) rule to block cross-origin requests to the GraphQL endpoint
  • Consider implementing SameSite cookie attributes to prevent cross-site request attacks
bash
# Example: Configure reverse proxy to block GET requests to GraphQL endpoint
# Nginx configuration snippet
location /graphql {
    if ($request_method = GET) {
        return 405;
    }
    proxy_pass http://backend;
}

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechBirkir Prime

  • SeverityMEDIUM

  • CVSS Score5.1

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N/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
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-352
  • Technical References
  • GitHub Issue #547

  • VulnCheck Advisory on GraphQL CSRF
  • Related CVEs
  • CVE-2026-1169: Birkir Prime CSRF Vulnerability

  • CVE-2026-1175: Birkir Prime Information Disclosure Flaw

  • CVE-2026-1174: Birkir Prime GraphQL DoS Vulnerability

  • CVE-2026-1173: Birkir Prime GraphQL DoS 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