Cyber Resilience

CVE-2024-1183

Open Redirect in Gradio Project Gradio 3.41.0 – 4.11.0

Public PoCOpen Redirect
Published
16 April 2024
Modified
29 July 2025
Patch / advisory
CVSS Score v3 6.5
Click a component to see what it means
Raw vectorCVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N
EPSS Score 0.018 76th percentile
Risk Priority 74 floored blend · peak EPSS

Summary

CVE-2024-1183 is a medium-severity Open Redirect (CWE-601) vulnerability in Gradio Project Gradio. Its CVSS base score is 6.5 (Medium).

Operationally, exploitation aligns with the MITRE ATT&CK technique Phishing (T1566); ranked in the top 24% of CVEs by exploit likelihood; it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

The strongest mitigations our analysis identified map to SI-10 (Information Input Validation) and AC-4 (Information Flow Enforcement) — see the control section below for these in your framework.

Deeper analysis AI-assisted summary

Synthesised by an AI model from the NVD description and linked references — a reading aid, not an authoritative source.

An SSRF vulnerability tracked as CVE-2024-1183 affects the Gradio web interface library in the gradio-app/gradio repository. The flaw resides in handling of the file parameter on GET requests, where insufficient validation permits an attacker to cause the server to issue requests to arbitrary internal destinations and infer port status from response headers or error messages such as “File not allowed.”

An unauthenticated remote attacker can exploit the issue by crafting requests that target internal hosts and ports; successful responses containing a Location header reveal open services, while error responses indicate closed or filtered ports. This enables network reconnaissance inside environments where the Gradio application is deployed, potentially exposing backend infrastructure that would otherwise be inaccessible from the public internet.

Public references point to a fix committed in the Gradio repository (commit 2ad3d9e) that restricts the file parameter to prevent arbitrary internal requests; the associated huntr.dev report confirms the patch addresses the SSRF vector.

The vulnerability occurs in a library widely used for machine-learning demo interfaces. EPSS scores reached a peak of 0.6567 and remain at 0.5505, indicating sustained exploitation interest after disclosure.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability Data

An SSRF (Server-Side Request Forgery) vulnerability exists in the gradio-app/gradio repository, allowing attackers to scan and identify open ports within an internal network. By manipulating the 'file' parameter in a GET request, an attacker can discern the status of internal…

more

ports based on the presence of a 'Location' header or a 'File not allowed' error in the response.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise Techniques

T1566 Phishing Initial Access
Adversaries may send phishing messages to gain access to victim systems.
Derived from this CVE’s CWE(s) via the direct CWE→ATT&CK cross-walk.

CVEs Like This One

CVE-2024-4940Same product: Gradio Project Gradio
CVE-2024-8021Same product: Gradio Project Gradio
CVE-2026-49119Same product: Gradio Project Gradio
CVE-2024-0964Same product: Gradio Project Gradio
CVE-2023-41626Same product: Gradio Project Gradio
CVE-2024-34510Same product: Gradio Project Gradio
CVE-2024-48052Same product: Gradio Project Gradio
CVE-2023-6572Same product: Gradio Project Gradio
CVE-2024-47867Same product: Gradio Project Gradio
CVE-2026-28415Same product: Gradio Project Gradio

Affected Assets

gradio project
gradio
3.41.0 — 4.11.0

Mitigating Controls

Control response

Prevent
Stop it (NIST 800-53)

Detect
Catch it (NIST detect / respond)

Harden
Shrink the surface (DISA STIG)

Validate
Prove the fix (OWASP ASVS)
  • V3.7.2

Mitigating Controls (NIST 800-53 r5) AI

Input validation directly checks and rejects untrusted redirect targets before they are used in a response.

Information flow enforcement can restrict redirects to only approved/trusted destinations, stopping untrusted user-supplied URLs from being followed.

Mitigating Controls (NIST CSF 2.0) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→CSF cross-walk (authority under review) — links open the control.

PR.PS-06 mostly match
prevents

Secure SDLC practices directly require input validation and untrusted-redirect controls that prevent CWE-601.

Mitigating Controls (ISO/IEC 27001:2022 Annex A) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→ISO cross-walk (authority under review) — links open the control.

mitigates

Preventing access to attacker-controlled or malicious sites stops users from being redirected to untrusted locations via open-redirect or phishing links.

References