OP 29 May, 2022 - 02:11 AM
(This post was last modified: 24 September, 2022 - 07:00 AM by oaz. Edited 7 times in total.
Edit Reason: Update library and post
)
Cracked-Authentication
Version: 1.0
Update Note:
How to install:
Examples:
Leave a like for more!
Dont like = Leecher = Ban!
Version: 1.0
Update Note:
Spoiler:
How to install:
Spoiler:
Examples:
Spoiler:
- Normal login.
from CrackedAuth import Cracked
data = Cracked(auth_key='Your auth')
if data.response[0] == 'succes':
print('Valid key!')
elif data.response[0] == 'error':
print('Invalid key')
else:
print('Other')
- Login and get account information
if data.response[0] == 'succes':
print('Valid key!')
info = data.response_data
username = info[0]
uuid = info[1]
posts = info[2]
likes = info[3]
groups = info[4]
elif data.response[0] == 'error':
print('Invalid key')
else:
print('Other')
data = Cracked(auth_key='Your auth')
if data.response[0] == 'succes':
print('Valid key!')
elif data.response[0] == 'error':
print('Invalid key')
else:
print('Other')
- Login and get account information
if data.response[0] == 'succes':
print('Valid key!')
info = data.response_data
username = info[0]
uuid = info[1]
posts = info[2]
likes = info[3]
groups = info[4]
elif data.response[0] == 'error':
print('Invalid key')
else:
print('Other')
Leave a like for more!
Dont like = Leecher = Ban!