mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 07:50:11 +01:00
[core] Prevent RCE when using --exec
with %q
(CVE-2023-40581)
The shell escape function is now using `""` instead of `\"`. `utils.Popen` has been patched to properly quote commands. Prior to this fix using `--exec` together with `%q` when on Windows could cause remote code to execute. See https://github.com/yt-dlp/yt-dlp/security/advisories/GHSA-42h4-v29r-42qg for reference. Authored by: Grub4K
This commit is contained in:
parent
61bdf15fc7
commit
de015e9307
@ -93,5 +93,10 @@
|
|||||||
"action": "add",
|
"action": "add",
|
||||||
"when": "c1d71d0d9f41db5e4306c86af232f5f6220a130b",
|
"when": "c1d71d0d9f41db5e4306c86af232f5f6220a130b",
|
||||||
"short": "[priority] **The minimum *recommended* Python version has been raised to 3.8**\nSince Python 3.7 has reached end-of-life, support for it will be dropped soon. [Read more](https://github.com/yt-dlp/yt-dlp/issues/7803)"
|
"short": "[priority] **The minimum *recommended* Python version has been raised to 3.8**\nSince Python 3.7 has reached end-of-life, support for it will be dropped soon. [Read more](https://github.com/yt-dlp/yt-dlp/issues/7803)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"action": "add",
|
||||||
|
"when": "61bdf15fc7400601c3da1aa7a43917310a5bf391",
|
||||||
|
"short": "[priority] Security: [[CVE-2023-40581](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-40581)] [Prevent RCE when using `--exec` with `%q` on Windows](https://github.com/yt-dlp/yt-dlp/security/advisories/GHSA-42h4-v29r-42qg)\n - The shell escape function is now using `\"\"` instead of `\\\"`.\n - `utils.Popen` has been patched to properly quote commands."
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -784,9 +784,9 @@ def expect_same_infodict(out):
|
|||||||
test('%(title4)#S', 'foo_bar_test')
|
test('%(title4)#S', 'foo_bar_test')
|
||||||
test('%(title4).10S', ('foo "bar" ', 'foo "bar"' + ('#' if compat_os_name == 'nt' else ' ')))
|
test('%(title4).10S', ('foo "bar" ', 'foo "bar"' + ('#' if compat_os_name == 'nt' else ' ')))
|
||||||
if compat_os_name == 'nt':
|
if compat_os_name == 'nt':
|
||||||
test('%(title4)q', ('"foo \\"bar\\" test"', ""foo ⧹"bar⧹" test""))
|
test('%(title4)q', ('"foo ""bar"" test"', None))
|
||||||
test('%(formats.:.id)#q', ('"id 1" "id 2" "id 3"', '"id 1" "id 2" "id 3"'))
|
test('%(formats.:.id)#q', ('"id 1" "id 2" "id 3"', None))
|
||||||
test('%(formats.0.id)#q', ('"id 1"', '"id 1"'))
|
test('%(formats.0.id)#q', ('"id 1"', None))
|
||||||
else:
|
else:
|
||||||
test('%(title4)q', ('\'foo "bar" test\'', '\'foo "bar" test\''))
|
test('%(title4)q', ('\'foo "bar" test\'', '\'foo "bar" test\''))
|
||||||
test('%(formats.:.id)#q', "'id 1' 'id 2' 'id 3'")
|
test('%(formats.:.id)#q', "'id 1' 'id 2' 'id 3'")
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
import io
|
import io
|
||||||
import itertools
|
import itertools
|
||||||
import json
|
import json
|
||||||
|
import subprocess
|
||||||
import xml.etree.ElementTree
|
import xml.etree.ElementTree
|
||||||
|
|
||||||
from yt_dlp.compat import (
|
from yt_dlp.compat import (
|
||||||
@ -28,6 +29,7 @@
|
|||||||
InAdvancePagedList,
|
InAdvancePagedList,
|
||||||
LazyList,
|
LazyList,
|
||||||
OnDemandPagedList,
|
OnDemandPagedList,
|
||||||
|
Popen,
|
||||||
age_restricted,
|
age_restricted,
|
||||||
args_to_str,
|
args_to_str,
|
||||||
base_url,
|
base_url,
|
||||||
@ -2388,6 +2390,20 @@ def test_extract_basic_auth(self):
|
|||||||
assert extract_basic_auth('http://user:@foo.bar') == ('http://foo.bar', 'Basic dXNlcjo=')
|
assert extract_basic_auth('http://user:@foo.bar') == ('http://foo.bar', 'Basic dXNlcjo=')
|
||||||
assert extract_basic_auth('http://user:pass@foo.bar') == ('http://foo.bar', 'Basic dXNlcjpwYXNz')
|
assert extract_basic_auth('http://user:pass@foo.bar') == ('http://foo.bar', 'Basic dXNlcjpwYXNz')
|
||||||
|
|
||||||
|
@unittest.skipUnless(compat_os_name == 'nt', 'Only relevant on Windows')
|
||||||
|
def test_Popen_windows_escaping(self):
|
||||||
|
def run_shell(args):
|
||||||
|
stdout, stderr, error = Popen.run(
|
||||||
|
args, text=True, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
|
assert not stderr
|
||||||
|
assert not error
|
||||||
|
return stdout
|
||||||
|
|
||||||
|
# Test escaping
|
||||||
|
assert run_shell(['echo', 'test"&']) == '"test""&"\n'
|
||||||
|
# Test if delayed expansion is disabled
|
||||||
|
assert run_shell(['echo', '^!']) == '"^!"\n'
|
||||||
|
assert run_shell('echo "^!"') == '"^!"\n'
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
@ -30,7 +30,7 @@ def compat_etree_fromstring(text):
|
|||||||
if compat_os_name == 'nt':
|
if compat_os_name == 'nt':
|
||||||
def compat_shlex_quote(s):
|
def compat_shlex_quote(s):
|
||||||
import re
|
import re
|
||||||
return s if re.match(r'^[-_\w./]+$', s) else '"%s"' % s.replace('"', '\\"')
|
return s if re.match(r'^[-_\w./]+$', s) else s.replace('"', '""').join('""')
|
||||||
else:
|
else:
|
||||||
from shlex import quote as compat_shlex_quote # noqa: F401
|
from shlex import quote as compat_shlex_quote # noqa: F401
|
||||||
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import subprocess
|
|
||||||
|
|
||||||
from .common import PostProcessor
|
from .common import PostProcessor
|
||||||
from ..compat import compat_shlex_quote
|
from ..compat import compat_shlex_quote
|
||||||
from ..utils import PostProcessingError, encodeArgument, variadic
|
from ..utils import Popen, PostProcessingError, variadic
|
||||||
|
|
||||||
|
|
||||||
class ExecPP(PostProcessor):
|
class ExecPP(PostProcessor):
|
||||||
@ -27,10 +25,10 @@ def parse_cmd(self, cmd, info):
|
|||||||
def run(self, info):
|
def run(self, info):
|
||||||
for tmpl in self.exec_cmd:
|
for tmpl in self.exec_cmd:
|
||||||
cmd = self.parse_cmd(tmpl, info)
|
cmd = self.parse_cmd(tmpl, info)
|
||||||
self.to_screen('Executing command: %s' % cmd)
|
self.to_screen(f'Executing command: {cmd}')
|
||||||
retCode = subprocess.call(encodeArgument(cmd), shell=True)
|
_, _, return_code = Popen.run(cmd, shell=True)
|
||||||
if retCode != 0:
|
if return_code != 0:
|
||||||
raise PostProcessingError('Command returned error code %d' % retCode)
|
raise PostProcessingError(f'Command returned error code {return_code}')
|
||||||
return [], info
|
return [], info
|
||||||
|
|
||||||
|
|
||||||
|
@ -825,7 +825,7 @@ def _fix(key):
|
|||||||
_fix('LD_LIBRARY_PATH') # Linux
|
_fix('LD_LIBRARY_PATH') # Linux
|
||||||
_fix('DYLD_LIBRARY_PATH') # macOS
|
_fix('DYLD_LIBRARY_PATH') # macOS
|
||||||
|
|
||||||
def __init__(self, *args, env=None, text=False, **kwargs):
|
def __init__(self, args, *remaining, env=None, text=False, shell=False, **kwargs):
|
||||||
if env is None:
|
if env is None:
|
||||||
env = os.environ.copy()
|
env = os.environ.copy()
|
||||||
self._fix_pyinstaller_ld_path(env)
|
self._fix_pyinstaller_ld_path(env)
|
||||||
@ -835,7 +835,21 @@ def __init__(self, *args, env=None, text=False, **kwargs):
|
|||||||
kwargs['universal_newlines'] = True # For 3.6 compatibility
|
kwargs['universal_newlines'] = True # For 3.6 compatibility
|
||||||
kwargs.setdefault('encoding', 'utf-8')
|
kwargs.setdefault('encoding', 'utf-8')
|
||||||
kwargs.setdefault('errors', 'replace')
|
kwargs.setdefault('errors', 'replace')
|
||||||
super().__init__(*args, env=env, **kwargs, startupinfo=self._startupinfo)
|
|
||||||
|
if shell and compat_os_name == 'nt' and kwargs.get('executable') is None:
|
||||||
|
if not isinstance(args, str):
|
||||||
|
args = ' '.join(compat_shlex_quote(a) for a in args)
|
||||||
|
shell = False
|
||||||
|
args = f'{self.__comspec()} /Q /S /D /V:OFF /C "{args}"'
|
||||||
|
|
||||||
|
super().__init__(args, *remaining, env=env, shell=shell, **kwargs, startupinfo=self._startupinfo)
|
||||||
|
|
||||||
|
def __comspec(self):
|
||||||
|
comspec = os.environ.get('ComSpec') or os.path.join(
|
||||||
|
os.environ.get('SystemRoot', ''), 'System32', 'cmd.exe')
|
||||||
|
if os.path.isabs(comspec):
|
||||||
|
return comspec
|
||||||
|
raise FileNotFoundError('shell not found: neither %ComSpec% nor %SystemRoot% is set')
|
||||||
|
|
||||||
def communicate_or_kill(self, *args, **kwargs):
|
def communicate_or_kill(self, *args, **kwargs):
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user