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

CVE-2026-36045: picoclaw OS Command Injection Vulnerability

CVE-2026-36045 is an OS command injection flaw in picoclaw <=v0.1.2 affecting the ExecTool component. Attackers can bypass denylist restrictions to execute arbitrary commands. This article covers technical details, impact, and mitigation.

Published: May 28, 2026

CVE-2026-36045 Overview

CVE-2026-36045 is an OS command injection vulnerability [CWE-78] affecting picoclaw versions v0.1.2 and earlier. The flaw resides in the ExecTool component implemented in pkg/tools/shell.go. The guardCommand() function attempts to restrict shell command execution using a denylist of eight regular expressions, but the denylist is incomplete and can be bypassed. Attackers can craft commands that evade the denylist filters and reach the underlying shell interpreter. Successful exploitation allows execution of arbitrary operating system commands in the context of the picoclaw process.

Critical Impact

Remote attackers can bypass the denylist filter in guardCommand() to execute arbitrary OS commands through the ExecTool shell interface.

Affected Products

  • picoclaw v0.1.2
  • picoclaw versions earlier than v0.1.2
  • ExecTool component (pkg/tools/shell.go)

Discovery Timeline

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

Technical Details for CVE-2026-36045

Vulnerability Analysis

The vulnerability resides in the ExecTool component of picoclaw, defined in pkg/tools/shell.go. picoclaw exposes a shell execution tool intended to run controlled commands. To restrict dangerous input, the guardCommand() function applies a denylist composed of eight regular expressions before passing the command to the shell. Denylists are a fundamentally weak control because they enumerate known-bad patterns rather than enforcing a known-good grammar. Any pattern not represented in the eight regular expressions reaches the shell unrestricted. An attacker who identifies a permitted construct can inject shell metacharacters, command separators, or alternative encodings to execute arbitrary commands. The issue is classified under [CWE-78] OS Command Injection.

Root Cause

The root cause is reliance on a denylist of regular expressions in guardCommand() rather than safe command construction. The filter does not account for the full range of shell syntax constructs such as alternate separators, subshell invocations, environment variable expansion, and quoting tricks. Because the function returns the original command string to a shell interpreter, any bypass results in direct command execution.

Attack Vector

The attack vector is network-reachable interfaces that expose the ExecTool functionality. An unauthenticated attacker can submit a crafted command string that satisfies the eight denylist regular expressions but still triggers additional shell behavior. The vulnerability requires no user interaction and no privileges. Refer to the GitHub Gist proof of concept and the picoclaw v0.1.2 release notes for technical detail on the bypass patterns.

No verified exploitation code is published in the NVD entry. See the referenced
GitHub Gist for proof-of-concept payloads demonstrating denylist bypass against
the guardCommand() regular expressions.

Detection Methods for CVE-2026-36045

Indicators of Compromise

  • Unexpected child processes spawned by the picoclaw binary, such as /bin/sh, bash, curl, wget, or nc.
  • Outbound network connections initiated by picoclaw to attacker-controlled hosts.
  • Log entries in picoclaw showing commands containing shell metacharacters that were accepted by guardCommand().

Detection Strategies

  • Monitor process creation events where the parent process is picoclaw and the child is a shell interpreter or downloader utility.
  • Inspect picoclaw request logs for command strings containing characters such as `, $(), |, ;, &, or newline that should not appear in legitimate input.
  • Hunt for file writes and persistence artifacts in directories writable by the picoclaw service account.

Monitoring Recommendations

  • Forward picoclaw stdout, stderr, and audit logs to a centralized logging platform for retention and correlation.
  • Enable host-based process telemetry on systems running picoclaw to record parent-child process lineage.
  • Alert on egress traffic from the picoclaw host to non-approved destinations or on non-standard ports.

How to Mitigate CVE-2026-36045

Immediate Actions Required

  • Restrict network access to picoclaw so that only trusted clients can reach the ExecTool endpoint.
  • Run picoclaw under a dedicated low-privilege account and apply filesystem and capability restrictions.
  • Audit recent picoclaw logs for evidence of denylist bypass attempts and investigate any anomalies.

Patch Information

No fixed release is identified in the NVD entry at the time of publication. Versions v0.1.2 and earlier remain vulnerable. Monitor the picoclaw release page for an updated build that replaces the denylist in guardCommand() with safe command construction or a strict allowlist.

Workarounds

  • Disable the ExecTool component if it is not required for operational use.
  • Place picoclaw behind an authenticated reverse proxy and reject requests containing shell metacharacters at the proxy layer.
  • Apply container or sandbox isolation, such as seccomp or AppArmor profiles, to limit which binaries picoclaw can execute.
bash
# Example: restrict picoclaw to localhost and drop shell utilities from PATH
iptables -A INPUT -p tcp --dport <picoclaw_port> ! -s 127.0.0.1 -j DROP
systemctl edit picoclaw.service
# Add under [Service]:
#   NoNewPrivileges=true
#   ProtectSystem=strict
#   PrivateTmp=true
#   CapabilityBoundingSet=

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechPicoclaw

  • SeverityHIGH

  • CVSS Score7.3

  • EPSS Probability0.14%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-78
  • Technical References
  • GitHub Gist Resource

  • GitHub Release v0.1.2
  • Related CVEs
  • CVE-2026-6987: PicoClaw 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