CVE-2026-32055

OpenClaw versions prior to 2026.

Verified by Precogs Threat Research
Last Updated: Mar 21, 2026
Base Score
7.6HIGH

Executive Summary

CVE-2026-32055 is a high severity vulnerability affecting appsec, ai-code. It is classified as Path Traversal. Ensure your systems and dependencies are patched immediately to mitigate exposure risks.

Precogs AI Insight

"Architecturally, this flaw occurs due to within OpenClaw versions prior, allowing an architectural oversight in input validation. Adversaries commonly weaponize this defect by trigger a denial of service state, crashing critical operational components. Precogs AI Analysis Engine leverages inter-procedural taint tracking to intercept unsafe execution patterns."

Exploit Probability (EPSS)
Low (0.1%)
Public POC
Undisclosed
Exploit Probability
Elevated (52%)
Public POC
Available
Affected Assets
appsecai codeCWE-22

What is this vulnerability?

CVE-2026-32055 is categorized as a critical Path Traversal flaw. Based on our vulnerability intelligence, this issue occurs when the application fails to securely handle untrusted data boundaries.

OpenClaw versions prior to 2026.2.26 contain a path traversal vulnerability in workspace boundary validation that allows attackers to write files outside t...

This architectural defect enables adversaries to bypass intended security controls, directly manipulating the application's execution state or data layer. Immediate strategic intervention is required.

Risk Assessment

MetricValue
CVSS Base Score7.6 (HIGH)
Vector StringCVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:L
PublishedMarch 21, 2026
Last ModifiedMarch 21, 2026
Related CWEsCWE-22

Impact on Systems

Sensitive File Disclosure: Unauthorized access to critical configuration files (/etc/passwd, .env files, private SSH keys).

Application Source Leak: Attackers can download proprietary source code and hardcoded credentials.

Remote Code Execution: By combining with log poisoning, attackers can write PHP/JSP shells into web-accessible directories.

How to fix this issue?

Implement the following strategic mitigations immediately to eliminate the attack surface.

1. Indirect References Avoid using direct file paths. Utilize indirect references (like database IDs) mapped to backend files.

2. Strict Path Resolution If direct paths are required, resolve the absolute path and rigorously verify the path starts with the expected base directory using native OS path resolving functions.

3. Chroot Jails Confine the application processes to highly restricted directory structures (chroot) with minimum readable boundaries.

Vulnerability Signature

// Vulnerable File Access
import os
def get_image(request):
    filename = request.GET.get('file')
    # VULNERABLE: No validation preventing moving upwards in the directory tree
    filepath = os.path.join('/var/www/images/', filename)
    return open(filepath, 'rb').read()

// EXPLOIT PAYLOAD: ?file=../../../../../../../../etc/passwd

References and Sources

Vulnerability Code Signature

Attack Data Flow

StageDetail
SourceUser-supplied filename or path parameter
VectorPath manipulation using dot-dot-slash (../) sequences
SinkFile system read/write operation
ImpactUnauthorized access to sensitive files (e.g., /etc/passwd), directory traversal

Vulnerable Code Pattern

// ❌ VULNERABLE: Unvalidated path resolution
public File getFile(String filename) {
    String basePath = "/var/www/uploads/";
    // Taint sink: permits directory traversal via "../"
    return new File(basePath + filename);
}

Secure Code Pattern

// ✅ SECURE: Canonical path validation
public File getFile(String filename) throws IOException {
    File baseDir = new File("/var/www/uploads/").getCanonicalFile();
    File requestedFile = new File(baseDir, filename).getCanonicalFile();
    
    // Sanitized boundary check
    if (!requestedFile.getPath().startsWith(baseDir.getPath())) {
        throw new SecurityException("Path traversal attempt detected");
    }
    return requestedFile;
}

How Precogs Detects This

Precogs AI Analysis Engine utilizes semantic taint tracking to detect insecure path resolution sinks, ensuring file access is strictly bounded.\n

Related Vulnerabilitiesvia CWE-22

Is your system affected?

Precogs AI detects CVE-2026-32055 in compiled binaries, LLMs, and application layers — even without source code access.