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
    • 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-41255

CVE-2026-41255: CKAN Data Management System CSRF Vulnerability

CVE-2026-41255 is a CSRF vulnerability in CKAN's data management system that allows attackers to bypass CSRF protection through unauthenticated requests. This article covers technical details, affected versions, and mitigation.

Published: May 14, 2026

CVE-2026-41255 Overview

CKAN is an open-source data management system (DMS) used to power data hubs and data portals. CVE-2026-41255 affects CKAN versions prior to 2.10.10 and 2.11.5. The vulnerability allows an unauthenticated attacker to permanently disable Cross-Site Request Forgery (CSRF) protection on a protected endpoint for the lifetime of a server worker process. The flaw stems from improper use of flask-wtf.csrf.CSRFProtect() as a module-level variable in the flask_app middleware. A single unauthenticated request to a protected endpoint exempts that endpoint from CSRF protection across all subsequent requests handled by the same worker [CWE-352].

Critical Impact

An unauthenticated request can permanently disable CSRF protection on a CKAN endpoint for the lifetime of a uWSGI worker process, exposing authenticated users to CSRF attacks.

Affected Products

  • CKAN versions prior to 2.10.10
  • CKAN versions prior to 2.11.5 (2.11.x branch)
  • Deployments serving views via tokens or unauthenticated requests

Discovery Timeline

  • 2026-05-13 - CVE-2026-41255 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-41255

Vulnerability Analysis

The vulnerability resides in how CKAN integrates flask-wtf.csrf.CSRFProtect() within its flask_app middleware. CKAN marks endpoints as exempt from CSRF protection when they are accessed via tokens or unauthenticated requests. This exemption is recorded by mutating a member variable on the CSRFProtect() instance. The CSRFProtect() instance itself is held as a module-level singleton.

Flask-WTF's exemption API was designed as a decorator for static, application-startup configuration. CKAN repurposed it for per-request decisions. Because the exemption state is stored at module scope, any change persists for the lifetime of the Python process. One worker process retains the exempt state across all later requests it handles.

The practical consequence is endpoint-wide CSRF bypass. An unauthenticated attacker can poison a worker by sending a single request to a token-authenticated view. The targeted endpoint then accepts cross-site requests from authenticated users until the worker restarts [CWE-352].

Root Cause

The root cause is misuse of the flask-wtf CSRF exemption mechanism as runtime, request-scoped state. The exemption is stored on a shared instance rather than within request-local context. Process-level mutation by an unauthenticated caller affects all subsequent requests served by that worker.

Attack Vector

The attack vector is network-based and requires no authentication. The attacker sends a request to a view configured for token or unauthenticated access. That request marks the endpoint as CSRF-exempt. The attacker then lures an authenticated CKAN user to visit a malicious page, which submits a forged state-changing request to the now-unprotected endpoint. User interaction is required to complete the second stage of the chain.

No verified public exploit code is available. See the GitHub Security Advisory GHSA-mcvf-jxcw-vj73 and the GitHub CVE-2026-41255 Advisory for technical details.

Detection Methods for CVE-2026-41255

Indicators of Compromise

  • Unauthenticated requests to CKAN view endpoints that normally serve token-authenticated clients, followed shortly by state-changing requests from authenticated session cookies.
  • Cross-origin POST, PUT, or DELETE requests to CKAN endpoints lacking valid CSRF tokens that are nonetheless accepted by the application.
  • Referer or Origin headers on state-changing requests that do not match the CKAN deployment hostname.

Detection Strategies

  • Inspect reverse proxy and uWSGI access logs for unauthenticated requests to endpoints decorated for token access, then correlate with later authenticated mutations on the same worker.
  • Compare CKAN versions deployed across the estate against the fixed versions 2.10.10 and 2.11.5 using software inventory data.
  • Review web application firewall (WAF) telemetry for state-changing requests missing the expected X-CSRFToken header or csrf_token form field.

Monitoring Recommendations

  • Track CKAN application logs for CSRF validation failures and for any drop in CSRF rejection rates after deployment events.
  • Alert on access patterns where a single uWSGI worker handles unauthenticated token-endpoint traffic followed by authenticated write operations.
  • Forward CKAN, uWSGI, and reverse proxy logs to a centralized analytics platform for cross-source correlation.

How to Mitigate CVE-2026-41255

Immediate Actions Required

  • Upgrade CKAN to version 2.10.10 for the 2.10.x branch or 2.11.5 for the 2.11.x branch.
  • Restart all uWSGI workers after upgrading to clear any poisoned process-level state.
  • Audit custom CKAN extensions for additional uses of CSRFProtect() exemption APIs outside of startup configuration.

Patch Information

The vulnerability is fixed in CKAN 2.10.10 and 2.11.5. The patch removes the misuse of flask-wtf.csrf.CSRFProtect() member state for per-request exemption decisions. Refer to the GitHub Security Advisory GHSA-mcvf-jxcw-vj73 for the upstream fix details.

Workarounds

  • Restrict access to token-authenticated and unauthenticated view endpoints at the reverse proxy until patching is complete.
  • Configure the reverse proxy or WAF to require a matching Origin or Referer header on all state-changing requests to CKAN.
  • Schedule frequent uWSGI worker recycling to shorten the window in which a poisoned worker can accept forged requests.
bash
# Example: recycle uWSGI workers frequently to limit exposure window
# /etc/uwsgi/ckan.ini
[uwsgi]
max-requests = 200
max-worker-lifetime = 600
harakiri = 50
reload-on-rss = 256

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechCkan

  • SeverityMEDIUM

  • CVSS Score6.1

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-352
  • Technical References
  • GitHub CVE-2026-41255 Advisory

  • GitHub Security Advisory GHSA-mcvf-jxcw-vj73
  • Related CVEs
  • CVE-2026-42032: CKAN Auth Bypass Vulnerability

  • CVE-2026-42031: CKAN SQL Injection Vulnerability

  • CVE-2026-41132: CKAN Information Disclosure Vulnerability

  • CVE-2026-33060: CKAN MCP Server SSRF 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