CVE-2025-32422
Deferred Deferred - Pending Action
Denial of Service in AutoGPT via Unlimited File Downloads

Publication date: 2026-06-18

Last updated on: 2026-06-18

Assigner: GitHub, Inc.

Description
AutoGPT is a workflow automation platform for creating, deploying, and managing continuous artificial intelligence agents. Prior to 0.6.63, `StepThroughItemsBlock` can iterate all the contents in a list and send them to `FileStoreBlock` for downloading one by one. Although `FileStoreBlock` has access time limits for downloading files, `StepThroughItemsBlock` can be used to slowly iterate and download relatively small files (e.g., 100M) multiple times. `StepThroughItemsBlock` does not limit the number of loops. In addition, `FileStoreBlock` does not limit the amount of disk space consumed in the current working directory. When a malicious user chooses to download too many videos, the disk space will eventually run out, causing a DoS. Version 0.6.63 patches the issue.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-18
Last Modified
2026-06-18
Generated
2026-06-19
AI Q&A
2026-06-18
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 3 associated CPEs
Vendor Product Version / Range
autogpt autogpt to 0.6.63 (exc)
significant_gravitas autogpt_platform_beta to 0.6.63 (exc)
significant_gravitas autogpt_platform_beta 0.6.63
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-400 The product does not properly control the allocation and maintenance of a limited resource.
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Compliance Impact

The vulnerability in AutoGPT allows a malicious user to cause a Denial of Service (DoS) by exhausting disk space through uncontrolled resource consumption. While the provided information does not explicitly mention compliance with standards such as GDPR or HIPAA, such a DoS vulnerability could impact the availability and reliability of systems processing sensitive data, which is a key aspect of these regulations.

Specifically, regulations like GDPR and HIPAA require organizations to ensure the availability and integrity of personal and health data. A DoS attack that disrupts service availability could lead to non-compliance with these requirements, potentially resulting in data unavailability or interruption of critical services.

However, there is no direct mention in the provided resources about this vulnerability causing data breaches or unauthorized access, which are also critical compliance concerns.

Executive Summary

This vulnerability exists in the AutoGPT platform versions prior to 0.6.63 and involves two components: StepThroughItemsBlock and FileStoreBlock.

StepThroughItemsBlock can iterate through all items in a list and send them one by one to FileStoreBlock for downloading. However, StepThroughItemsBlock does not limit the number of iterations or loops.

FileStoreBlock has access time limits for downloading files but does not restrict the amount of disk space used in the current working directory.

A malicious user can exploit this by repeatedly downloading many relatively small files, which eventually exhausts the disk space, causing a Denial of Service (DoS).

Even if temporary directories are deleted after execution, a countdown timer can indefinitely delay completion, leading to persistent DoS.

Impact Analysis

This vulnerability can cause a Denial of Service (DoS) condition by exhausting the disk space on the system running AutoGPT.

If exploited, the system may become unresponsive or unable to perform other operations due to lack of available disk space.

This can disrupt workflow automation processes, potentially halting critical AI agent tasks and impacting business operations.

The DoS can be persistent because even after deleting temporary files, a countdown timer can indefinitely delay completion.

Detection Guidance

This vulnerability can be detected by monitoring disk space usage on the system where AutoGPT is running, especially if the version is prior to 0.6.63. Unusually high or rapidly increasing disk space consumption in the current working directory may indicate exploitation.

Additionally, monitoring the activity of the StepThroughItemsBlock component for excessive or repeated download loops can help identify potential exploitation attempts.

Suggested commands to detect this include:

  • Use disk space monitoring commands such as `df -h` or `du -sh <directory>` to check for abnormal disk usage.
  • Use process monitoring commands like `ps aux | grep AutoGPT` to identify running AutoGPT processes.
  • Check logs or implement custom logging to track the number of iterations or downloads performed by StepThroughItemsBlock.
Mitigation Strategies

The immediate mitigation step is to upgrade AutoGPT to version 0.6.63 or later, where the vulnerability has been patched.

Until the upgrade can be applied, monitor disk space closely and restrict the ability of users to initiate large or repeated downloads via StepThroughItemsBlock.

Implement resource usage limits or quotas on the directory used by FileStoreBlock to prevent disk space exhaustion.

Consider restricting or auditing user actions that involve downloading multiple files to detect and prevent abuse.

Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2025-32422. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart