Jump to content

37 posts in this topic

Recommended Posts

Posted

Pixel Gun 3D Reversed webstore API

image.png

What is this?                                                                                                                                                                                                                                                                                                        So recently Pixel Gun 3D released their new webstore which allows players to purchase currency and other in game stuff from their browsers and they use xsolla's API. On their webstore, you can login to an account using only the ID that means you can login to anyone's account. Xsolla's API would return the authentication token which is the users data base64 decoded which contains the player's username. The webstore also allows you to claim free chests and simply by replicating the request in Python, you can automate the process of scraping user accounts and giving out free chests.

Example Usage                                                                                                                                                                                                                                                                                                                    

import api

# getting a token from user ID
token = api.getToken("297974059")
print("Token: " + token + "\n")

# getting a username from a token
username = api.getUsernameFromToken(token)
print("Username" + username + "\n")

# getting an email from a token, will only work if the user has bought something from the web store
email = api.getEmailFromToken(token)
print("Email: " + email + "\n")

# give free chest
status = api.freeChest(token)
print("Free chest status: " + str(status))

File Info:                                                                                                                                                                                                                                                                                                               example spam chests.py - Gives free chests to people by ID

example webhook.py - Simple player scraper that sends the players ID and username to a webhook

example table.py Another simple player data scraper but prints it out as a table

Download:

 

Hidden Content

React or reply to this topic to see the hidden content & download link. 👀

 

Hidden Content

React or reply to this topic to see the hidden content & download link. 👀

  • Like 156
  • Winner 7
  • Thanks 3
  • Haha 3
  • Agree 13
  • Informative 10

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines