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

CVE-2026-28352: Cern Indico Auth Bypass Vulnerability

CVE-2026-28352 is an authentication bypass flaw in Cern Indico's event management system that allows unauthorized access to event series metadata. This article covers technical details, affected versions, and mitigation.

Published: March 6, 2026

CVE-2026-28352 Overview

CVE-2026-28352 is a Missing Authentication for Critical Function (CWE-306) vulnerability affecting CERN Indico, a widely-used event management system built on Flask-Multipass. The vulnerability exists in versions prior to 3.3.11, where the API endpoint responsible for managing event series lacks proper authentication and authorization checks, allowing unauthenticated or unauthorized users to access this critical functionality.

Critical Impact

Unauthorized access to the event series management API allows attackers to retrieve event metadata (title, category chain, start/end dates), delete existing event series, and modify series configurations without authentication.

Affected Products

  • CERN Indico versions prior to 3.3.11
  • Deployments using Flask-Multipass authentication backend
  • Self-hosted and cloud-based Indico installations

Discovery Timeline

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

Technical Details for CVE-2026-28352

Vulnerability Analysis

This vulnerability represents a classic Broken Access Control flaw where the API endpoint used to manage event series operations fails to verify whether the requesting user has appropriate authentication credentials or authorization privileges. The affected endpoint accepts requests without validating session tokens or user permissions, enabling anonymous or low-privileged users to perform administrative actions on event series.

The impact is somewhat contained because the vulnerability only exposes limited event metadata rather than full event content. Attackers cannot access detailed event information, attendee data, or tamper with user-visible event content. However, the ability to delete or modify event series can still cause operational disruption to organizations relying on Indico for event management.

Root Cause

The root cause stems from a missing access control check in the event series management API endpoint. The Flask-based application fails to invoke authentication middleware or authorization decorators before processing requests to this endpoint, allowing the handler to execute without verifying the caller's identity or permissions. This represents a common oversight during API development where security checks implemented on web interface routes may not be consistently applied to API endpoints.

Attack Vector

The attack can be performed remotely over the network without any authentication. An attacker with network access to the Indico instance can directly call the vulnerable API endpoint to:

  1. Enumerate event metadata - Retrieve basic information about events in a series including titles, category chains, and scheduling data
  2. Delete event series - Remove existing event series from the system
  3. Modify event series - Alter configuration and properties of event series

The vulnerability does not require user interaction, and exploitation complexity is low since no authentication bypass techniques are needed—the endpoint simply lacks protection.

Detection Methods for CVE-2026-28352

Indicators of Compromise

  • Unusual API requests to event series management endpoints from unauthenticated sessions
  • Unexpected modifications or deletions of event series in Indico logs
  • API access patterns from IP addresses outside normal administrative user ranges
  • High volume of metadata queries against event series endpoints

Detection Strategies

  • Monitor web server access logs for requests to the event series API endpoint without valid session cookies
  • Implement anomaly detection for series deletion or modification operations
  • Enable audit logging for all event series management operations
  • Configure alerting for API access from untrusted network sources

Monitoring Recommendations

  • Review Indico application logs for unauthorized series management operations
  • Monitor for bulk metadata extraction patterns that may indicate reconnaissance
  • Establish baseline for legitimate series management API usage patterns
  • Implement real-time alerting for any event series deletion events

How to Mitigate CVE-2026-28352

Immediate Actions Required

  • Upgrade CERN Indico to version 3.3.11 or later immediately
  • Review recent event series modifications and deletions for unauthorized changes
  • Audit access logs for evidence of exploitation attempts
  • Restrict network access to Indico administrative APIs where possible

Patch Information

CERN has released Indico version 3.3.11 which addresses this vulnerability by implementing proper authentication and authorization checks on the event series management API endpoint. Organizations should upgrade to this version or later to remediate the issue.

For detailed patch information, see the GitHub Release for Indico v3.3.11 and the GitHub Security Advisory GHSA-rfpp-2hgm-gp5v.

Workarounds

  • Use webserver configuration (nginx, Apache) to restrict access to the series management API endpoint
  • Implement IP-based access controls to limit API access to trusted administrative networks
  • Deploy a web application firewall (WAF) rule to block unauthenticated requests to the affected endpoint
  • Consider temporarily disabling the series management API if not actively used
bash
# Example nginx configuration to restrict series API access
location /api/series/ {
    # Allow only from trusted administrative network
    allow 10.0.0.0/8;
    allow 192.168.1.0/24;
    deny all;
    
    # Or require HTTP Basic Auth as additional layer
    # auth_basic "Restricted";
    # auth_basic_user_file /etc/nginx/.htpasswd;
    
    proxy_pass http://indico_backend;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechCern Indico

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-306
  • Technical References
  • GitHub Release Indico v3.3.11
  • Vendor Resources
  • GitHub Security Advisory GHSA-rfpp-2hgm-gp5v
  • Related CVEs
  • CVE-2026-33046: Cern Indico RCE 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