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-2023-2253

CVE-2023-2253: Red Hat OpenShift API DoS Vulnerability

CVE-2023-2253 is a denial of service vulnerability in Red Hat OpenShift API for Data Protection caused by excessive memory allocation in the /v2/_catalog endpoint. This article covers technical details, affected versions, and mitigation.

Published: February 4, 2026

CVE-2023-2253 Overview

A denial of service vulnerability was discovered in the distribution/distribution container registry project. The flaw exists in the /v2/_catalog endpoint, which accepts a query string parameter n to control the maximum number of records returned. This vulnerability allows a malicious user to submit an unreasonably large value for n, causing the allocation of a massive string array and potentially resulting in denial of service through excessive memory consumption.

Critical Impact

Authenticated attackers can trigger memory exhaustion on container registry servers by manipulating the n parameter in catalog requests, potentially causing service outages for container image distribution infrastructure.

Affected Products

  • Red Hat OpenShift API for Data Protection
  • Red Hat OpenShift Container Platform 4.0
  • Red Hat OpenShift Developer Tools and Services

Discovery Timeline

  • 2023-06-06 - CVE-2023-2253 published to NVD
  • 2025-01-07 - Last updated in NVD database

Technical Details for CVE-2023-2253

Vulnerability Analysis

This vulnerability is classified under CWE-770 (Allocation of Resources Without Limits or Throttling) and CWE-475 (Undefined Behavior for Input to API). The /v2/_catalog endpoint in the distribution/distribution project is designed to return a paginated list of repositories in a container registry. The endpoint accepts a query parameter n that specifies the maximum number of entries to return.

The vulnerability stems from insufficient validation of the n parameter value. When a request is made to the catalog endpoint with an extremely large value for n, the application attempts to pre-allocate a string array of that size before populating it with actual repository names. This can lead to massive memory allocations that exhaust available system resources.

Root Cause

The root cause is improper input validation combined with resource allocation without appropriate limits. The application fails to enforce reasonable upper bounds on the n parameter before using it to allocate memory structures. This allows attackers to specify arbitrarily large values that trigger excessive memory allocation, regardless of the actual number of repositories in the registry.

Attack Vector

The attack can be executed remotely over the network by any authenticated user with access to the container registry API. The attacker sends a crafted HTTP request to the /v2/_catalog endpoint with an extremely large n parameter value. This causes the server to attempt allocation of a correspondingly large string array, potentially exhausting available memory and causing the registry service to become unresponsive or crash.

The attack requires low privilege (authenticated access) and no user interaction, making it relatively straightforward to execute against vulnerable container registry deployments.

Detection Methods for CVE-2023-2253

Indicators of Compromise

  • Unusual memory consumption spikes on container registry servers
  • Repeated requests to /v2/_catalog endpoint with abnormally large n parameter values
  • Service crashes or out-of-memory (OOM) errors in container registry logs
  • Degraded performance or unavailability of container image pull/push operations

Detection Strategies

  • Monitor HTTP request logs for /v2/_catalog requests containing unusually large n parameter values (e.g., values exceeding expected repository counts)
  • Implement alerting on rapid memory consumption increases in container registry processes
  • Review container registry access logs for patterns of repeated catalog enumeration requests from single sources
  • Deploy web application firewall (WAF) rules to detect and block requests with excessively large numeric parameters

Monitoring Recommendations

  • Configure memory usage alerts for container registry deployments to detect potential exploitation attempts
  • Implement rate limiting on the /v2/_catalog endpoint to reduce the impact of repeated malicious requests
  • Enable detailed logging for all registry API endpoints to facilitate forensic analysis
  • Monitor for service restarts or OOM killer activity on systems hosting container registries

How to Mitigate CVE-2023-2253

Immediate Actions Required

  • Apply vendor-provided patches for affected Red Hat OpenShift products as soon as available
  • Implement input validation at the reverse proxy or WAF level to reject catalog requests with unreasonably large n values
  • Review and restrict access to the container registry API to only authorized users and services
  • Consider implementing request rate limiting on the /v2/_catalog endpoint as a defense-in-depth measure

Patch Information

Organizations should consult the Red Hat Bug Report #2189886 for patch availability and detailed remediation guidance. Debian users should refer to the Debian LTS Announcement for package updates addressing this vulnerability.

Workarounds

  • Deploy a reverse proxy or WAF in front of the container registry to validate and limit the n parameter to reasonable values
  • Restrict network access to the container registry API to trusted networks and services only
  • Implement memory limits and automatic restart policies for container registry deployments to contain the impact of successful exploitation
  • Monitor and alert on unusual API request patterns targeting the catalog endpoint
bash
# Example nginx configuration to limit n parameter
# Add to location block handling /v2/_catalog
location /v2/_catalog {
    # Reject requests with n parameter exceeding 10000
    if ($arg_n ~ "^[0-9]{5,}$") {
        return 400;
    }
    proxy_pass http://registry_backend;
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechRedhat Openshift

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.09%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-475

  • CWE-770
  • Technical References
  • Red Hat Bug Report #2189886

  • Debian LTS Announcement
  • Related CVEs
  • CVE-2022-1319: Red Hat OpenShift Runtimes DoS Flaw

  • CVE-2024-50312: OpenShift Container Platform Disclosure Flaw
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