Summary
CVE-2026-72536 is a missing authentication vulnerability (CWE-306) in Chaskiq, an open-source live chat, customer support, and marketing platform. The flaw resides in the stripeCreateIntent GraphQL mutation, which lacks any authentication or authorization checks, allowing unauthenticated remote attackers to manipulate any tenant’s Stripe subscription and billing state. The issue carries a CVSS v3.1 base score of 8.2 (High).
Technical details
- Root cause: The
stripeCreateIntentGraphQL mutation in Chaskiq does not enforce authentication or per-tenant authorization before processing requests. - Trigger conditions: An attacker sends a crafted GraphQL request invoking the
stripeCreateIntentmutation against an exposed Chaskiq instance; no valid session, API key, or credentials are required. - Attack vector: Network-based (AV:N), low attack complexity (AC:L), no privileges required (PR:N), no user interaction (UI:N) — the mutation is reachable directly over the exposed GraphQL endpoint.
- Impact: Because the mutation is tenant-scoped functionality that is missing access control, an attacker can create Stripe payment intents and alter subscription/billing data belonging to any tenant on the instance, resulting in low confidentiality impact, high integrity impact, and low availability impact.
Affected software
- Chaskiq, all versions through commit
46dfdd1(i.e., versions "0 through 46dfdd1" as recorded in the official CVE entry).
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:L
Mitigation and recommended actions
- Immediate: No vendor-published patched release or official security advisory is currently available beyond the CVE record itself. Organizations running Chaskiq should track the upstream project repository for a fix that adds authentication/authorization checks to the
stripeCreateIntentGraphQL mutation, and update to a patched commit/release as soon as one is published. - If no patch is available:
- Restrict or disable public access to the Chaskiq GraphQL endpoint (e.g., place it behind authentication at the reverse proxy/API gateway layer, or restrict to trusted networks/VPN).
- Apply GraphQL query allow-listing or disable introspection/unused mutations, including
stripeCreateIntent, if not actively required from unauthenticated contexts. - Monitor Stripe account activity and webhook logs for unexpected payment intent creation or subscription changes tied to Chaskiq tenants.
- Rotate and tightly scope Stripe API keys used by the Chaskiq integration, and enable Stripe-side alerting for anomalous intent creation.
- Consider isolating the Chaskiq instance behind a WAF or authentication proxy until an upstream fix is confirmed and deployed.

