-
Notifications
You must be signed in to change notification settings - Fork 29
Need a new 'solve_kahoot_challenge'. safeval.pw service no longer functional. #33
Description
The reason this program doesn't work anymore is due to this function solve_kahoot_challenge as the method he uses to decode the session token doesn't work anymore.
For anybody who is unfamiliar with the program, this is important for being able to establish a handshake with the server. The initial request we send will provide us with x-kahoot-session-token in the response header, but the response content also gives us a challenge, containing some javascript to run and get the remaining code (in addition to manipulating the bytes). msemple111 used an external service 'safeval.pw' to evaluate the challenge, but now that service is no longer available. And since we can't establish the handshake in the first place, the code will tell us that the game doesn't exist.
I have tried using python libraries such as js2py to accomplish the same thing, but the challenge includes an angular object that can't be used with these libraries.
I am hopeful that this can be fixed, as so far, the rest of the network protocols are fairly similar to how you described it.