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-2026-43582

CVE-2026-43582: OpenClaw SSRF Vulnerability

CVE-2026-43582 is a server-side request forgery flaw in OpenClaw that enables DNS rebinding attacks to bypass hostname validation and access internal resources. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-43582 Overview

CVE-2026-43582 is a server-side request forgery (SSRF) vulnerability in OpenClaw versions before 2026.4.10. The flaw resides in the browser navigation policy, where hostname validation can be bypassed through DNS rebinding attacks. Attackers exploit inconsistent hostname resolution between the validation step and the actual network request to reach internal resources via unallowlisted hostname URLs. The weakness is classified under CWE-367: Time-of-check Time-of-use (TOCTOU) Race Condition.

Critical Impact

Attackers can pivot from the OpenClaw browser navigation policy to internal network resources, exposing services that are not intended to be reachable from external callers.

Affected Products

  • OpenClaw versions prior to 2026.4.10
  • OpenClaw browser navigation policy component
  • Deployments relying on hostname allowlist validation in OpenClaw

Discovery Timeline

  • 2026-05-06 - CVE-2026-43582 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43582

Vulnerability Analysis

The vulnerability is a classic TOCTOU SSRF pattern. OpenClaw resolves a hostname once during policy validation and again when issuing the outbound request. An attacker controls a DNS server that returns different IP addresses across these two lookups. The first response satisfies the allowlist check, while the second response points the actual connection to an internal target.

This double-resolution pattern defeats hostname-based allowlisting because validation operates on a name, not on the resolved address used for the connection. The attacker must control DNS responses for a domain the target will resolve, and the attack requires precise timing to flip records between the two resolutions.

Root Cause

The root cause is a time-of-check to time-of-use race in the browser navigation policy. Hostname validation and the network connection use independent DNS resolutions rather than a single resolution result that is reused. The fix introduced in commit 121c452 addresses this gap, as documented in the OpenClaw GHSA-xq94-r468-qwgj advisory.

Attack Vector

The attack is network-based and requires the attacker to control an authoritative DNS server. The attacker registers a hostname pointing initially to a public, allowlisted IP. After OpenClaw validates the hostname, the attacker reconfigures DNS to return an internal address such as 127.0.0.1, 169.254.169.254, or RFC1918 ranges. OpenClaw then connects to the internal resource on behalf of the attacker. See the VulnCheck advisory for additional details on the exploitation flow.

Detection Methods for CVE-2026-43582

Indicators of Compromise

  • Outbound DNS queries from OpenClaw hosts to attacker-controlled domains followed by rapid TTL expirations
  • OpenClaw process connections to RFC1918, loopback, or cloud metadata addresses such as 169.254.169.254
  • Multiple DNS resolutions for the same hostname returning different IP families or address ranges within a short window

Detection Strategies

  • Correlate DNS resolution responses against subsequent TCP connection destinations from the OpenClaw process and alert on mismatches
  • Flag any hostname resolution where one answer is public and a near-simultaneous answer is private or link-local
  • Inspect navigation policy logs for requests to hostnames whose final resolved IP differs from the allowlist-validated IP

Monitoring Recommendations

  • Enable verbose logging in the OpenClaw browser navigation policy and ship logs to a centralized analytics platform
  • Monitor egress traffic from OpenClaw hosts to internal subnets and cloud metadata endpoints
  • Track DNS records with abnormally low TTLs requested by OpenClaw service accounts

How to Mitigate CVE-2026-43582

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.4.10 or later, which contains the fix from commit 121c452
  • Inventory all OpenClaw deployments and confirm version status before exposing them to untrusted input
  • Restrict OpenClaw network egress to only the destinations required for legitimate operation

Patch Information

The upstream fix is available in the OpenClaw commit 121c452 and described in the GitHub Security Advisory GHSA-xq94-r468-qwgj. Apply the patched release 2026.4.10 to remediate the SSRF.

Workarounds

  • Place OpenClaw behind an egress proxy that enforces IP-based allowlists rather than hostname-based rules
  • Block access from OpenClaw hosts to internal management ranges, loopback, and cloud metadata services at the network layer
  • Pin DNS resolution to a controlled resolver and cache results for the duration of each navigation policy decision and request
bash
# Configuration example: restrict OpenClaw egress with iptables
iptables -A OUTPUT -m owner --uid-owner openclaw -d 127.0.0.0/8 -j REJECT
iptables -A OUTPUT -m owner --uid-owner openclaw -d 10.0.0.0/8 -j REJECT
iptables -A OUTPUT -m owner --uid-owner openclaw -d 172.16.0.0/12 -j REJECT
iptables -A OUTPUT -m owner --uid-owner openclaw -d 192.168.0.0/16 -j REJECT
iptables -A OUTPUT -m owner --uid-owner openclaw -d 169.254.0.0/16 -j REJECT

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechOpenclaw

  • SeverityMEDIUM

  • CVSS Score4.9

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:P/PR:L/UI:N/VC:N/VI:N/VA:N/SC:H/SI:N/SA:N/E:X/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
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-367
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory

  • VulnCheck Advisory on SSRF
  • Related CVEs
  • CVE-2026-43573: OpenClaw SSRF Policy Bypass Vulnerability

  • CVE-2026-43527: Openclaw SSRF Vulnerability

  • CVE-2026-42439: OpenClaw SSRF Policy Bypass Vulnerability

  • CVE-2026-43526: Openclaw SSRF 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