A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2026-46430

CVE-2026-46430: Algernon Web Server DoS Vulnerability

CVE-2026-46430 is a denial of service vulnerability in Algernon web server where the SSE event server binds to all interfaces by default on Linux/macOS. This post covers technical details, affected versions, and mitigation.

Published: May 28, 2026

CVE-2026-46430 Overview

CVE-2026-46430 affects Algernon, a small self-contained pure-Go web server. Versions prior to 1.17.7 bind the Server-Sent Events (SSE) event server to 0.0.0.0:5553 by default on Linux and macOS systems. The platform-dependent host default in engine/flags.go:39-46 sets host = "" for non-Windows platforms, and utils.JoinHostPort("", ":5553") resolves to :5553. This exposes the SSE event server to any host that can reach the machine on the adjacent network. The vulnerability is tracked under [CWE-668: Exposure of Resource to Wrong Sphere] and is fixed in version 1.17.7.

Critical Impact

Adjacent network attackers can connect to the SSE event server intended for local use, resulting in low-impact confidentiality exposure of event stream data.

Affected Products

  • Algernon web server versions prior to 1.17.7 on Linux
  • Algernon web server versions prior to 1.17.7 on macOS
  • Algernon deployments using default SSE event server configuration

Discovery Timeline

  • 2026-05-26 - CVE-2026-46430 published to NVD
  • 2026-05-26 - Last updated in NVD database

Technical Details for CVE-2026-46430

Vulnerability Analysis

The vulnerability stems from an insecure default network binding in the Algernon web server. The SSE event server, intended for local communication with web clients, listens on all network interfaces rather than the loopback interface. Attackers on the same network segment can connect to TCP port 5553 and consume server-sent events. This exposes event stream data that developers expect to remain local to the host.

The attack requires adjacent network access according to the CVSS vector. No authentication or user interaction is required to establish a connection. The impact is limited to confidentiality of the event stream content.

Root Cause

The root cause sits in engine/flags.go:39-46, where the platform-dependent host default is set to an empty string for non-Windows platforms. When the code calls utils.JoinHostPort("", ":5553"), the resulting bind address resolves to :5553. In Go's net package, an empty host in a listen address binds to 0.0.0.0, which accepts connections on every available interface. Windows builds were unaffected because they used a different platform default that scoped the listener to localhost.

Attack Vector

An attacker positioned on the same local network as a host running Algernon can connect directly to TCP port 5553. The SSE endpoint streams events without performing origin checks or authentication on the underlying socket. Public Wi-Fi networks, shared cloud subnets, and untrusted office LANs are typical scenarios where this exposure becomes relevant. See the GitHub Security Advisory for further technical detail.

Detection Methods for CVE-2026-46430

Indicators of Compromise

  • Algernon process listening on 0.0.0.0:5553 instead of 127.0.0.1:5553 on Linux or macOS hosts
  • Unexpected inbound TCP connections to port 5553 from non-loopback source addresses
  • SSE event stream sessions originating from external or peer hosts in network flow logs

Detection Strategies

  • Run ss -tlnp | grep 5553 or lsof -iTCP:5553 -sTCP:LISTEN to confirm the SSE server bind address on Linux and macOS hosts
  • Compare installed Algernon binary version against 1.17.7 using algernon --version
  • Audit configuration management inventories for Algernon versions earlier than 1.17.7

Monitoring Recommendations

  • Alert on listening sockets on port 5553 bound to non-loopback addresses across managed endpoints
  • Capture network flow telemetry for inbound traffic to port 5553 from non-local sources
  • Track outbound SSE traffic patterns from Algernon hosts to identify unexpected subscribers

How to Mitigate CVE-2026-46430

Immediate Actions Required

  • Upgrade Algernon to version 1.17.7 or later on all Linux and macOS hosts
  • Restrict access to TCP port 5553 using host firewall rules until patching is complete
  • Inventory all systems running Algernon and verify the SSE listener bind address

Patch Information

The maintainers fixed this issue in Algernon 1.17.7 by correcting the platform-dependent host default so the SSE event server binds to the loopback interface on Linux and macOS. Review the GitHub Security Advisory GHSA-gj84-924c-48fx for release notes and patch references.

Workarounds

  • Block inbound connections to TCP port 5553 from non-loopback sources using iptables, nftables, or pf until the upgrade is applied
  • Run Algernon inside a network namespace or container that restricts external interface exposure
  • Place affected hosts behind a network segmentation boundary that limits adjacent network reachability
bash
# Example iptables rule restricting SSE port to loopback only
sudo iptables -A INPUT -p tcp --dport 5553 ! -i lo -j DROP

# Verify the SSE server bind address after upgrade
ss -tlnp | grep 5553

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechAlgernon

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-668
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-45728: Algernon Web Server Info Disclosure Flaw

  • CVE-2026-43981: Algernon Web Server Race Condition Flaw

  • CVE-2026-43982: Algernon Web Server Path Traversal Flaw

  • CVE-2026-48126: Algernon Web Server Path Traversal Flaw
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