Created
January 5, 2021 17:43
-
-
Save DataPools/d551ff24795c774f80f52333d3d831cc to your computer and use it in GitHub Desktop.
Uses https://github.com/leikoilja/glocaltokens to get android id and master token. Ensure you have done "pip install glocaltokens" first. Fill in the username and password variables and run using python3 get_master_token.py.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from glocaltokens.client import GLocalAuthenticationTokens | |
# Using google username and password | |
client = GLocalAuthenticationTokens( | |
# Do not include @gmail.com in your email. For example, if your email was [email protected], you would just write bob. | |
username='<Insert Email Here>', | |
password='<Insert Password Here>' | |
) | |
# Get android ID | |
print('[*] Android ID:', client._get_android_id()) | |
# Get master token | |
print('[*] Master token:', client.get_master_token()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment