CVE-2026-50574: yt-dlp: Arbitrary code execution via manifest downloads with aria2c
Summary If aria2c is used as an external downloader for a fragmented manifest format (such as an HLS/DASH stream), yt-dlp passes insufficiently sanitized input to aria2c that allows an attacker to perform an arbitrary file write. On Windows platforms, this can lead to immediate arbitrary code execution. On non-Windows platforms, this can lead to arbitrary code execution upon the next invocation of yt-dlp.
Details When downloading a fragmented manifest format such as an HLS or DASH stream, yt-dlp first extracts a list of all fragment URLs from the stream's manifest. If the user has selected aria2c as an external downloader, yt-dlp then constructs an input file for aria2c from the fragment URL list and passes its filepath as the argument to aria2c's -i option.
aria2c's -i (or --input-file) option allows for downloading a list of URIs from the given text file. The text file must be formatted as a list of URIs separated by newlines. aria2c's format permits configuration lines for each URI, which can contain command-line options to be given to aria2c. These optional lines follow each URI line and are signified only by leading whitespace. yt-dlp constructs the input file with these optional lines so that it's able to specify the output filename for each fragment using the out= option.
yt-dlp's utilization of the aria2c input file format presents two known attack vectors:
1. An attacker can craft a malicious DASH manifest with one or more fragment URLs that contain , which is the HTML escape sequence for a newline. yt-dlp interprets this escape sequence as an actual newline character when writing the fragment URLs to the aria2c input file, which allows for an attacker to inject arbitrary aria2c options into the input file. With option injection, the attacker can achieve arbitrary file writes. This attack vector is possible only via downloads of DASH formats, since their manifests are an XML format which necessitates unescaping of HTML special characters.
2. An attacker can craft a malicious metadata response where the data parsed by yt-dlp as the title field (or any other metadata field that the user includes in their output template) contains strategically placed newlines and magnet URIs. If the user has passed the --no-windows-filename option to disable sanitization of newlines in output filenames, the attacker is able to achieve arbitrary file writes by injecting arbitrary URIs and options into the aria2c input file. This attack vector is possible via downloads of both HLS and DASH formats.
On Windows, attacker-controlled file writes can lead to immediate arbitrary code execution: the attacker could write a malicious executable file named ffmpeg.exe to the current working directory, and it could be invoked during the postprocessing stage if the user's yt-dlp.exe also resides in the current working directory.
On all platforms, attacker-controlled file writes can lead to arbitrary code execution on repeat invocations of yt-dlp: the attacker could write a yt-dlp configuration file (yt-dlp.conf) to the current working directory containing a malicious --exec argument.
Patches yt-dlp version 2026.06.09 fixes this issue by removing support for downloading fragmented manifest formats with aria2c.
Workarounds It is recommended to upgrade yt-dlp to version 2026.06.09 as soon as possible.
For users who are not able to upgrade:
- Add --downloader dash,m3u8:native to your yt-dlp command.
Other sources
yt-dlp is a command-line audio/video downloader. Prior to 2026.06.09, if aria2c is used as an external downloader for a fragmented manifest format (such as an HLS/DASH stream), yt-dlp passes insufficiently sanitized input to aria2c that allows an attacker to perform an arbitrary file write. On Windows platforms, this can lead to immediate arbitrary code execution. On non-Windows platforms, this can lead to arbitrary code execution upon the next invocation of yt-dlp. This vulnerability is fixed in 2026.06.09.
— MITRE
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
pip/yt-dlpto a version that resolves this vulnerability.Fixed in 2026.6.9 - Upgrade
Upgrade
yt-dlpto a version that resolves this vulnerability.Fixed in 2026.06.09 - Configuration
Use the workaround by adding `--downloader dash,m3u8:native` to the yt-dlp command to prevent aria2c from being used for DASH/HLS fragmented manifests.
yt-dlp --downloader = dash,m3u8:native - Compensating control
If upgrading yt-dlp is not possible, avoid using aria2c as an external downloader for fragmented manifest formats (e.g., HLS/DASH).
Event History
Frequently Asked Questions
What is the severity of CVE-2026-50574?
CVE-2026-50574 has a high severity rating of 8.3.
How do I fix CVE-2026-50574?
To fix CVE-2026-50574, update to the latest version of yt-dlp that resolves this vulnerability.
What type of attack does CVE-2026-50574 enable?
CVE-2026-50574 enables an attacker to perform arbitrary file writes when utilizing aria2c with yt-dlp.
Is my system at risk with CVE-2026-50574?
Yes, users of yt-dlp utilizing aria2c as an external downloader on Windows platforms are at risk of CVE-2026-50574.
What platforms are affected by CVE-2026-50574?
CVE-2026-50574 primarily affects Windows platforms when using yt-dlp with aria2c.