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

CVE-2026-45090: Dalfox XSS Scanner DoS Vulnerability

CVE-2026-45090 is a denial-of-service vulnerability in Dalfox XSS scanner caused by writing to a closed channel. Attackers can crash the process remotely in server mode. This article covers technical details, affected versions, impact, and mitigation steps.

Published: May 28, 2026

CVE-2026-45090 Overview

CVE-2026-45090 is a race condition vulnerability in Dalfox, an open-source Cross-Site Scripting (XSS) scanner and automation utility. The flaw resides in ParameterAnalysis within pkg/scanning/parameterAnalysis.go, where two sequential worker stages write to the same results channel. The first stage closes the channel, but the second stage continues sending to it, triggering a Go runtime panic that crashes the entire dalfox process. The vulnerability affects versions prior to 2.13.0 and is fixed in 2.13.0.

Critical Impact

In server mode, unauthenticated remote attackers can crash the Dalfox process by submitting a request with a populated data field against any target that reflects at least one parameter.

Affected Products

  • Dalfox versions prior to 2.13.0
  • Dalfox server mode REST API with default configuration (no API key)
  • Any deployment exposing ParameterAnalysis with POST-body parameters enabled

Discovery Timeline

  • 2026-05-27 - CVE CVE-2026-45090 published to NVD
  • 2026-05-27 - Last updated in NVD database

Technical Details for CVE-2026-45090

Vulnerability Analysis

The vulnerability is a classic Go concurrency error categorized under [CWE-362] (Concurrent Execution using Shared Resource with Improper Synchronization). Dalfox's ParameterAnalysis function orchestrates two sequential worker stages that share a single results channel for output. After the first stage finishes processing query parameters, the code executes close(results) at line 438. The second stage, which handles POST-body parameters (dp), then launches with the same already-closed channel as its sink. When processParams detects a reflected parameter, it performs results <- paramResult on the closed channel. Sending on a closed channel is an unrecoverable runtime panic in Go, terminating the process immediately.

Root Cause

The root cause is improper channel lifecycle management across worker stages. The developer closed the shared channel after the first stage instead of deferring closure until all producers had finished writing. The second stage inherits an unusable channel reference, but the panic only manifests when reflection logic actually attempts a send, making the bug intermittent during normal scans.

Attack Vector

In server mode, Dalfox exposes a REST API that, by default, requires no API key. Any unauthenticated network-reachable caller can trigger the panic by submitting a scan request where options.Data is non-empty and the target reflects at least one parameter. Because the panic crashes the entire dalfox process, a single request can take down the scanner instance, denying service to all legitimate users until the process is restarted.

No verified proof-of-concept code is available. See the GitHub Security Advisory GHSA-2g4x-fq3j-cgq4 for upstream technical details.

Detection Methods for CVE-2026-45090

Indicators of Compromise

  • Unexpected termination of the dalfox server process with a Go runtime panic stack trace referencing send on closed channel
  • Stack traces pointing to pkg/scanning/parameterAnalysis.go and processParams
  • Repeated REST API requests containing a populated data field against reflective targets

Detection Strategies

  • Monitor dalfox process exit codes and restart frequency in deployments running server mode
  • Inspect REST API access logs for unauthenticated POST requests carrying scan options with non-empty data fields
  • Correlate process crashes with inbound API traffic timestamps to identify triggering requests

Monitoring Recommendations

  • Enable structured logging on the Dalfox REST API and forward to a centralized log platform
  • Alert on Go panic signatures containing send on closed channel in container or systemd journal output
  • Track availability of the Dalfox endpoint with synthetic health checks to detect outages early

How to Mitigate CVE-2026-45090

Immediate Actions Required

  • Upgrade Dalfox to version 2.13.0 or later, which contains the fix for the channel lifecycle issue
  • Restrict network exposure of the Dalfox REST API to trusted internal hosts only
  • Enable API key authentication on any Dalfox server-mode deployment that must remain reachable

Patch Information

The vulnerability is resolved in Dalfox 2.13.0. The fix corrects the channel close sequencing so that the shared results channel is no longer closed before the POST-body parameter worker stage completes its sends. Refer to the GitHub DalFox Release v2.13.0 notes for upgrade instructions.

Workarounds

  • Run Dalfox only in command-line mode and avoid server mode until the upgrade is applied
  • Place the Dalfox REST API behind a reverse proxy enforcing authentication and rate limits
  • Reject inbound API requests where the data field is populated by unauthenticated clients

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechDalfox

  • SeverityHIGH

  • CVSS Score7.5

  • 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-362
  • Technical References
  • GitHub DalFox Release v2.13.0

  • GitHub Security Advisory GHSA-2g4x-fq3j-cgq4
  • Related CVEs
  • CVE-2026-45089: Dalfox Path Traversal Vulnerability

  • CVE-2026-45088: Dalfox XSS Scanner File Read Vulnerability

  • CVE-2026-45087: Dalfox XSS Scanner RCE 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