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

CVE-2025-0189: Aimstack Aim DOS Vulnerability

CVE-2025-0189 is a denial of service flaw in Aimstack Aim that allows attackers to make the tracking server unresponsive by sending oversized websocket messages. This article covers technical details, affected versions, impact, and mitigation.

Published: May 4, 2026

CVE-2025-0189 Overview

CVE-2025-0189 is a denial of service vulnerability in aimhubio/aim version 3.25.0, an open-source experiment tracking platform. The tracking server overrides the default maximum size limit for WebSocket messages, allowing clients to submit arbitrarily large images for tracking. Processing these oversized payloads consumes server resources and blocks the event loop, rendering the server unresponsive to other concurrent requests. The flaw maps to CWE-770: Allocation of Resources Without Limits or Throttling.

Critical Impact

Unauthenticated remote attackers can disrupt availability of the Aim tracking server by sending oversized WebSocket image payloads, blocking legitimate experiment tracking traffic.

Affected Products

  • aimhubio/aim version 3.25.0
  • Aimstack Aim tracking server deployments
  • Self-hosted Aim experiment tracking instances exposing the WebSocket endpoint

Discovery Timeline

  • 2025-03-20 - CVE-2025-0189 published to NVD
  • 2025-10-15 - Last updated in NVD database

Technical Details for CVE-2025-0189

Vulnerability Analysis

The Aim tracking server accepts experiment metadata, metrics, and media artifacts such as images over a WebSocket channel. In version 3.25.0, the server explicitly raises the WebSocket frame size limit beyond the framework default. This change removes a safeguard intended to prevent excessive memory and CPU consumption during message decoding.

When an attacker sends a very large image frame, the server allocates buffers and performs synchronous processing on the payload. Because the tracking server handles WebSocket traffic in a shared event loop, the operation blocks other client requests until processing completes. Repeated large submissions amplify the effect, producing a sustained denial of service condition against confidentiality-neutral but availability-critical workloads.

Root Cause

The root cause is missing resource throttling on incoming WebSocket frames. The server overrides the framework's default max_size for WebSocket messages without imposing an alternative ceiling, validation step, or streaming chunked decode path. This violates the principle of bounded resource consumption for untrusted input, classified under CWE-770.

Attack Vector

Exploitation requires only network access to the Aim tracking server's WebSocket endpoint. No authentication, user interaction, or privileges are required. The attacker establishes a WebSocket session to the tracking endpoint and transmits an oversized image payload. The server attempts to ingest the entire frame, exhausting available processing time and starving concurrent client connections. See the Huntr Bounty Report for the original disclosure.

Detection Methods for CVE-2025-0189

Indicators of Compromise

  • WebSocket frames to the Aim tracking server exceeding typical image sizes (multi-megabyte to gigabyte range).
  • Sudden spikes in memory consumption or CPU on the Aim server process accompanied by stalled client requests.
  • Tracking clients reporting timeouts or connection failures while the server process remains running.

Detection Strategies

  • Inspect reverse proxy or load balancer logs for unusually large request bodies destined for Aim WebSocket routes.
  • Monitor process-level metrics on the Aim server for sustained high memory allocation correlated with single client sessions.
  • Alert on /api/runs or tracking WebSocket endpoints receiving payloads above a defined size threshold.

Monitoring Recommendations

  • Enable structured logging on the Aim server and forward events to a centralized SIEM for correlation.
  • Track WebSocket connection counts, frame sizes, and per-client byte rates over time.
  • Baseline normal experiment artifact sizes and alert on statistical outliers.

How to Mitigate CVE-2025-0189

Immediate Actions Required

  • Restrict network access to the Aim tracking server using firewall rules or VPN-only exposure until a fixed version is deployed.
  • Place the tracking server behind a reverse proxy that enforces a strict maximum request and WebSocket frame size.
  • Audit existing deployments for version 3.25.0 and inventory any internet-exposed instances.

Patch Information

At the time of NVD publication, no fixed version is referenced in the advisory. Monitor the aimhubio/aim GitHub repository and the Huntr Bounty Report for an official patch release and upgrade once available.

Workarounds

  • Configure an upstream proxy such as NGINX with client_max_body_size and WebSocket frame limits to reject oversized payloads before they reach the Aim process.
  • Run the Aim server in an isolated container with strict memory and CPU limits to contain resource exhaustion.
  • Require authenticated access to the tracking endpoint via network-layer controls or an authenticating proxy.
  • Rate-limit WebSocket connections per source IP to reduce sustained abuse.
bash
# Example NGINX reverse proxy configuration enforcing payload limits
server {
    listen 443 ssl;
    server_name aim.example.com;

    client_max_body_size 10m;

    location / {
        proxy_pass http://127.0.0.1:43800;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_read_timeout 60s;
        proxy_send_timeout 60s;
    }
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechAimstack Aim

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.58%

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

  • NVD-CWE-noinfo
  • Technical References
  • Huntr Bounty Report
  • Related CVEs
  • CVE-2024-8769: Aimstack Aim Path Traversal Vulnerability

  • CVE-2024-6829: Aimstack Aim Path Traversal Vulnerability

  • CVE-2024-6396: Aimstack Aim RCE Vulnerability

  • CVE-2024-7760: Aimstack Aim CSRF Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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