CVE-2026-32036

OpenClaw gateway plugin versions prior to 2026.

Verified by Precogs Threat Research
Last Updated: Mar 20, 2026
Base Score
6.5MEDIUM

Executive Summary

CVE-2026-32036 is a medium severity vulnerability affecting ai-code, appsec. It is classified as CWE-289. Ensure your systems and dependencies are patched immediately to mitigate exposure risks.

Precogs AI Insight

"The root cause of this vulnerability lies in within OpenClaw gateway plugin versions prior, allowing a lack of rigorous type checking mechanisms. Adversaries commonly weaponize this defect by silently exfiltrate sensitive routing topologies and internal schemas. Precogs AI Security Platform provides comprehensive vulnerability detection to ensure strict authentication requirements are met."

Exploit Probability (EPSS)
Low (0.2%)
Public POC
Undisclosed
Exploit Probability
Low (<10%)
Public POC
Available
Affected Assets
ai codeappsecCWE-289

What is this vulnerability?

CVE-2026-32036 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 gateway plugin versions prior to 2026.2.26 contain a path traversal vulnerability that allows remote attackers to bypass route authentication chec...

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 Score6.5 (MEDIUM)
Vector StringCVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:H/A:N
PublishedMarch 19, 2026
Last ModifiedMarch 20, 2026
Related CWEsCWE-289

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
SourceUntrusted User Input
VectorInput flows through the application logic without sanitization
SinkExecution or Rendering Sink
ImpactApplication compromise, Logic Bypass, Data Exfiltration

Vulnerable Code Pattern

# ❌ VULNERABLE: Unsanitized Input Flow
def process_request(request):
    user_input = request.GET.get('data')
    # Taint sink: processing untrusted data
    execute_logic(user_input)
    return {"status": "success"}

Secure Code Pattern

# ✅ SECURE: Input Validation & Sanitization
def process_request(request):
    user_input = request.GET.get('data')
    
    # Sanitized boundary check
    if not is_valid_format(user_input):
        raise ValueError("Invalid input format")
        
    sanitized_data = sanitize(user_input)
    execute_logic(sanitized_data)
    return {"status": "success"}

How Precogs Detects This

Precogs AI Analysis Engine maps untrusted input directly to execution sinks to catch complex application security vulnerabilities.\n

Is your system affected?

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