Summary
CVE-2026-72922 is an improper authentication vulnerability (CWE-287) in the Significant-Gravitas AutoGPT platform’s webhook ingestion route. Versions prior to 0.6.70 select the webhook verification manager based on an untrusted URL path segment before confirming that the stored webhook actually belongs to that provider, allowing an attacker to bypass signature/secret verification and trigger webhook-driven graph executions with the webhook owner’s privileges. The flaw carries a CVSS v3.1 base score of 8.2 (High) and is remotely exploitable over the network with no authentication or user interaction required.
Technical details
- Root cause: The generic webhook ingress route calls
get_webhook_manager(provider)using the provider name taken directly from the URL path, and dispatches the request to that manager’s verification logic before checking that the stored webhook record’sproviderfield matches the URL-supplied provider. - Trigger conditions: An attacker who knows (or guesses) the ID of a webhook that is configured as a "generic" webhook (protected by an
X-Webhook-Secret) can resend the same request to an alternate provider path, e.g./compass/webhooks/{id}/ingress. - Attack vector: The Compass integration’s webhook manager implements a default no-op verifier that accepts arbitrary JSON payloads without validating any secret or signature, so routing a request through it entirely skips the secret check that the generic webhook was supposed to enforce.
- Impact: Successful exploitation lets an unauthenticated attacker invoke webhook-triggered automation graphs as if they were the legitimate webhook owner, resulting in unauthorized execution of automated workflows and integrity impact on affected agent graphs (no direct confidentiality/availability impact beyond limited data exposure, per the CVSS vector).
Affected software
- Significant-Gravitas AutoGPT (AutoGPT Platform) versions autogpt-platform-beta-v0.6.65 and earlier (i.e., all releases prior to 0.6.70)
Severity
- CVSS v3.1 Base Score: 8.2 (High)
- Vector:
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:H/A:N
Mitigation and recommended actions
- Immediate: Upgrade AutoGPT Platform to v0.6.70 or later, which fixes the provider-matching validation in the webhook ingress route so that the webhook manager is only selected after confirming the stored webhook’s provider matches the requested path.
- If immediate patching is not possible:
- Restrict network access to webhook ingress endpoints (e.g., via firewall/reverse-proxy allowlisting) to trusted source IPs only.
- Audit and rotate secrets for all configured generic webhooks, and review webhook-triggered graph execution logs for unexpected invocations across alternate provider paths.
- Disable or remove unused webhook integrations (particularly the Compass integration) until the platform is upgraded.

