2. Load Decipher Function Name - Linux13524/YoutubeDecipher GitHub Wiki
The JavaScript file is obfuscated; we need to find the correct decipher function name.
Needs: Decipher JavaScript file
Gives: Two char long function name
RegEx:
"signature",(\w\w)
RegEx Match (Group 1):
Two char long function name
Attention! Recently I got:
"signature", vo
Workaround:
(\w\w)=function\(\w+?\)\{\w=\w\.split\(""\).+?return\s\w\.join\(""\)\}
Searches for a function with split as first and join as last subfunction