CVE-2026-33718: OpenHands is Vulnerable to Command Injection through its Git Diff Handler

Published Mar 25, 2026
·
Updated

Summary

A Command Injection vulnerability exists in the getgitdiff() method at openhands/runtime/utils/githandler.py:134. The path parameter from the /api/conversations/{conversationid}/git/diff API endpoint is passed unsanitized to a shell command, allowing authenticated attackers to execute arbitrary commands in the agent sandbox. The user is already allowed to instruct the agent to execute commands, but this bypasses the normal channels.

---

Details

Vulnerable Code Path

The vulnerability flows through these files:

1. API Endpoint (openhands/server/routes/files.py:267-277) python @app.get('/git/diff') async def gitdiff( path: str, # <-- User input from HTTP request ... ): ... diff = await callsyncfromasync(runtime.getgitdiff, path, cwd) # No sanitization

2. Runtime (openhands/runtime/base.py:1231-1233) python def getgitdiff(self, filepath: str, cwd: str) -> dict[str, str]: self.githandler.setcwd(cwd) return self.githandler.getgitdiff(filepath) # Passed directly

3. Vulnerable Method (openhands/runtime/utils/githandler.py:10-12, 134) python Command template with placeholder GITDIFFCMD = 'python3 /openhands/code/openhands/runtime/utils/gitdiff.py "{filepath}"'

Line 134 - VULNERABLE: User input directly interpolated result = self.execute(self.gitdiffcmd.format(filepath=filepath), self.cwd)

4. Shell Execution (openhands/runtime/utils/gitdiff.py:25-27) python def run(cmd: str, cwd: str) -> str: result = subprocess.run( args=cmd, shell=True, # <-- Enables shell metacharacter interpretation stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=cwd )

Root Cause

The filepath parameter is directly interpolated into a shell command string using Python's .format() method without any sanitization. When this command is executed with shell=True, shell metacharacters like ", ;, and # are interpreted, allowing command injection.

Example: - Input: test"; id # - Constructed command: python3 /script.py "test"; id #" - Shell interprets as two commands: python3 /script.py "test" AND id

---

Impact

Who is Affected - All OpenHands deployments exposing the /api/conversations/{id}/git/diff endpoint - Any authenticated user can exploit this vulnerability,

Attack Capabilities An attacker can: 1. Execute arbitrary commands on the runtime container as root 2. Read sensitive files including .env, API keys, source code 3. Write arbitrary files to inject malicious code 4. Establish reverse shells for persistent access 5. Potentially escape the container if Docker is misconfigured

Mitigation

Users should update to the latest version of OpenHands that includes the changes from PR #13051. The fix replaces direct shell string formatting with proper argument array handling or rigorous path sanitization to prevent command chaining.

Other sources

OpenHands is software for AI-driven development. Starting in version 1.5.0, a Command Injection vulnerability exists in the getgitdiff() method at openhands/runtime/utils/githandler.py:134. The path parameter from the /api/conversations/{conversationid}/git/diff API endpoint is passed unsanitized to a shell command, allowing authenticated attackers to execute arbitrary commands in the agent sandbox. The user is already allowed to instruct the agent to execute commands, but this bypasses the normal channels. Version 1.5.0 fixes the issue.

MITRE

Affected Software

2 affected componentsFixes available
pip/openhands<1.5.0
1.5.0
OpenHands Openhands Python<1.5.0

Event History

Mar 25, 2026
Advisory Published
via GitHub·09:54 PM
Data Sourced
via GitHub·09:54 PM
DescriptionSeverityWeaknessAffected Software
Mar 27, 2026
CVE Published
via MITRE·12:12 AM
Data Sourced
via MITRE·12:12 AM
DescriptionSeverityWeakness
Data Sourced
via NVD·01:16 AM
DescriptionSeverityWeakness
Data Sourced
via NVD·01:16 AM
RemedyAffected Software
Free Weekly Intel

Don't miss critical vulnerabilities

Join thousands of security professionals who receive our weekly digest of trending CVEs, zero-days, and exploited vulnerabilities.

No spam. Unsubscribe anytime.

Frequently Asked Questions

1

What is the severity of CVE-2026-33718?

CVE-2026-33718 is considered a critical severity vulnerability due to its potential for command injection.

2

How do I fix CVE-2026-33718?

To fix CVE-2026-33718, upgrade to OpenHands version 1.5.0 or later where the vulnerability has been addressed.

3

What software is affected by CVE-2026-33718?

CVE-2026-33718 affects versions of OpenHands prior to 1.5.0.

4

What kind of attack does CVE-2026-33718 allow?

CVE-2026-33718 allows authenticated attackers to execute arbitrary commands on the server via the unsanitized path parameter.

5

Where in the code does CVE-2026-33718 exist?

CVE-2026-33718 is found in the get_git_diff() method in openhands/runtime/utils/git_handler.py at line 134.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203