mirror of
https://silica.codes/BedrockReverse/PyFab.git
synced 2025-04-06 05:05:43 +12:00
oops
This commit is contained in:
parent
7072ca4634
commit
fc83130413
1 changed files with 164 additions and 168 deletions
332
PlayFab.py
332
PlayFab.py
|
@ -1,169 +1,165 @@
|
||||||
import requests
|
import requests
|
||||||
import os
|
import os
|
||||||
import json
|
import json
|
||||||
import binascii
|
import binascii
|
||||||
import base64
|
import base64
|
||||||
import struct
|
import struct
|
||||||
import hashlib
|
import hashlib
|
||||||
import datetime
|
import datetime
|
||||||
|
|
||||||
from cryptography.hazmat.primitives.asymmetric import rsa
|
from cryptography.hazmat.primitives.asymmetric import rsa
|
||||||
from cryptography.hazmat.primitives.asymmetric import padding
|
from cryptography.hazmat.primitives.asymmetric import padding
|
||||||
|
|
||||||
# Production PlayFab Environment
|
# Production PlayFab Environment
|
||||||
TITLE_ID = "20CA2"
|
TITLE_ID = "20CA2"
|
||||||
TITLE_SHARED_SECRET = "S8RS53ZEIGMYTYG856U3U19AORWXQXF41J7FT3X9YCWAC7I35X"
|
TITLE_SHARED_SECRET = "S8RS53ZEIGMYTYG856U3U19AORWXQXF41J7FT3X9YCWAC7I35X"
|
||||||
|
|
||||||
# Internal PlayFab Environment
|
PLAYFAB_HEADERS = {
|
||||||
#TITLE_ID = "E9D1"
|
"User-Agent": "libhttpclient/1.0.0.0",
|
||||||
#TITLE_SHARED_SECRET = "RX4U3XF1KAG8W6WOOTUKO4BY1P4Z48UMHWEND7KSJHDIKCIWD6"
|
"Content-Type": "application/json",
|
||||||
|
"Accept-Language": "en-US"
|
||||||
PLAYFAB_HEADERS = {
|
}
|
||||||
"User-Agent": "libhttpclient/1.0.0.0",
|
|
||||||
"Content-Type": "application/json",
|
PLAYFAB_SESSION = requests.Session()
|
||||||
"Accept-Language": "en-US"
|
PLAYFAB_SESSION.headers.update(PLAYFAB_HEADERS)
|
||||||
}
|
|
||||||
|
PLAYFAB_DOMAIN = "https://" + TITLE_ID.lower() + ".playfabapi.com"
|
||||||
PLAYFAB_SESSION = requests.Session()
|
|
||||||
PLAYFAB_SESSION.headers.update(PLAYFAB_HEADERS)
|
SETTING_FILE = "settings.json"
|
||||||
|
PLAYFAB_SETTINGS = {}
|
||||||
PLAYFAB_DOMAIN = "https://" + TITLE_ID.lower() + ".playfabapi.com"
|
|
||||||
|
def sendPlayFabRequest(endpoint, data, hdrs={}):
|
||||||
SETTING_FILE = "settings.json"
|
rsp = PLAYFAB_SESSION.post(PLAYFAB_DOMAIN+endpoint, json=data, headers=hdrs).json()
|
||||||
PLAYFAB_SETTINGS = {}
|
if rsp['code'] != 200:
|
||||||
|
print(rsp)
|
||||||
def sendPlayFabRequest(endpoint, data, hdrs={}):
|
else:
|
||||||
rsp = PLAYFAB_SESSION.post(PLAYFAB_DOMAIN+endpoint, json=data, headers=hdrs).json()
|
return rsp['data']
|
||||||
if rsp['code'] != 200:
|
|
||||||
print(rsp)
|
def genCustomId():
|
||||||
else:
|
return "MCPF"+binascii.hexlify(os.urandom(16)).decode("UTF-8").upper()
|
||||||
return rsp['data']
|
|
||||||
|
def genPlayerSecret():
|
||||||
def genCustomId():
|
return base64.b64encode(os.urandom(32)).decode("UTF-8")
|
||||||
return "MCPF"+binascii.hexlify(os.urandom(16)).decode("UTF-8").upper()
|
|
||||||
|
def getMojangCsp():
|
||||||
def genPlayerSecret():
|
return base64.b64decode(sendPlayFabRequest("/Client/GetTitlePublicKey", {
|
||||||
return base64.b64encode(os.urandom(32)).decode("UTF-8")
|
"TitleId":TITLE_ID,
|
||||||
|
"TitleSharedSecret": TITLE_SHARED_SECRET
|
||||||
def getMojangCsp():
|
})['RSAPublicKey'])
|
||||||
return base64.b64decode(sendPlayFabRequest("/Client/GetTitlePublicKey", {
|
|
||||||
"TitleId":TITLE_ID,
|
def importCspKey(csp):
|
||||||
"TitleSharedSecret": TITLE_SHARED_SECRET
|
e = struct.unpack("I", csp[0x10:0x14])[0]
|
||||||
})['RSAPublicKey'])
|
n = bytearray(csp[0x14:])
|
||||||
|
n.reverse()
|
||||||
def importCspKey(csp):
|
n = int(binascii.hexlify(n), 16)
|
||||||
e = struct.unpack("I", csp[0x10:0x14])[0]
|
return rsa.RSAPublicNumbers(e, n).public_key()
|
||||||
n = bytearray(csp[0x14:])
|
|
||||||
n.reverse()
|
|
||||||
n = int(binascii.hexlify(n), 16)
|
|
||||||
return rsa.RSAPublicNumbers(e, n).public_key()
|
def genPlayFabTimestamp():
|
||||||
|
return datetime.datetime.now().isoformat()+"Z"
|
||||||
|
|
||||||
|
def genPlayFabSignature(requestBody, timestamp):
|
||||||
def genPlayFabTimestamp():
|
sha256 = hashlib.sha256()
|
||||||
return datetime.datetime.now().isoformat()+"Z"
|
sha256.update(requestBody.encode("UTF-8") + b"." + timestamp.encode("UTF-8") + b"." + configGet("PLAYER_SECRET").encode("UTF-8"))
|
||||||
|
return base64.b64encode(sha256.digest())
|
||||||
def genPlayFabSignature(requestBody, timestamp):
|
|
||||||
sha256 = hashlib.sha256()
|
def configGet(key):
|
||||||
sha256.update(requestBody.encode("UTF-8") + b"." + timestamp.encode("UTF-8") + b"." + configGet("PLAYER_SECRET").encode("UTF-8"))
|
global PLAYFAB_SETTINGS
|
||||||
return base64.b64encode(sha256.digest())
|
if key in PLAYFAB_SETTINGS:
|
||||||
|
return PLAYFAB_SETTINGS[key]
|
||||||
def configGet(key):
|
return None
|
||||||
global PLAYFAB_SETTINGS
|
|
||||||
if key in PLAYFAB_SETTINGS:
|
|
||||||
return PLAYFAB_SETTINGS[key]
|
def configSet(key, newValue):
|
||||||
return None
|
global PLAYFAB_SETTINGS
|
||||||
|
if os.path.exists(SETTING_FILE):
|
||||||
|
PLAYFAB_SETTINGS = json.loads(open(SETTING_FILE, "r").read())
|
||||||
def configSet(key, newValue):
|
|
||||||
global PLAYFAB_SETTINGS
|
PLAYFAB_SETTINGS[key] = newValue
|
||||||
if os.path.exists(SETTING_FILE):
|
open(SETTING_FILE, "w").write(json.dumps(PLAYFAB_SETTINGS))
|
||||||
PLAYFAB_SETTINGS = json.loads(open(SETTING_FILE, "r").read())
|
return newValue
|
||||||
|
|
||||||
PLAYFAB_SETTINGS[key] = newValue
|
def LoginWithCustomId():
|
||||||
open(SETTING_FILE, "w").write(json.dumps(PLAYFAB_SETTINGS))
|
global TITLE_ID
|
||||||
return newValue
|
|
||||||
|
customId = configGet("CUSTOM_ID")
|
||||||
def LoginWithCustomId():
|
playerSecret = configGet("PLAYER_SECRET")
|
||||||
global TITLE_ID
|
createNewAccount = False
|
||||||
|
|
||||||
customId = configGet("CUSTOM_ID")
|
if customId == None:
|
||||||
playerSecret = configGet("PLAYER_SECRET")
|
customId = genCustomId()
|
||||||
createNewAccount = False
|
createNewAccount = True
|
||||||
|
|
||||||
if customId == None:
|
if playerSecret == None:
|
||||||
customId = genCustomId()
|
playerSecret = genPlayerSecret()
|
||||||
createNewAccount = True
|
createNewAccount = True
|
||||||
|
|
||||||
if playerSecret == None:
|
configSet("CUSTOM_ID", customId)
|
||||||
playerSecret = genPlayerSecret()
|
configSet("PLAYER_SECRET", playerSecret)
|
||||||
createNewAccount = True
|
|
||||||
|
payload = {
|
||||||
configSet("CUSTOM_ID", customId)
|
"CreateAccount" : None,
|
||||||
configSet("PLAYER_SECRET", playerSecret)
|
"CustomId": None,
|
||||||
|
"EncryptedRequest" : None,
|
||||||
payload = {
|
"InfoRequestParameters" : {
|
||||||
"CreateAccount" : None,
|
"GetCharacterInventories" : False,
|
||||||
"CustomId": None,
|
"GetCharacterList" : False,
|
||||||
"EncryptedRequest" : None,
|
"GetPlayerProfile" : True,
|
||||||
"InfoRequestParameters" : {
|
"GetPlayerStatistics" : False,
|
||||||
"GetCharacterInventories" : False,
|
"GetTitleData" : False,
|
||||||
"GetCharacterList" : False,
|
"GetUserAccountInfo" : True,
|
||||||
"GetPlayerProfile" : True,
|
"GetUserData" : False,
|
||||||
"GetPlayerStatistics" : False,
|
"GetUserInventory" : False,
|
||||||
"GetTitleData" : False,
|
"GetUserReadOnlyData" : False,
|
||||||
"GetUserAccountInfo" : True,
|
"GetUserVirtualCurrency" : False,
|
||||||
"GetUserData" : False,
|
"PlayerStatisticNames" : None,
|
||||||
"GetUserInventory" : False,
|
"ProfileConstraints" : None,
|
||||||
"GetUserReadOnlyData" : False,
|
"TitleDataKeys" : None,
|
||||||
"GetUserVirtualCurrency" : False,
|
"UserDataKeys" : None,
|
||||||
"PlayerStatisticNames" : None,
|
"UserReadOnlyDataKeys" : None
|
||||||
"ProfileConstraints" : None,
|
},
|
||||||
"TitleDataKeys" : None,
|
"PlayerSecret" : None,
|
||||||
"UserDataKeys" : None,
|
"TitleId" : TITLE_ID
|
||||||
"UserReadOnlyDataKeys" : None
|
}
|
||||||
},
|
|
||||||
"PlayerSecret" : None,
|
req = None
|
||||||
"TitleId" : TITLE_ID
|
if createNewAccount:
|
||||||
}
|
toEnc = json.dumps({"CustomId":customId, "PlayerSecret": playerSecret}).encode("UTF-8")
|
||||||
|
pubkey = importCspKey(getMojangCsp())
|
||||||
req = None
|
|
||||||
if createNewAccount:
|
payload["CreateAccount"] = True
|
||||||
toEnc = json.dumps({"CustomId":customId, "PlayerSecret": playerSecret}).encode("UTF-8")
|
payload["EncryptedRequest"] = base64.b64encode(pubkey.encrypt(toEnc, padding.PKCS1v15())).decode("UTF-8")
|
||||||
pubkey = importCspKey(getMojangCsp())
|
|
||||||
|
req = sendPlayFabRequest("/Client/LoginWithCustomID", payload)
|
||||||
payload["CreateAccount"] = True
|
else:
|
||||||
payload["EncryptedRequest"] = base64.b64encode(pubkey.encrypt(toEnc, padding.PKCS1v15())).decode("UTF-8")
|
payload["CustomId"] = customId
|
||||||
|
ts = genPlayFabTimestamp()
|
||||||
req = sendPlayFabRequest("/Client/LoginWithCustomID", payload)
|
sig = genPlayFabSignature(json.dumps(payload), ts)
|
||||||
else:
|
req = sendPlayFabRequest("/Client/LoginWithCustomID", payload, {"X-PlayFab-Signature": sig, "X-PlayFab-Timestamp": ts})
|
||||||
payload["CustomId"] = customId
|
entitytoken = req["EntityToken"]["EntityToken"]
|
||||||
ts = genPlayFabTimestamp()
|
PLAYFAB_SESSION.headers.update({"X-EntityToken": entitytoken})
|
||||||
sig = genPlayFabSignature(json.dumps(payload), ts)
|
return req
|
||||||
req = sendPlayFabRequest("/Client/LoginWithCustomID", payload, {"X-PlayFab-Signature": sig, "X-PlayFab-Timestamp": ts})
|
|
||||||
entitytoken = req["EntityToken"]["EntityToken"]
|
def GetEntityToken(playfabId, accType):
|
||||||
PLAYFAB_SESSION.headers.update({"X-EntityToken": entitytoken})
|
req = sendPlayFabRequest("/Authentication/GetEntityToken", {
|
||||||
return req
|
"Entity" : {
|
||||||
|
"Id" : playfabId,
|
||||||
def GetEntityToken(playfabId, accType):
|
"Type" : accType
|
||||||
req = sendPlayFabRequest("/Authentication/GetEntityToken", {
|
}
|
||||||
"Entity" : {
|
})
|
||||||
"Id" : playfabId,
|
entitytoken = req["EntityToken"]
|
||||||
"Type" : accType
|
PLAYFAB_SESSION.headers.update({"X-EntityToken": entitytoken})
|
||||||
}
|
return req
|
||||||
})
|
|
||||||
entitytoken = req["EntityToken"]
|
def Search(query, sfilter, orderBy, select, top, skip):
|
||||||
PLAYFAB_SESSION.headers.update({"X-EntityToken": entitytoken})
|
return sendPlayFabRequest("/Catalog/Search", {
|
||||||
return req
|
"count": True,
|
||||||
|
"query": query,
|
||||||
def Search(query, sfilter, orderBy, select, top, skip):
|
"filter": sfilter,
|
||||||
return sendPlayFabRequest("/Catalog/Search", {
|
"orderBy": orderBy,
|
||||||
"count": True,
|
"scid": "4fc10100-5f7a-4470-899b-280835760c07",
|
||||||
"query": query,
|
"select": select,
|
||||||
"filter": sfilter,
|
"top": top,
|
||||||
"orderBy": orderBy,
|
"skip": skip
|
||||||
"scid": "4fc10100-5f7a-4470-899b-280835760c07",
|
|
||||||
"select": select,
|
|
||||||
"top": top,
|
|
||||||
"skip": skip
|
|
||||||
})
|
})
|
Loading…
Add table
Reference in a new issue