Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-54376

CVE-2025-54376: Hoverfly Information Disclosure Flaw

CVE-2025-54376 is an information disclosure vulnerability in Hoverfly that exposes logs via an unprotected WebSocket endpoint. This article covers technical details, affected versions, impact, and mitigation.

Published: April 15, 2026

CVE-2025-54376 Overview

CVE-2025-54376 is an information disclosure vulnerability in Hoverfly, an open source API simulation tool. The vulnerability exists because the admin WebSocket endpoint /api/v2/ws/logs lacks the same authentication middleware that protects the REST admin API. This authentication bypass allows unauthenticated remote attackers to stream real-time application logs, potentially exposing internal file paths, request/response bodies, and other sensitive data emitted in logs.

Critical Impact

Unauthenticated attackers can access real-time application logs containing sensitive information including internal file paths, request/response bodies, and other confidential data without any authentication.

Affected Products

  • Hoverfly versions 1.11.3 and prior
  • All Hoverfly installations with exposed admin WebSocket endpoints
  • Systems using Hoverfly for API simulation with network-accessible admin interfaces

Discovery Timeline

  • 2025-09-10 - CVE-2025-54376 published to NVD
  • 2025-09-24 - Last updated in NVD database

Technical Details for CVE-2025-54376

Vulnerability Analysis

This vulnerability represents a classic authentication bypass scenario where a WebSocket endpoint was inadvertently excluded from the authentication controls applied to other administrative interfaces. The /api/v2/ws/logs endpoint provides real-time log streaming functionality, which is particularly dangerous when left unprotected because logs often contain sensitive operational data.

The root issue stems from inconsistent application of security controls across different communication protocols. While the REST API endpoints are properly protected by authentication middleware, the WebSocket endpoint for log streaming was not included in the same security boundary. This architectural oversight creates a direct path for attackers to access sensitive information without credentials.

Root Cause

The vulnerability is caused by missing authentication middleware on the WebSocket endpoint /api/v2/ws/logs. During development, the authentication controls were applied to REST API routes but the WebSocket handler for log streaming was not included in the same authentication chain. This represents CWE-200 (Exposure of Sensitive Information) and CWE-532 (Insertion of Sensitive Information into Log File) vulnerabilities combined with an authorization bypass.

Attack Vector

The attack vector is network-based and requires no user interaction or prior authentication. An attacker with network access to the Hoverfly admin interface can establish a WebSocket connection to the /api/v2/ws/logs endpoint and immediately begin receiving real-time log data. The attack is straightforward to execute:

  1. The attacker identifies a Hoverfly instance with an exposed admin interface
  2. The attacker initiates a WebSocket connection to the unprotected /api/v2/ws/logs endpoint
  3. Log messages containing potentially sensitive data stream to the attacker in real-time
  4. The attacker can passively collect information about internal paths, API requests, responses, and other operational data

The vulnerability requires no special tools beyond a WebSocket client, making it accessible to attackers with minimal technical sophistication.

Detection Methods for CVE-2025-54376

Indicators of Compromise

  • Unexpected WebSocket connections to /api/v2/ws/logs endpoint from untrusted IP addresses
  • High volume of WebSocket traffic to Hoverfly admin ports from external networks
  • Log access patterns from unauthenticated sessions or unknown clients
  • Network connections to Hoverfly admin interface from non-administrative hosts

Detection Strategies

  • Monitor WebSocket connection attempts to /api/v2/ws/logs without corresponding authenticated REST API sessions
  • Implement network-level detection rules for WebSocket upgrade requests to Hoverfly admin endpoints
  • Review access logs for connections originating from unexpected network segments
  • Deploy intrusion detection signatures for unauthenticated WebSocket handshakes to Hoverfly services

Monitoring Recommendations

  • Enable detailed access logging for all Hoverfly admin endpoints including WebSocket connections
  • Configure alerts for any external network access to Hoverfly administrative interfaces
  • Implement network segmentation monitoring to detect unauthorized access attempts to internal services
  • Regularly audit WebSocket connection logs for anomalous patterns or unknown client connections

How to Mitigate CVE-2025-54376

Immediate Actions Required

  • Upgrade Hoverfly to version 1.12.0 or later which contains the security fix
  • Restrict network access to Hoverfly admin interfaces using firewall rules or network segmentation
  • Audit current deployments to identify any exposed Hoverfly admin endpoints
  • Review logs for evidence of unauthorized access to the WebSocket endpoint prior to patching

Patch Information

The vulnerability has been addressed in Hoverfly version 1.12.0. The fix ensures that the WebSocket endpoint /api/v2/ws/logs is protected by the same authentication middleware used for REST API endpoints. The patch is available via the GitHub Commit Update. Additional details can be found in the GitHub Security Advisory.

Workarounds

  • Place Hoverfly admin interfaces behind a reverse proxy with authentication enabled
  • Implement network-level access controls to restrict admin endpoint access to trusted networks only
  • Use firewall rules to block external access to the Hoverfly admin port
  • Deploy Hoverfly in a private network segment not accessible from untrusted networks
bash
# Example: Restrict Hoverfly admin access using iptables
# Allow only trusted admin network (192.168.1.0/24) to access admin port 8888
iptables -A INPUT -p tcp --dport 8888 -s 192.168.1.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 8888 -j DROP

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechHoverfly

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.19%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:L/VA:N/SC:N/SI:N/SA:N/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-200

  • CWE-532
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2025-54123: Hoverfly Command Injection RCE 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