Add ability to decrypt signature for vflxuxnEY/en_US/base.js

This commit is contained in:
Omar Roth
2018-02-03 14:41:59 -06:00
parent 859517e206
commit 1e2139d78c
2 changed files with 24 additions and 1 deletions

View File

@@ -163,3 +163,13 @@ def search(query, client)
end
end
end
def decrypt_signature(a)
a = a.split("");
a.delete_at(0..2)
a = a.reverse
c = a[0]
a[0] = a[49 % a.size]
a[49] = c
return a.join("")
end