mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[mixcloud] base64 decode before decryption
This commit is contained in:
		| @@ -163,7 +163,7 @@ class MixcloudIE(InfoExtractor): | |||||||
|  |  | ||||||
|             def decrypt_url(f_url): |             def decrypt_url(f_url): | ||||||
|                 for k in (key, 'IFYOUWANTTHEARTISTSTOGETPAIDDONOTDOWNLOADFROMMIXCLOUD'): |                 for k in (key, 'IFYOUWANTTHEARTISTSTOGETPAIDDONOTDOWNLOADFROMMIXCLOUD'): | ||||||
|                     decrypted_url = self._decrypt_xor_cipher(k, compat_b64decode(f_url)) |                     decrypted_url = self._decrypt_xor_cipher(k, f_url) | ||||||
|                     if re.search(r'^https?://[0-9a-z.]+/[0-9A-Za-z/.?=&_-]+$', decrypted_url): |                     if re.search(r'^https?://[0-9a-z.]+/[0-9A-Za-z/.?=&_-]+$', decrypted_url): | ||||||
|                         return decrypted_url |                         return decrypted_url | ||||||
|  |  | ||||||
| @@ -171,7 +171,7 @@ class MixcloudIE(InfoExtractor): | |||||||
|                 format_url = stream_info.get(url_key) |                 format_url = stream_info.get(url_key) | ||||||
|                 if not format_url: |                 if not format_url: | ||||||
|                     continue |                     continue | ||||||
|                 decrypted = decrypt_url(format_url) |                 decrypted = decrypt_url(compat_b64decode(format_url)) | ||||||
|                 if not decrypted: |                 if not decrypted: | ||||||
|                     continue |                     continue | ||||||
|                 if url_key == 'hlsUrl': |                 if url_key == 'hlsUrl': | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user