Cyber Resilience

CVE-2023-40581

RCE in Yt-Dlp Project Yt-Dlp 2021.04.11 – 2023.09.24

Published
25 September 2023
Modified
21 November 2024
Patch / advisory
CVSS Score v3.1 8.3
Click a component to see what it means
Raw vectorCVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:H
EPSS Score 0.013 68th percentile
Risk Priority 69 floored blend · peak EPSS

Summary

CVE-2023-40581 is a high-severity OS Command Injection (CWE-78) vulnerability in Yt-Dlp Project Yt-Dlp. Its CVSS base score is 8.3 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Command and Scripting Interpreter (T1059); ranked in the top 32% of CVEs by exploit likelihood; it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

Deeper analysis AI-assisted summary

Synthesised by an AI model from the NVD description and linked references — a reading aid, not an authoritative source.

yt-dlp, a youtube-dl fork used for downloading media from online sources, contains a command-injection flaw in its handling of the --exec flag on Windows. The flag supports output-template expansion so that metadata fields can be inserted into shell commands, with a %q conversion intended to quote values safely for subprocess execution under cmd. Because the escaping logic fails to neutralize characters such as ", |, and &, an attacker-supplied value can break out of the intended command and execute arbitrary code. The issue was introduced when template expansion for --exec was added in version 2021.04.11 and affects all subsequent releases until the fix in 2023.09.24; it is present regardless of whether yt-dlp is launched from cmd or PowerShell.

An attacker who controls metadata returned by a remote site (for example, a crafted video title or description) can trigger the vulnerability when a Windows user invokes --exec with that untrusted data. Successful exploitation yields remote code execution with the privileges of the yt-dlp process, satisfying the high impact metrics recorded in the CVSS 8.3 vector.

The project’s security advisory and release notes recommend immediate upgrade to version 2023.09.24, which applies correct escaping for every special character (substituting \r for \n). Users unable to upgrade are advised to restrict --exec expansions to the literal {} filepath placeholder, to whitelist only safe metadata fields, or to export the info JSON and process fields outside the shell.

EPSS scores have remained near 0.13 with no material post-disclosure climb, and no confirmed in-the-wild exploitation has been reported.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability Data

yt-dlp is a youtube-dl fork with additional features and fixes. yt-dlp allows the user to provide shell command lines to be executed at various stages in its download steps through the `--exec` flag. This flag allows output template expansion in…

more

its argument, so that metadata values may be used in the shell commands. The metadata fields can be combined with the `%q` conversion, which is intended to quote/escape these values so they can be safely passed to the shell. However, the escaping used for `cmd` (the shell used by Python's `subprocess` on Windows) does not properly escape special characters, which can allow for remote code execution if `--exec` is used directly with maliciously crafted remote data. This vulnerability only impacts `yt-dlp` on Windows, and the vulnerability is present regardless of whether `yt-dlp` is run from `cmd` or from `PowerShell`. Support for output template expansion in `--exec`, along with this vulnerable behavior, was added to `yt-dlp` in version 2021.04.11. yt-dlp version 2023.09.24 fixes this issue by properly escaping each special character. `\n` will be replaced by `\r` as no way of escaping it has been found. It is recommended to upgrade yt-dlp to version 2023.09.24 as soon as possible. Also, always be careful when using --exec, because while this specific vulnerability has been patched, using unvalidated input in shell commands is inherently dangerous. For Windows users who are not able to upgrade: 1. Avoid using any output template expansion in --exec other than {} (filepath). 2. If expansion in --exec is needed, verify the fields you are using do not contain ", | or &. 3. Instead of using --exec, write the info json and load the fields from it instead.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise Techniques

T1059 Command and Scripting Interpreter Execution
Adversaries may abuse command and script interpreters to execute commands, scripts, or binaries.
T1059.003 Windows Command Shell Execution
Adversaries may abuse the Windows command shell for execution.
T1059.004 Unix Shell Execution
Adversaries may abuse Unix shell commands and scripts for execution.
T1059.001 PowerShell Execution
Adversaries may abuse PowerShell commands and scripts for execution.
T1190 Exploit Public-Facing Application Initial Access
Adversaries may attempt to exploit a weakness in an Internet-facing host or system to initially access a network.
Derived from this CVE’s CWE(s) via the direct CWE→ATT&CK cross-walk.

CVEs Like This One

CVE-2025-54072Same product: Yt-Dlp Project Yt-Dlp
CVE-2024-22423Same product: Yt-Dlp Project Yt-Dlp
CVE-2026-26331Same product: Yt-Dlp Project Yt-Dlp
CVE-2019-0232Same product: Microsoft Windows
CVE-2025-68154Same product: Microsoft Windows
CVE-2026-32948Same product: Microsoft Windows
CVE-2026-49402Same product: Microsoft Windows
CVE-2023-35174Same product: Microsoft Windows
CVE-2024-45720Same product: Microsoft Windows
CVE-2024-37391Same product: Microsoft Windows

Affected Assets

yt-dlp project
yt-dlp
2021.04.11 — 2023.09.24

Mitigating Controls

Control response

Prevent
Stop it (NIST 800-53)

Detect
Catch it (NIST detect / respond)

Harden
Shrink the surface (DISA STIG)

Validate
Prove the fix (OWASP ASVS)
  • V1.2.5
  • V1.2.8
  • V15.2.5

Likely Mitigating Controls AI

Per-CVE control mapping for this CVE has not run yet; the list below is derived from the weakness types (CWEs) cited in the NVD entry.

addresses: CWE-78

Platform-independent apps typically execute inside a managed runtime or sandbox that restricts direct OS command execution, reducing the ability to exploit OS command injection.

addresses: CWE-78

Validates inputs to block special elements that would alter OS command execution.

Mitigating Controls (NIST CSF 2.0) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→CSF cross-walk (authority under review) — links open the control.

PR.PS-06 mostly match
prevents

PR.PS-06's SDLC practices directly require secure coding and input handling that blocks command-injection defects, yet the single broad outcome leaves many specific neutralization vectors and verification gaps unaddressed.

PR.PS-02 partial match
prevents

Routine patching/maintenance can remediate known command-injection CVEs in dependencies (partial forward) but does nothing to stop developers from introducing improper neutralization in custom code (none reverse).

Mitigating Controls (ISO/IEC 27001:2022 Annex A) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→ISO cross-walk (authority under review) — links open the control.

finds

Security testing and code review target insecure use of operating-system command interfaces, catching command-injection flaws introduced during development.

References