Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2026-28363 — Security advisory detailing CVE-2026-28363, a critical RCE in OpenClaw, including technical analysis, CVSS metrics, and mitigation steps for defensive purposes. | Kitploit
Tools/GitHubGitHub/kaleth4/cve-2026-28363
Defensive ToolsVulnerability AnalysisExploitationLearning & EducationCurated Resources
GitHubkaleth4/cve-2026-28363

CVE-2026-28363

Security advisory detailing CVE-2026-28363, a critical RCE in OpenClaw, including technical analysis, CVSS metrics, and mitigation steps for defensive purposes.

View Repository
35 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

🔴 CVE-2026-28363 — Security Advisory

root@kitploit:~
██████╗██╗   ██╗███████╗    ██████╗  ██████╗ ██████╗  ██████╗
██╔════╝██║   ██║██╔════╝    ╚════██╗██╔═████╗╚════██╗ ██╔════╝
██║     ██║   ██║█████╗       █████╔╝██║██╔██║ █████╔╝ ███████╗
██║     ╚██╗ ██╔╝██╔══╝      ██╔═══╝ ████╔╝██║██╔═══╝  ██╔═══██╗
╚██████╗ ╚████╔╝ ███████╗    ███████╗╚██████╔╝███████╗ ╚██████╔╝
 ╚═════╝  ╚═══╝  ╚══════╝    ╚══════╝ ╚═════╝ ╚══════╝  ╚═════╝

CVE-2026-28363 · OpenClaw · CVSS 9.9 CRITICAL author:https://cxsecurity.com/issue/WLB-2026030004

Severity CVSS Status Affected

⚠️ NOTICE: This documentation is for informational and defensive security purposes only.
Malicious use of this information is illegal and contrary to professional ethics.


📋 Executive Summary


🎯 Vulnerability Description

The CVE-2026-28363 vulnerability resides in OpenClaw's tools.exec.safeBins validation logic. Specifically, the flaw is triggered when the sort command is used within the allowlist mode.

How does the flaw work?

root@kitploit:~
ATTACKER                     OPENCLAW SYSTEM               TARGET SYSTEM
   │                               │                               │
   │  sort --compress-prog=...     │                               │
   │──────────────────────────────>│                               │
   │                               │  ❌ Validation failed         │
   │                               │  (does not recognize abbreviation) │
   │                               │──────────────────────────────>│
   │                               │                               │ ⚠️ RCE

The system does not recognize abbreviations of GNU long options. For example:

  • ✅ --compress-program → recognized and correctly blocked
  • ❌ --compress-prog → NOT recognized, bypasses validation

This difference allows an attacker to execute arbitrary code on paths the system intended to protect, completely bypassing the allowlist mechanism.


📊 CVSS 3.1 Metrics

root@kitploit:~
Attack Vector (AV)      ████████████████████  NETWORK
Attack Complexity (AC)  ████░░░░░░░░░░░░░░░░  LOW
Privileges Required     ████░░░░░░░░░░░░░░░░  NONE
User Interaction (UI)   ████░░░░░░░░░░░░░░░░  NONE
Scope (S)               ████████████████████  CHANGED
Confidentiality (C)     ████████████████████  HIGH
Integrity (I)           ████████████████████  HIGH
Availability (A)        ████████████████████  HIGH

                        FINAL SCORE: 9.9 ████████████████████ CRITICAL

🛡️ Solution and Mitigation

✅ Primary Solution (RECOMMENDED)

Update immediately to OpenClaw 2026.2.23 or later.

root@kitploit:~
# With npm
npm update openclaw

# Verify installed version
npm list openclaw

# Update to specific version
npm install [email protected]

🔧 Temporary Mitigations

If updating is not possible immediately, apply the following measures in order of priority:

1. 🔍 Monitoring of Suspicious Events

Monitor calls to the sort command with abbreviated options:

root@kitploit:~
# Example audit rule (auditd)
auditctl -w /usr/bin/sort -p x -k openclaw_sort_watch

# Review logs in real time
ausearch -k openclaw_sort_watch -ts recent

2. 🔒 Host-Level Access Control

AppArmor — restrictive profile for OpenClaw:

root@kitploit:~
/usr/bin/sort {
  # Deny execution with --compress-prog*
  deny /usr/bin/* x,
}

SELinux — confinement policy:

root@kitploit:~
# Generate confinement policy for OpenClaw
ausearch -m avc -ts recent | audit2allow -M openclaw_policy
semodule -i openclaw_policy.pp

3. 📡 OpenClaw Security Monitor

Use the official OpenClaw Security Monitor tool to detect exploitation attempts in real time:

root@kitploit:~
# Start monitor in detection mode
openclaw-monitor --watch --alert-level critical --cve CVE-2026-28363

📦 Affected Versions

VersionStatusRequired Action
< 2026.2.23🔴 VULNERABLEUpdate urgently
>= 2026.2.23🟢 PATCHEDNo action needed

Main affected platform: OpenClaw for Node.js


🔗 References and Resources

ResourceLink
📄 NIST NVDnvd.nist.gov — CVE-2026-28363

🕒 Timeline

root@kitploit:~
Discovery ──────────────── Disclosure ──────────────── Patch
      │                               │                        │
  [Researcher]              [NIST / GHSA]             [v2026.2.23]
      │                               │                        │
      └───────────────────────────────┴────────────────────────┘
                      Responsible disclosure process

⚖️ Legal and Ethical Notice

This document is provided solely for educational and defensive purposes.
Exploiting this vulnerability on systems without explicit authorization constitutes a crime under multiple international legislations, including the Computer Fraud and Abuse Act (CFAA) in the U.S. and equivalent regulations in Latin America and Europe.

If you discover this vulnerability on a production system, report it responsibly to the corresponding security team.


Keep your systems updated. Security is everyone's responsibility. 🔐

Generated as part of a responsible security disclosure

Download Tool
FieldValue
CVE IDCVE-2026-28363
GHSAGHSA-3c6h-g97w-fg78
ProductOpenClaw (Node.js)
Affected versionsAll prior to 2026.2.23
Patched version2026.2.23 ✅
TypeRemote Code Execution (RCE)
CWECWE-184 — Incomplete List of Disallowed Inputs
CVSS Score9.9 / 10 — CRITICAL
VectorValueDescription
AVNetworkRemotely exploitable over the network
ACLowLow attack complexity
PRNoneNo prior privileges required
UINoneNo user interaction
SChangedImpacts beyond the vulnerable component
C/I/AHighTotal impact on confidentiality, integrity, and availability
🐙 GitHub AdvisoryGHSA-3c6h-g97w-fg78
🔬 OpenClaw CVE TrackerOfficial OpenClaw CVE tracking repository
📊 CVSS CalculatorCVSS 3.1 Calculator — FIRST