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

CVE-2025-54581: vproxy HTTP Proxy Server DoS Vulnerability

CVE-2025-54581 is a denial-of-service flaw in vproxy HTTP/HTTPS/SOCKS5 proxy server that allows attackers to crash the server via malicious TTL values. This post covers the technical details, affected versions, and mitigation.

Published: May 4, 2026

CVE-2025-54581 Overview

CVE-2025-54581 is a division-by-zero denial-of-service vulnerability in vproxy, an HTTP/HTTPS/SOCKS5 proxy server written in Rust. Versions 2.3.3 and below extract untrusted data from the user-controlled HTTP Proxy-Authorization header and pass it through Extension::try_from into parse_ttl_extension, where it is interpreted as a Time-To-Live (TTL) value. An attacker who supplies a TTL of zero through a crafted username such as configuredUser-ttl-0 triggers the modulo operation timestamp % ttl, which panics in Rust and crashes the server process. The issue is fixed in version 2.4.0.

Critical Impact

Unauthenticated remote attackers can crash the vproxy server with a single HTTP request, producing a sustained denial-of-service condition until the process is restarted.

Affected Products

  • vproxy versions 2.3.3 and below
  • vproxy HTTP proxy listener
  • vproxy HTTPS and SOCKS5 listeners using the shared extension parser

Discovery Timeline

  • 2025-07-30 - CVE-2025-54581 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-54581

Vulnerability Analysis

The vulnerability is classified as a divide-by-zero error [CWE-369]. vproxy supports per-connection extension parameters supplied through the proxy username field of the HTTP Proxy-Authorization header. The server parses suffixes such as -ttl-<value> and uses the parsed integer as a divisor when computing session bucketing through timestamp % ttl.

In Rust, integer division or modulo by zero on primitive unsigned types produces a runtime panic. Because the parsing path accepts 0 as a legal u64 value, a request that sets the TTL to zero causes the worker task to panic. Depending on the runtime configuration, the panic terminates the server process, interrupting all in-flight proxy sessions.

Root Cause

The root cause is missing validation on the parsed TTL value before it is used in arithmetic. The pre-patch implementation stored the TTL as a u64, allowing zero. The fix in commit aa1bf64 changes the storage type to NonZeroU64, which rejects zero at parse time and prevents the panic from being reachable.

Attack Vector

Exploitation requires only network access to the proxy listener. The attacker sends an HTTP request containing a crafted Proxy-Authorization header where the username embeds the -ttl-0 suffix. No credentials beyond what the proxy already accepts for authorization parsing are required, and no user interaction is involved.

rust
// Patch excerpt from src/extension.rs (commit aa1bf64)
-use std::time::{SystemTime, UNIX_EPOCH};
+use std::{
+    num::NonZeroU64,
+    time::{SystemTime, UNIX_EPOCH},
+};
 
 /// Enum representing different types of extensions.
 #[allow(clippy::upper_case_acronyms)]

Source: GitHub Commit aa1bf64

The fix replaces the raw u64 TTL with NonZeroU64, ensuring zero values are rejected during parsing rather than reaching the modulo operation.

Detection Methods for CVE-2025-54581

Indicators of Compromise

  • HTTP requests containing a Proxy-Authorization header whose decoded username matches the pattern *-ttl-0 or other zero-valued TTL suffixes.
  • Unexpected vproxy process exits accompanied by Rust panic messages referencing attempt to calculate the remainder with a divisor of zero.
  • Repeated proxy service restarts correlated with inbound requests from a small set of source addresses.

Detection Strategies

  • Inspect proxy access logs for Base64-decoded Proxy-Authorization usernames containing -ttl- followed by 0.
  • Alert on vproxy crash loops by monitoring service supervisor restart counters and stderr output for Rust panic stack traces.
  • Deploy a network IDS rule that flags HTTP requests carrying the literal substring ttl-0 inside Proxy-Authorization values.

Monitoring Recommendations

  • Forward vproxy stdout and stderr to a centralized log pipeline and create identifications on panicked at strings.
  • Track proxy availability metrics and alert on unplanned process termination events.
  • Correlate source IPs of malformed Proxy-Authorization requests across edge gateways to identify scanning activity.

How to Mitigate CVE-2025-54581

Immediate Actions Required

  • Upgrade vproxy to version 2.4.0 or later, which enforces NonZeroU64 parsing for TTL values.
  • Restrict network exposure of the proxy listener to trusted clients while patching is rolled out.
  • Place vproxy behind a reverse proxy or WAF that strips or rejects Proxy-Authorization headers containing -ttl-0.

Patch Information

The fix is published in vproxy Release v2.4.0 and tracked in GitHub Security Advisory GHSA-7h24-c332-p48c. The underlying code change is available in commit aa1bf64, which converts the TTL field to NonZeroU64 and adds regression tests.

Workarounds

  • Block requests where the decoded Proxy-Authorization username contains -ttl-0 at an upstream HTTP proxy or WAF.
  • Run vproxy under a process supervisor such as systemd with Restart=always to reduce downtime if a panic occurs before the patch is applied.
  • Limit proxy access to authenticated source networks via firewall rules until upgrade to 2.4.0 is complete.
bash
# Example systemd hardening to auto-restart vproxy on panic
[Service]
ExecStart=/usr/local/bin/vproxy run --config /etc/vproxy/config.toml
Restart=always
RestartSec=2s

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechVproxy

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.10%

  • 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-369
  • Technical References
  • GitHub Commit Update

  • GitHub Release v2.4.0

  • GitHub Security Advisory GHSA-7h24-c332-p48c
  • Latest CVEs
  • CVE-2025-52479: HTTP.jl & URIs.jl CRLF Injection Flaw

  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31743: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31744: Linux Kernel NULL Pointer 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