Chiaki - PS4 Fake account hex to base 64
This file contains 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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# On a jailbroken PS4, install Apollo Save Tool, and activate a fake account in "User tools" | |
# https://github.com/bucanero/apollo-ps4 | |
# Close then relaunch Apollo and write down your account ID ( it's the hex string between parenthesis after your user name) | |
# E.G : > Activate Offline Account YourUserName (1a2b3c4d5e6f7a8b) | |
# Replace the content of the "user_id" string with your actual hex string, then run the script to generate the base64 | |
# encoded version of your account ID. | |
import base64 | |
user_id = "1a2b3c4d5e6f7a8b" | |
user_id_int = int( user_id, 16 ) | |
user_id_base64 = base64.b64encode(user_id_int.to_bytes(8, "little")).decode() | |
print( "Your 8 bytes, base64 encoded account ID is : " + str(user_id_base64)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See also : https://www.schnappy.xyz/?PS4-remote_play_without_psn_account
Run this code online : https://trinket.io/python3/ba2ff26973