Mend.io Vulnerability Database
The largest open source vulnerability database
What is a Vulnerability ID?
New vulnerability? Tell us about it!
CVE-2026-45568
Published:May 20, 2026
Updated:May 20, 2026
Summary Alice exposes a Python SDK "ProxyShare" with a fixed target URL. Bob sends a request to the share with an absolute URL in the path. The Flask handler passes that path to "urllib.parse.urljoin", which replaces Alice's configured target host with Bob's host and returns the server-side response to Bob. Details The Python SDK proxy route accepts every path under the share: @app.route('/', defaults={'path': ''}, methods=['GET', 'POST', 'PUT', 'DELETE', 'PATCH', 'OPTIONS']) @app.route('/"path:path" (path:path)', methods=['GET', 'POST', 'PUT', 'DELETE', 'PATCH', 'OPTIONS']) def proxy(path): It constructs the outbound URL with "urljoin" and then sends the request: url = urllib.parse.urljoin(self.target, path) resp = requests.request( method=request.method, url=url, headers={key: value for (key, value) in request.headers if key.lower() not in HOP_BY_HOP_HEADERS}, data=request.get_data(), cookies=request.cookies, allow_redirects=False, stream=True, verify=self.verify_ssl ) When "path" is ""http://127.0.0.1:19190/metadata"" (http://127.0.0.1:19190/metadata%60), "urljoin(self.target, path)" returns ""http://127.0.0.1:19190/metadata"" (http://127.0.0.1:19190/metadata%60). The proxy sends the request to Bob's chosen URL rather than Alice's target.
Affected Packages
https://github.com/openziti/zrok.git (GITHUB):
Affected version(s) >=v0.4.47 <v2.0.3
Fix Suggestion:
Update to version v2.0.3
zrok (PYTHON):
Affected version(s) >=0.4.47 <2.0.3
Fix Suggestion:
Update to version 2.0.3
Do you need more information?
Contact Us
CVSS v4
Base Score:
9.9
Attack Vector
NETWORK
Attack Complexity
LOW
Attack Requirements
NONE
Privileges Required
NONE
User Interaction
NONE
Vulnerable System Confidentiality
HIGH
Vulnerable System Integrity
HIGH
Vulnerable System Availability
NONE
Subsequent System Confidentiality
HIGH
Subsequent System Integrity
HIGH
Subsequent System Availability
LOW
CVSS v3
Base Score:
10
Attack Vector
NETWORK
Attack Complexity
LOW
Privileges Required
NONE
User Interaction
NONE
Scope
CHANGED
Confidentiality
HIGH
Integrity
HIGH
Availability
NONE
Weakness Type (CWE)
Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal')