[utils] YoutubeDLCookieJar: Detect and reject JSON file (#3599)

Authored by: Lesmiscore
pull/3610/head
Lesmiscore 2 years ago committed by GitHub
parent 07689fc149
commit 94aa064497
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1507,6 +1507,10 @@ class YoutubeDLCookieJar(compat_cookiejar.MozillaCookieJar):
try:
cf.write(prepare_line(line))
except compat_cookiejar.LoadError as e:
if f'{line.strip()} '[0] in '[{"':
raise compat_cookiejar.LoadError(
'Cookies file must be Netscape formatted, not JSON. See '
'https://github.com/ytdl-org/youtube-dl#how-do-i-pass-cookies-to-youtube-dl')
write_string(f'WARNING: skipping cookie file entry due to {e}: {line!r}\n')
continue
cf.seek(0)

Loading…
Cancel
Save