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
    • 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-27488

CVE-2026-27488: Openclaw Openclaw SSRF Vulnerability

CVE-2026-27488 is a Server-Side Request Forgery vulnerability in Openclaw Openclaw that allows webhook targets to reach internal endpoints bypassing security checks. This article covers technical details, affected versions, and patches.

Published: February 27, 2026

CVE-2026-27488 Overview

CVE-2026-27488 is a Server-Side Request Forgery (SSRF) vulnerability affecting OpenClaw, a personal AI assistant application. In versions 2026.2.17 and below, the Cron webhook delivery mechanism in src/gateway/server-cron.ts uses fetch() directly without implementing SSRF policy checks. This allows webhook targets to reach private, metadata, and internal endpoints that should be protected.

Critical Impact

Attackers can leverage the SSRF vulnerability to access internal services, cloud metadata endpoints, and private network resources by crafting malicious webhook URLs that bypass security controls.

Affected Products

  • OpenClaw versions 2026.2.17 and below
  • OpenClaw Node.js deployments with Cron webhook functionality enabled
  • All installations utilizing the src/gateway/server-cron.ts component

Discovery Timeline

  • 2026-02-21 - CVE-2026-27488 published to NVD
  • 2026-02-23 - Last updated in NVD database

Technical Details for CVE-2026-27488

Vulnerability Analysis

This vulnerability is classified under CWE-918 (Server-Side Request Forgery). The flaw exists in OpenClaw's gateway component where Cron-scheduled webhook deliveries are processed. When the application executes scheduled tasks that require webhook callbacks, the fetch() function is called directly on user-controllable webhook URLs without validating whether the target destination is an internal, private, or metadata endpoint.

The absence of SSRF protection allows an attacker to specify webhook URLs pointing to internal network addresses (e.g., 127.0.0.1, 169.254.169.254 for cloud metadata services, or internal hostnames). The server will then make requests to these destinations on behalf of the attacker, potentially exposing sensitive information or enabling further attacks against internal services.

Root Cause

The root cause of this vulnerability lies in the direct use of fetch() for webhook delivery without implementing an SSRF guard. The original implementation in src/gateway/server-cron.ts lacked URL validation and filtering mechanisms that would prevent requests to private IP ranges, localhost, cloud metadata endpoints, and other sensitive internal destinations.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker with the ability to configure webhook URLs within OpenClaw can set a malicious destination pointing to internal resources. When the Cron service triggers webhook delivery, the server executes the request, allowing the attacker to:

  1. Access cloud provider metadata services to steal credentials
  2. Probe internal network services for reconnaissance
  3. Interact with internal APIs not intended for external access
  4. Potentially pivot to other systems within the network
typescript
// Security patch in src/gateway/server-cron.ts
// Source: https://github.com/openclaw/openclaw/commit/99db4d13e5c139883ef0def9ff963e9273179655

 import { CronService } from "../cron/service.js";
 import { resolveCronStorePath } from "../cron/store.js";
 import { normalizeHttpWebhookUrl } from "../cron/webhook-url.js";
+import { formatErrorMessage } from "../infra/errors.js";
 import { runHeartbeatOnce } from "../infra/heartbeat-runner.js";
 import { requestHeartbeatNow } from "../infra/heartbeat-wake.js";
+import { fetchWithSsrFGuard } from "../infra/net/fetch-guard.js";
+import { SsrFBlockedError } from "../infra/net/ssrf.js";
 import { enqueueSystemEvent } from "../infra/system-events.js";
 import { getChildLogger } from "../logging.js";
 import { normalizeAgentId, toAgentStoreSessionKey } from "../routing/session-key.js";

The patch replaces direct fetch() calls with fetchWithSsrFGuard(), which validates URLs against an SSRF policy before making requests. The new SsrFBlockedError is introduced to handle blocked request attempts appropriately.

Detection Methods for CVE-2026-27488

Indicators of Compromise

  • Webhook configurations containing internal IP addresses (127.0.0.1, 10.x.x.x, 172.16.x.x, 192.168.x.x)
  • Webhook URLs targeting cloud metadata endpoints (169.254.169.254, metadata.google.internal)
  • Unusual outbound requests from the OpenClaw server to internal network addresses
  • Error logs indicating failed connections to internal services from the gateway component

Detection Strategies

  • Monitor webhook URL configurations for internal or reserved IP addresses
  • Implement network-level detection for requests from OpenClaw servers to metadata endpoints
  • Review Cron job logs for suspicious webhook destinations
  • Deploy web application firewall rules to detect SSRF patterns in webhook URLs

Monitoring Recommendations

  • Enable verbose logging on the src/gateway/server-cron.ts component to capture webhook destinations
  • Configure network segmentation alerts for unexpected traffic from application servers to internal networks
  • Implement DNS query logging to detect resolution of internal hostnames by external-facing services
  • Set up alerts for SsrFBlockedError exceptions after upgrading to the patched version

How to Mitigate CVE-2026-27488

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.19 or later immediately
  • Audit existing webhook configurations for malicious or internal URLs
  • Implement network-level controls to restrict outbound connections from OpenClaw servers
  • Review access logs for evidence of exploitation attempts

Patch Information

The vulnerability has been fixed in OpenClaw version 2026.2.19. The fix introduces fetchWithSsrFGuard() as a replacement for direct fetch() calls, implementing proper URL validation and blocking requests to private, internal, and metadata endpoints. Detailed information is available in the GitHub Security Advisory GHSA-w45g-5746-x9fp and the security patch commit.

Workarounds

  • Deploy network-level egress filtering to block requests to internal IP ranges and cloud metadata endpoints
  • Configure firewall rules to prevent the OpenClaw application from accessing sensitive internal services
  • Disable Cron webhook functionality if not required until the patch can be applied
  • Implement a reverse proxy with SSRF filtering capabilities in front of the OpenClaw gateway
bash
# Configuration example - Network-level SSRF mitigation using iptables
# Block outbound connections to private IP ranges from OpenClaw server

# Block localhost
iptables -A OUTPUT -d 127.0.0.0/8 -m owner --uid-owner openclaw -j DROP

# Block private networks
iptables -A OUTPUT -d 10.0.0.0/8 -m owner --uid-owner openclaw -j DROP
iptables -A OUTPUT -d 172.16.0.0/12 -m owner --uid-owner openclaw -j DROP
iptables -A OUTPUT -d 192.168.0.0/16 -m owner --uid-owner openclaw -j DROP

# Block cloud metadata endpoints
iptables -A OUTPUT -d 169.254.169.254/32 -m owner --uid-owner openclaw -j DROP

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 Score6.9

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:L/SA:L/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
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • GitHub Release v2026.2.19
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-w45g-5746-x9fp
  • Related CVEs
  • CVE-2026-34504: Openclaw SSRF Vulnerability

  • CVE-2026-32913: Openclaw SSRF Vulnerability

  • CVE-2026-31989: Openclaw SSRF Vulnerability

  • CVE-2026-22181: OpenClaw DNS Pinning SSRF Vulnerability
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