-
Notifications
You must be signed in to change notification settings - Fork 163
Way to download levels from official server #263
Comments
And as far as I understand, the main problem is that you are blocked from the servers. Maybe in this case it is better to send all requests from the client side. |
You can't move requests to client side because of CORS policy (as far as I know) |
What if you use a proxy to change the server address for each request? |
@iwalfy One small note: I understand why you censored the secret, but it's just a word that's used and can find in: |
Another small note: it's easier to use gdbrowser locally than do all that stuff |
I didn't know this at the time. |
First run Wireshark and catch
secret
field of any user.Then make HTTP POST request to
http://www.boomlings.com/database/downloadGJLevel22.php
that contains:Important to specify an empty
User-Agent
header otherwise Cloudflare will block us.curl example:
curl -X POST "http://www.boomlings.com/database/downloadGJLevel22.php" -d "gameVersion=21&binaryVersion=35&gdw=0&levelID=1389451&secret=XXXXXXX" -H 'User-Agent:'
#RobUseHTTPS
The text was updated successfully, but these errors were encountered: